Lines Matching defs:key
55 * set value of associated "current" key for internal use. Some UI element like diff
68 * Return or set a value of associated key of revision information
71 * @param string $key
75 public function val($key, $value = null)
77 if (isset($value) && !array_key_exists($key, $this->info)) {
79 $this->info[$key] = $value;
81 if (array_key_exists($key, $this->info)) {
83 return $this->info[$key];
89 * Set extra key-value to the revision information
96 foreach ($info as $key => $value) {
97 $this->val($key, $value);
225 // revision info may have timestamp key when external edits occurred