Lines Matching full:get
23 $this->feed->title = $this->options->get('title');
24 $this->feed->description = $this->options->get('subtitle');
39 $items = match ($this->options->get('feed_mode')) {
84 if ($this->options->get('show_summary') && $proc->getSummary()) {
89 $item->link = $proc->getURL($this->options->get('link_to'));
90 $item->description = $proc->getBody($this->options->get('item_content'));
118 $ns = ':' . cleanID($this->options->get('namespace'));
134 $this->options->get('sort')
148 if (!$this->options->get('search_query')) return [];
150 $data = ft_pageSearch($this->options->get('search_query'), $poswords);
163 if (!$this->options->get('show_deleted')) $flags += RECENTS_SKIP_DELETED;
164 if (!$this->options->get('show_minor')) $flags += RECENTS_SKIP_MINORS;
165 if ($this->options->get('only_new')) $flags += RECENTS_ONLY_CREATION;
166 if ($this->options->get('content_type') == 'media' && $conf['mediarevisions']) {
169 if ($this->options->get('content_type') == 'both' && $conf['mediarevisions']) {
173 … return getRecents(0, $this->options->get('items'), $this->options->get('namespace'), $flags);