Home
last modified time | relevance | path

Searched refs:file (Results 26 – 50 of 3491) sorted by last modified time

12345678910>>...140

/plugin/linkback/exe/
H A Dtrackback.php60 $file = metaFN($ID, '.linkbacks');
71 if (@ file_exists($file))
72 $data = unserialize(io_readFile($file, false));
148 io_saveFile($file, serialize($data));
H A Dpingback.php80 $file = metaFN($ID, '.linkbacks');
91 if (@ file_exists($file))
92 $data = unserialize(io_readFile($file, false));
131 io_saveFile($file, serialize($data));
/plugin/linkback/
H A Dtools.php163 $lines = file($changelog);
H A Dhelper.php110 $lines = file($conf['metadir'] . '/_linkbacks.changes');
193 $recent['file'] = wikiFN($recent['id']);
194 $recent['exists'] = @ file_exists($recent['file']);
202 // get linkback meta file name
H A Dsyntax.php53 // get linkback meta file name
54 $file = metaFN($ID, '.linkbacks');
65 if (@ file_exists($file))
66 $data = unserialize(io_readFile($file, false));
78 io_saveFile($file, serialize($data));
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
H A Dadmin.php103 $file = metaFN($id, '.linkbacks');
104 if (!@file_exists($file)) continue; // skip if no comments file
106 $date = filemtime($file);
109 'file' => $file,
171 if (!$target['file']) $target['file'] = metaFN($id, '.linkbacks');
172 if (!@file_exists($target['file'])) return false; // no discussion thread at all
174 $data = unserialize(io_readFile($target['file'], fals
[all...]
/plugin/linkback/action/
H A Dreceive.php37 $file = metaFN($ID, '.linkbacks');
47 if (@ file_exists($file))
48 $data = unserialize(io_readFile($file, false));
82 $file = metaFN($ID, '.linkbacks');
92 if (@ file_exists($file))
93 $data = unserialize(io_readFile($file, false));
122 $file = metaFN($ID, '.linkbacks');
132 if (@ file_exists($file))
133 $data = unserialize(io_readFile($file, false));
H A Dsend.php59 // get linkback meta file name
60 $file = metaFN($ID, '.linkbacks');
70 if (@ file_exists($file)) {
71 $data = unserialize(io_readFile($file, false));
104 io_saveFile($file, serialize($data));
148 // get linkback meta file name
149 $file = metaFN($ID, '.linkbacks');
159 if (@ file_exists($file)) {
160 $data = unserialize(io_readFile($file, false));
H A Ddisplay.php48 $file = metaFN($ID, '.linkbacks');
59 if (@ file_exists($file))
60 $data = unserialize(io_readFile($file, false));
244 $file = metaFN($ID, '.linkbacks');
245 if (!@ file_exists($file))
247 $data = unserialize(io_readFile($file, false));
274 $file = metaFN($ID, '.linkbacks');
285 if (@ file_exists($file))
286 $data = unserialize(io_readFile($file, false));
305 io_saveFile($file, serializ
[all...]
/plugin/structpublish/
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 DREADME27 See the LICENSING file for details
/plugin/structpublish/_test/
H A Dgeneral.test.php16 $file = __DIR__ . '/../plugin.info.txt';
17 $this->assertFileExists($file);
19 $info = confToHash($file);
/plugin/structpublish/action/
H A Dmigration.php120 $file = DOKU_PLUGIN . 'structpublish/db/json/structpublish0001.struct.json';
121 $schemaJson = file_get_contents($file);
/plugin/diagrams/
H A DREADME27 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
H A Dhelper.php12 * Check if the given file is a diagrams.net diagram
14 * @param string $file
17 public function isDiagramFile($file) argument
19 $svg = file_get_contents($file, false, null, 0, 500);
/plugin/diagrams/action/
H A Dmediafile.php44 $file = mediaFN($mediaId);
46 echo json_encode(file_exists($file));
66 $file = mediaFN($image);
69 file_exists($file) &&
71 $this->helper->isDiagramFile($file)
94 $file = mediaFN(cleanID($diagram));
95 if (!file_exists($file)) {
101 if (!$this->helper->isDiagramFile($file)) {
133 if ($event->data['ext'] === 'svg' && $this->helper->isDiagramFile($event->data['file'])) {
/plugin/struct/meta/
H A DCSVImporter.php46 * @param string $file
49 public function __construct($table, $file, $type) argument
52 $this->openFile($file);
63 * Import the data from file.
75 * Open a given file path
79 * @param string $file the file path
83 protected function openFile($file) argument
85 $this->fh = fopen($file, 'rb');
87 throw new StructException('Failed to open CSV file fo
[all...]
H A DColumn.php194 foreach ($files as $file) {
195 $file = basename($file, '.php');
196 if (substr($file, 0, 8) == 'Abstract') continue;
197 if (substr($file, 0, 5) == 'Trait') continue;
198 if (substr($file, 0, 4) == 'Auto') continue;
199 $map[$file] = 'dokuwiki\\plugin\\struct\\types\\' . $file;
/plugin/struct/renderer/
H A Dcsv.php183 public function code($text, $lang = null, $file = null) argument
228 public function file($text, $lang = null, $file = null) argument
/plugin/struct/
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 DREADME27 See the COPYING file in your DokuWiki folder for details
H A Dhelper.php155 $file = wikiFN($page);
156 clearstatcache(false, $file);
157 return filemtime($file);
/plugin/struct/helper/
H A Ddb.php71 $file = $this->sqlite->getDbFile();
72 if (!$file) return;
73 unlink($file);
74 clearstatcache(true, $file);

12345678910>>...140