Lines Matching full:options
14 protected $options; variable in dokuwiki\\Feed\\FeedCreator
17 * @param FeedCreatorOptions $options
19 public function __construct(FeedCreatorOptions $options) argument
21 $this->options = $options;
24 $this->feed->title = $this->options->get('title');
25 $this->feed->description = $this->options->get('subtitle');
40 $items = match ($this->options->get('feed_mode')) {
50 'opt' => &$this->options->options,
60 return $this->feed->createFeed($this->options->getType());
85 if ($this->options->get('show_summary') && $proc->getSummary()) {
90 $item->link = $proc->getURL($this->options->get('link_to'));
91 $item->description = $proc->getBody($this->options->get('item_content'));
95 'opt' => &$this->options->options,
119 $ns = ':' . cleanID($this->options->get('namespace'));
135 $this->options->get('sort')
149 if (!$this->options->get('search_query')) return [];
152 $data = (new FulltextSearch())->pageSearch($this->options->get('search_query'), $poswords);
165 if (!$this->options->get('show_deleted')) $flags += RECENTS_SKIP_DELETED;
166 if (!$this->options->get('show_minor')) $flags += RECENTS_SKIP_MINORS;
167 if ($this->options->get('only_new')) $flags += RECENTS_ONLY_CREATION;
168 if ($this->options->get('content_type') == 'media' && $conf['mediarevisions']) {
171 if ($this->options->get('content_type') == 'both' && $conf['mediarevisions']) {
175 … return getRecents(0, $this->options->get('items'), $this->options->get('namespace'), $flags);
187 'opt' => $this->options->options,