Searched refs:FeedCreatorOptions (Results 1 – 5 of 5) sorted by relevance
5 use dokuwiki\Feed\FeedCreatorOptions; alias13 $options = new FeedCreatorOptions(['feed_mode' => 'recent']);19 $options = new FeedCreatorOptions(['feed_mode' => 'list', 'namespace' => 'wiki']);25 $options = new FeedCreatorOptions(['feed_mode' => 'search', 'search_query' => 'test']);31 $options = new FeedCreatorOptions(['feed_mode' => 'foobar']);41 $a = new FeedCreatorOptions(['feed_mode' => 'recent', 'sort' => 'natural']);42 $b = new FeedCreatorOptions(['feed_mode' => 'recent', 'sort' => 'date']);48 $a = new FeedCreatorOptions(['feed_mode' => 'recent']);49 $b = new FeedCreatorOptions(['feed_mode' => 'recent', 'search_query' => 'anything']);59 $a = new FeedCreatorOptions(['feed_mode' => 'recent', 'namespace' => '']);[all …]
6 use dokuwiki\Feed\FeedCreatorOptions; alias24 $options = new FeedCreatorOptions();
14 use dokuwiki\Feed\FeedCreatorOptions; alias35 $options = new FeedCreatorOptions();
13 /** @var FeedCreatorOptions */17 * @param FeedCreatorOptions $options19 public function __construct(FeedCreatorOptions $options)
10 class FeedCreatorOptions class