Lines Matching defs:meta
11 * but also it's own filesystem data (like the creation time). All metadata is stored in the fields $meta and
26 /** @var array transient meta data, will be reset on each rendering */
27 public $meta = [];
29 /** @var array persistent meta data, will be kept until explicitly deleted */
82 $this->meta = $this->persistent;
95 $this->meta['internal'] = $this->info;
97 if (!isset($this->meta['description']['abstract'])) {
103 $this->meta['description']['abstract'] = $this->doc;
106 $this->meta['relation']['firstimage'] = $this->firstimage;
108 if (!isset($this->meta['date']['modified'])) {
109 $this->meta['date']['modified'] = filemtime(wikiFN($ID));
151 $this->meta['description']['tableofcontents'][] = [
169 if (!isset($this->meta['title'])) {
170 $this->meta['title'] = $text;
463 * keep track of internal links in $this->meta['relation']['references']
492 $this->meta['relation']['references'][$page] = page_exists($page);
660 $this->meta['relation']['haspart'][$url] = true;
662 $this->meta['date']['valid']['age'] =
663 isset($this->meta['date']['valid']['age']) ?
664 min($this->meta['date']['valid']['age'], $params['refresh']) :
766 $this->meta['relation']['media'][$src] = file_exists($file);