Lines Matching refs: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 switch ($this->options->get('feed_mode')) {
56 'opt' => &$this->options->options,
66 return $this->feed->createFeed($this->options->getType());
91 if ($this->options->get('show_summary') && $proc->getSummary()) {
96 $item->link = $proc->getURL($this->options->get('link_to'));
97 $item->description = $proc->getBody($this->options->get('item_content'));
101 'opt' => &$this->options->options,
125 $ns = ':' . cleanID($this->options->get('namespace'));
141 $this->options->get('sort')
155 if (!$this->options->get('search_query')) return [];
157 $data = ft_pageSearch($this->options->get('search_query'), $poswords);
170 if (!$this->options->get('show_deleted')) $flags += RECENTS_SKIP_DELETED;
171 if (!$this->options->get('show_minor')) $flags += RECENTS_SKIP_MINORS;
172 if ($this->options->get('only_new')) $flags += RECENTS_ONLY_CREATION;
173 if ($this->options->get('content_type') == 'media' && $conf['mediarevisions']) {
176 if ($this->options->get('content_type') == 'both' && $conf['mediarevisions']) {
180 … return getRecents(0, $this->options->get('items'), $this->options->get('namespace'), $flags);
192 'opt' => $this->options->options,