]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/README-plugins
Merge branch 'testing' of gitorious.org:statusnet/mainline into 0.9.x
[quix0rs-gnu-social.git] / plugins / README-plugins
1 Several example plugins are included in the plugins/ directory. You
2 can enable a plugin with the following line in config.php:
3
4     addPlugin('Example', array('param1' => 'value1',
5                                'param2' => 'value2'));
6
7 This will look for and load files named 'ExamplePlugin.php' or
8 'Example/ExamplePlugin.php' either in the plugins/ directory (for
9 plugins that ship with StatusNet) or in the local/ directory (for
10 plugins you write yourself or that you get from somewhere else) or
11 local/plugins/.
12
13 Plugins are documented in their own directories.
14
15
16 Additional information on using and developing plugins can be found
17 on the StatusNet wiki:
18
19 http://status.net/wiki/Plugins
20 http://status.net/wiki/Plugin_development
21