Lines Matching refs:info

123         $info = static::parseLogLine($value);
124 if (is_array($info)) {
125 $info['mode'] = $this->getMode();
126 $this->cache[$this->id][$info['date']] ??= $info;
127 return $info;
306 $info = $this->parseAndCacheLogLine($lines[$i]);
307 if (is_array($info)) {
308 $revs[] = $info['date'];
354 $info = [];
365 $info = $this->parseAndCacheLogLine($lines[$i]);
366 if (is_array($info)) {
368 … if (($direction > 0 && $info['date'] > $rev) || ($direction < 0 && $info['date'] < $rev)) {
371 $relativeRev = $info['date'];
379 && ($info['date'] == $rev || ($revCounter > 0 && !$relativeRev))
444 $info = $this->parseAndCacheLogLine($lines[$i]);
445 if (is_array($info)) {
446 $revs1[] = $info['date'];
524 $info = $this->parseAndCacheLogLine($line);
525 if (is_array($info)) {
526 $revs[] = $info['date'];
527 if ($info['date'] >= $rev) {
568 $info = $this->parseAndCacheLogLine($lines[$i]);
569 if (is_array($info)) {
570 $revs[] = $info['date'];
722 * @param array $info Revision info structure of a page or media file
726 public function addLogEntry(array $info, $timestamp = null) argument
731 return $this->writeLogEntry($info, $timestamp);
734 $info['mode'] = $this->getMode();
735 return $info;
749 * @param array $info Revision info structure
754 protected function writeLogEntry(array $info, $timestamp = null) argument
758 if (isset($timestamp)) unset($this->cache[$this->id][$info['date']]);
760 $logline = static::buildLogLine($info, $timestamp);
777 $this->currentRevision = $info['date'];
778 $info['mode'] = $this->getMode();
779 $this->cache[$this->id][$this->currentRevision] = $info;
780 return $info;