]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/SlicedFavorites/README
Merge branch 'master' into mmn_fixes
[quix0rs-gnu-social.git] / plugins / SlicedFavorites / README
1 The SlicedFavorites plugin shows timelines of popular notices for defined
2 subsets of users.
3
4 Installation
5 ============
6 add "addPlugin('SlicedFavorites');"
7 to the bottom of your config.php
8
9 Settings
10 ========
11 slices: Array of subsets
12
13 Example
14 =======
15 addPlugin('SlicedFavorites', array(
16     'slices' => array(
17         // show only pop's notices on /favorited
18         'default' => array('include' => array('pop')),
19
20         // show only son's notices on /favorited/blog
21         'blog' => array('include' => array('son')),
22
23         // show all favorited notices except pop's and son's on /favorited/submitted
24         'submitted' => array('exclude' => array('pop', 'son')),
25
26         // show all favorited notices on /favorited/everybody
27         'everybody' => array(),
28     )
29 ));
30