Home
last modified time | relevance | path

Searched refs:revInfo (Results 1 – 4 of 4) sorted by relevance

/dokuwiki/inc/ChangeLog/
H A DPageChangeLog.php57 * @param array $revInfo synthesized revision info
60 protected function saveExternalAttic(array $revInfo) argument
66 if (empty($revInfo['timestamp'])) {
67 if (!@touch($file, $revInfo['date'])) return false;
71 $atticfile = $this->getFilename($revInfo['date']);
72 …n io_writeWikiPage($atticfile, io_readWikiPage($file, $this->id, ''), $this->id, $revInfo['date']);
H A DMediaChangeLog.php57 * @param array $revInfo synthesized revision info
60 protected function saveExternalAttic(array $revInfo) argument
68 if (empty($revInfo['timestamp'])) {
69 if (!@touch($file, $revInfo['date'])) return false;
73 $atticfile = $this->getFilename($revInfo['date']);
H A DChangeLog.php642 $revInfo = $this->getRevisionInfo($lastRev, false);
643 if ($revInfo['type'] == DOKU_CHANGE_TYPE_DELETE) {
645 return $revInfo;
649 $revInfo = [
688 $revInfo = [
703 $this->persistCurrentRevisionInfo($revInfo);
706 $this->currentRevision = $revInfo['date'];
707 $this->cache[$this->id][$this->currentRevision] = $revInfo;
795 * @param array $revInfo synthesized revision info
798 protected function persistCurrentRevisionInfo(array $revInfo) argument
[all …]
/dokuwiki/inc/File/
H A DPageFile.php55 $revInfo = $rev ? $this->changelog->getRevisionInfo($rev) : false;
56 return (!$revInfo || $revInfo['type'] == DOKU_CHANGE_TYPE_DELETE)
149 $revInfo = $this->changelog->getCurrentRevisionInfo();
151 if (is_array($revInfo) && isset($revInfo['date']) && $revInfo['date'] == time()) {