Lines Matching full:options
13 protected $options; variable in dokuwiki\\Feed\\FeedCreator
16 * @param FeedCreatorOptions $options
18 public function __construct(FeedCreatorOptions $options) argument
20 $this->options = $options;
23 $this->feed->title = $this->options->get('title');
24 $this->feed->description = $this->options->get('subtitle');
39 $items = match ($this->options->get('feed_mode')) {
49 'opt' => &$this->options->options,
59 return $this->feed->createFeed($this->options->getType());
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'));
94 'opt' => &$this->options->options,
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);
185 'opt' => $this->options->options,