Lines Matching refs:FeedCreatorOptions
5 use dokuwiki\Feed\FeedCreatorOptions; alias
13 $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' => '']);
60 $b = new FeedCreatorOptions(['feed_mode' => 'recent', 'namespace' => 'wiki']);
66 $a = new FeedCreatorOptions(['feed_mode' => 'recent', 'items' => 10]);
67 $b = new FeedCreatorOptions(['feed_mode' => 'recent', 'items' => 20]);
73 $a = new FeedCreatorOptions(['feed_mode' => 'recent', 'show_minor' => false]);
74 $b = new FeedCreatorOptions(['feed_mode' => 'recent', 'show_minor' => true]);
80 $a = new FeedCreatorOptions(['feed_mode' => 'recent', 'content_type' => 'pages']);
81 $b = new FeedCreatorOptions(['feed_mode' => 'recent', 'content_type' => 'both']);
91 $options = new FeedCreatorOptions(['items' => 0]);
98 $options = new FeedCreatorOptions(['items' => 999999]);
104 $options = new FeedCreatorOptions(['items' => 10]);