Home
last modified time | relevance | path

Searched refs:file (Results 1 – 25 of 3491) sorted by last modified time

12345678910>>...140

/plugin/pagelist/
H A DCOPYING294 to attach them to the start of each source file to most effectively
295 convey the exclusion of warranty; and each file should have at least
/plugin/pagequery/
H A DPageQuery.php458 $pages = file($conf['indexdir'] . '/page.idx');
/plugin/twofactoremail/
H A DREADME26 See the COPYING file in your DokuWiki folder for details
H A DLICENSE289 to attach them to the start of each source file to most effectively
290 convey the exclusion of warranty; and each file should have at least
/plugin/twofactor/
H A DLICENSE289 to attach them to the start of each source file to most effectively
290 convey the exclusion of warranty; and each file should have at least
H A DREADME33 See the COPYING file in your DokuWiki folder for details
/plugin/attribute/
H A DLICENSE289 to attach them to the start of each source file to most effectively
290 convey the exclusion of warranty; and each file should have at least
H A DREADME28 See the COPYING file in your DokuWiki folder for details
/plugin/nspages/fileHelper/
H A DpagePreparer.php34 function isFileWanted($file, $useTitle){ argument
36 return ($file['type'] != 'd')
37 && parent::isFileWanted($file, $useTitle)
38 && $this->passSubNsfilterInRecursiveMode($file)
39 && (!$this->excludeSelfPage || $ID !== $file['id']);
42 function prepareFileTitle(&$file){ argument
46 private function passSubNsfilterInRecursiveMode($file){ argument
47 $subNss = explode(':', $file['id']);
H A DfilePreparer.php16 * Array RegEx that a file should match to be displayed
22 * Array RegEx that a file shouldn't match to be displayed
51 function isFileWanted($file, $useTitle) { argument
52 $nameToFilterOn = $useTitle ? $file['title'] : noNS($file['id']);
72 abstract function prepareFile(&$file); argument
73 abstract function prepareFileTitle(&$file); argument
H A DnamespacePreparer.php18 function isFileWanted($file, $useTitle){
19 return $file['type'] == 'd' && parent::isFileWanted($file, $useTitle);
15 isFileWanted($file, $useTitle) global() argument
/plugin/nspages/
H A DLICENSE289 to attach them to the start of each source file to most effectively
290 convey the exclusion of warranty; and each file should have at least
H A Daction.php40 $file = action_plugin_nspages::legacySyntaxFilename();
41 io_saveFile($file, time());
/plugin/dbquery/
H A DLICENSE289 to attach them to the start of each source file to most effectively
290 convey the exclusion of warranty; and each file should have at least
H A Drenderer.php30 public function code($text, $lang = null, $file = null) argument
H A DREADME27 See the LICENSING file for details
/plugin/dbquery/_test/
H A DGeneralTest.php21 $file = __DIR__ . '/../plugin.info.txt';
22 $this->assertFileExists($file);
24 $info = confToHash($file);
/plugin/siteexport/
H A DLICENSE289 to attach them to the start of each source file to most effectively
290 convey the exclusion of warranty; and each file should have at least
H A DREADME.md3 …your namespaces - a starting point can be given at run-time - and packs the result into a zip file.
14 * a writable <code>/inc/preload.php</code> file for template switching
24 * **Wiki Path and name for exported ZIP file:**<br>
25 DokuWiki namespace and file name that will be used to create temporary files.
82 …th other renderers, e.g. the siteexport_pdf (derived from dw2pdf) to have pages in PDF file format.
105 #### Use TOC file in Namespace
106 If you do not want the export to be structured like your DokuWiki is, you can create a file called …
108 …ng all the chapters of a documentation in their own file and exporting them into PDF as a single f…
135 …er) and cron access to your server, you can add the <code>cron.php</code> file to schedule runs of…
139 If you do not want the export to be structured like your DokuWiki is, you can create a file called …
[all …]
H A Dhelper.php55 $file = (is_link($_dir.$entry)) ? readlink($_dir.$entry) : $entry;
56 if (is_dir($_dir.$file)) {
H A Dpreload.php137 $fileContent = file($PRELOADFILE);
/plugin/siteexport/inc/
H A Ddebug.php60 public function setDebugFile($file = null) argument
62 if (!$file || empty($file))
64 $file = null;
67 $this->debugFile = $file;
H A Dfunctions.php43 public function checkIfCacheFileExistsForFileWithPattern($file, $pattern) argument
45 if (!@file_exists($file))
48 $this->debug->message("'{$file}' does not exist. Checking original ZipFile", null, 3);
56 $status = io_rename($newCacheFile, $file);
59 $this->debug->message("The file does exist!", $file, 2);
H A DreadCSS.patch154 // Replace any background: url(data:image... with temporary image file reference
158 $file = _MPDF_TEMP_PATH.'_tempCSSidata'.RAND(1,10000).'_'.$i.'.'.$idata[2][$i];
159 //Save to local file
160 file_put_contents($file, base64_decode($idata[3][$i]));
161 // $this->mpdf->GetFullPath($file); // ? is this needed - NO mPDF 5.6.03
162 $CSSstr = str_replace($idata[0][$i], 'url("'.$file.'")', $CSSstr); // mPDF 5.5.17
/plugin/siteexport/syntax/
H A Dtoc.php192 $file = wikiFN($tocItem);
194 if (@file_exists($file)) {
195 $instructions = p_cached_instructions($file, false, $tocItem);
197 $instructions = p_get_instructions(io_readWikiPage($file, $tocItem));

12345678910>>...140