Lines Matching full:file
13 * @return string path to file
24 * @return string path to file
42 * Returns path to the global page-changelog file
44 * @return string path to file
54 * If the file mtime is older than the last known revision (broken chronology),
55 * touch the file forward so future reads see a consistent state.
62 $file = $this->getFilename();
63 if (!file_exists($file)) return true;
65 // rescue: file mtime older than last revision — touch forward to the synthesized date
67 if (!@touch($file, $revInfo['date'])) return false;
68 clearstatcache(false, $file);
72 …return io_writeWikiPage($atticfile, io_readWikiPage($file, $this->id, ''), $this->id, $revInfo['da…