Home
last modified time | relevance | path

Searched refs:filepath (Results 1 – 25 of 45) sorted by relevance

12

/plugin/simplewikipagetree/
Dsyntax.php62 $filepath = $path.'/'.$file;
66 $path_parts = pathinfo($filepath);
72 $id = $this->getID($filepath);
88 if(is_dir($filepath)){
101 if($this->isActive($filepath)){
106 $out .= '<a href="'.$this->getURL($filepath).'"'.$activeInjection.'>';
107 $out .= $this->getTitle($filepath);
109 if(is_dir($filepath)){
110 $out .= $this->renderPageTree($filepath);
119 private function getID($filepath){ argument
[all …]
/plugin/quickstats/GEOIP/vendor/
Dcheck_dir.php14 $filepath = $start_dir . '/' . $file;
15 if ( is_dir($filepath) ) {
20 if(preg_match('/GeoLite2-City_*\d+/',$filepath)) {
22 $City_dnld_dir = $filepath;
23 echo "Directory: $filepath \nFiles:\n";
25 listdir($filepath,$found);
27 else if($found && preg_match('/GeoLite2-City_*\d+/',$filepath)) {
28 if(preg_match("/GeoLite2-City.mmdb/",$filepath)) {
30 copy ($filepath , "./GeoLite2-City/GeoLite2-City.mmdb") ;
32 echo "unlinking: $filepath \n";
[all …]
/plugin/filelist/
DCrawler.php71 $filepath = $path . '/' . $file;
72 if (!is_readable($filepath)) continue;
74 if ($this->fnmatch($pattern, $file) || (is_dir($filepath) && $recursive)) {
75 if (!is_dir($filepath) && !$this->isExtensionAllowed($file)) {
84 if (is_dir($filepath)) {
85 $title = $filepath . '/' . $titlefile;
92 if (!is_dir($filepath) || $recursive) {
96 'path' => $filepath,
97 'mtime' => filemtime($filepath),
98 'ctime' => filectime($filepath),
[all …]
/plugin/zwidoku/
H A DencycSubmit.php39 $filepath = str_replace(":", "/", $ID); variable
41 $path="data/attic/". $filepath."*";
45 $changes="data/meta/".$filepath .".changes";
46 $indexed="data/meta/".$filepath .".indexed";
47 $meta="data/meta/".$filepath .".meta";
H A DencycOpen.php46 $filepath = str_replace(":", "/", $ID); variable
48 $path="data/attic/". $filepath."*";
52 $changes="data/meta/".$filepath .".changes";
53 $indexed="data/meta/".$filepath .".indexed";
54 $meta="data/meta/".$filepath .".meta";
H A DgetEncyc.php110 $filepath = str_replace(":", "/", $ID); variable
112 $path=DOKU_INC."data/attic/". $filepath."*";
117 $changes="data/meta/".$filepath .".changes";
118 $indexed="data/meta/".$filepath .".indexed";
119 $meta="data/meta/".$filepath .".meta";
121 $dir_changes=DOKU_INC."data/meta/".$filepath .".changes";
122 $dir_indexed=DOKU_INC."data/meta/".$filepath .".indexed";
123 $dir_meta=DOKU_INC."data/meta/".$filepath .".meta";
/plugin/move/_test/
Dmediamove.test.php73 $filepath = DOKU_TMP_DATA.'media/wiki/testimage.png';
74 io_makeFileDir($filepath);
75 io_saveFile($filepath,'');
106 $filepath = DOKU_TMP_DATA.'media/wiki/foo/test_image.png';
107 io_makeFileDir($filepath);
108 io_saveFile($filepath,'');
Dnamespace_move.test.php282 $filepath = DOKU_TMP_DATA.'media/oldns/oldnsimage.png';
283 io_makeFileDir($filepath);
284 io_saveFile($filepath,'');
320 $filepath = DOKU_TMP_DATA.'media/oldns/oldnsimage.png';
321 io_makeFileDir($filepath);
322 io_saveFile($filepath,'');
358 $filepath = DOKU_TMP_DATA.'media/oldns/oldnsimage.png';
359 io_makeFileDir($filepath);
360 io_saveFile($filepath,'');
DfindMissingDocuments.test.php104 $filepath = DOKU_TMP_DATA.'media/oldns/oldnsimage.png';
105 io_makeFileDir($filepath);
106 io_saveFile($filepath,'');
/plugin/asciidocjs/node_modules/nunjucks/src/
Dprecompile.js55 var filepath = path.join(dir, file);
56 var subpath = filepath.substr(path.join(input, '/').length);
57 var stat = fs.statSync(filepath);
61 addTemplates(filepath);
64 templates.push(filepath);
/plugin/findologicxmlexport/vendor/jms/metadata/src/
DClassMetadata.php64 foreach ($this->fileResources as $filepath) {
65 if (!file_exists($filepath)) {
69 if ($timestamp < filemtime($filepath)) {
/plugin/elasticsearch/vendor/ruflin/elastica/src/
DDocument.php146 * @param string $filepath Path to add the file
149 public function addFile(string $key, string $filepath, string $mimeType = ''): self argument
151 $value = \base64_encode(\file_get_contents($filepath));
154 $value = ['_content_type' => $mimeType, '_name' => $filepath, '_content' => $value];
/plugin/dtable/
Dsyntax.php59 $filepath = wikiFN( $id );
61 $start_line = $dtable->line_nr($pos, $filepath) ;
64 $file_cont = explode("\n", io_readWikiPage($filepath, $id));
/plugin/pubmed2020/classes/
Dcache.php239 $filepath = $this->getRawContentPath($base, $id);
240 if (@file_exists($filepath)) {
242 return io_readFile($filepath);
251 $filepath = sprintf($this->abstractTrFormat,$pmid);
252 if (@file_exists($filepath)){
254 return io_readFile($filepath);
/plugin/saml/phpsaml/lib/Saml2/
DIdPMetadataParser.php51 * @param string $filepath File path
62 …public static function parseFileXML($filepath, $entityId = null, $desiredNameIdFormat = null, $des… argument
67 if (file_exists($filepath)) {
68 $data = file_get_contents($filepath);
/plugin/adfs/phpsaml/lib/Saml2/
DIdPMetadataParser.php51 * @param string $filepath File path
62 …public static function parseFileXML($filepath, $entityId = null, $desiredNameIdFormat = null, $des… argument
67 if (file_exists($filepath)) {
68 $data = file_get_contents($filepath);
/plugin/pdb/classes/
Dcache.php81 $filepath = $this->GetMediaPath($id);
82 if (@file_exists($filepath)){
83 @touch($filepath);
84 return io_readFile($filepath);
/plugin/cache/
Dplugin_cache.php88 $filepath = $this->GetMediaPath($id);
89 if (@file_exists($filepath)){
90 @touch($filepath);
91 return io_readFile($filepath);
/plugin/pubchem/classes/
Dcache.php81 $filepath = $this->GetMediaPath($id);
82 if (@file_exists($filepath)){
83 @touch($filepath);
84 return io_readFile($filepath);
/plugin/pubmed/classes/
Dcache.php81 $filepath = $this->GetMediaPath($id);
82 if (@file_exists($filepath)){
83 @touch($filepath);
84 return io_readFile($filepath);
/plugin/lightmenu/
Dlightmenu.class.php158 $filepath = $path.'/'.$name;
160 if (is_dir($filepath))
169 $times[$id] = filemtime($filepath);
313 $filepath = $path.'/'.$name;
315 if (is_dir($filepath))
319 $contents = file_get_contents($filepath);
/plugin/ckgedit/scripts/
Dcss6.php375 protected $filepath; // file system path to the CSS/Less file variable in DokuCssFile
380 $this->filepath = $file;
392 if (!file_exists($this->filepath)) return '';
394 $css = io_readFile($this->filepath);
417 $this->relative_path = preg_replace($regex, '', dirname($this->filepath));
/plugin/epub/scripts/
Dcss3.php368 protected $filepath; // file system path to the CSS/Less file variable in DokuCssFile
373 $this->filepath = $file;
385 if (!file_exists($this->filepath)) return '';
387 $css = io_readFile($this->filepath);
410 $this->relative_path = preg_replace($regex, '', dirname($this->filepath));
/plugin/captcha/
DEasySVG.php75 * @param string $filepath
79 public function setFont($filepath, $size, $color) argument
81 $this->setFontSVG($filepath);
130 * @param string $filepath
133 public function setFontSVG($filepath) argument
137 $z->open($filepath);
/plugin/eventline/
Dtimeline.js10 var filepath;
12 filepath = plugin_eventline_filePath;
140 Timeline.loadXML(filepath, function(xml, url) { eventSource.loadXML(xml, url); });

12