Lines Matching defs:info
45 * @param array $info Revision info structure of a page
47 * @return array revision info of added log line
51 public function addLogEntry(array $info, $timestamp = null)
55 if (isset($timestamp)) unset($this->cache[$this->id][$info['date']]);
58 $logline = static::buildLogLine($info, $timestamp);
63 $this->currentRevision = $info['date'];
64 $info['mode'] = $this->getMode();
65 $this->cache[$this->id][$this->currentRevision] = $info;
66 return $info;