Lines Matching refs:revInfo
642 $revInfo = $this->getRevisionInfo($lastRev, false);
643 if ($revInfo['type'] == DOKU_CHANGE_TYPE_DELETE) {
645 return $revInfo;
649 $revInfo = [
701 $revInfo = [
716 $this->persistCurrentRevisionInfo($revInfo);
719 $this->currentRevision = $revInfo['date'];
720 $this->cache[$this->id][$this->currentRevision] = $revInfo;
844 * @param array $revInfo synthesized revision info
847 protected function persistCurrentRevisionInfo(array $revInfo) argument
850 if (!array_key_exists('timestamp', $revInfo)) return false;
857 if ($lastRev !== false && $lastRev >= $revInfo['date']) {
861 if ($revInfo['type'] !== DOKU_CHANGE_TYPE_DELETE) {
862 if (!$this->saveExternalAttic($revInfo)) return false;
865 $this->writeLogEntry($revInfo, null, true);
880 * @param array $revInfo synthesized revision info with 'date' set
883 abstract protected function saveExternalAttic(array $revInfo); argument