Lines Matching refs:revInfo
642 $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
801 if (!array_key_exists('timestamp', $revInfo)) return false;
808 if ($lastRev !== false && $lastRev >= $revInfo['date']) {
812 if ($revInfo['type'] !== DOKU_CHANGE_TYPE_DELETE) {
813 if (!$this->saveExternalAttic($revInfo)) return false;
816 $this->writeLogEntry($revInfo);
831 * @param array $revInfo synthesized revision info with 'date' set
834 abstract protected function saveExternalAttic(array $revInfo); argument