add a quickie plugins/ dir readme mentioning how to add plugins, plus ref to wiki pages

This commit is contained in:
Brion Vibber 2010-01-18 09:37:42 -08:00
parent 3bf4056055
commit ae9f2bf187
1 changed files with 21 additions and 0 deletions

21
plugins/README-plugins Normal file
View File

@ -0,0 +1,21 @@
Several example plugins are included in the plugins/ directory. You
can enable a plugin with the following line in config.php:
addPlugin('Example', array('param1' => 'value1',
'param2' => 'value2'));
This will look for and load files named 'ExamplePlugin.php' or
'Example/ExamplePlugin.php' either in the plugins/ directory (for
plugins that ship with StatusNet) or in the local/ directory (for
plugins you write yourself or that you get from somewhere else) or
local/plugins/.
Plugins are documented in their own directories.
Additional information on using and developing plugins can be found
on the StatusNet wiki:
http://status.net/wiki/Plugins
http://status.net/wiki/Plugin_development