diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-09-26 16:05:06 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-09-26 16:05:06 -0400 |
commit | 1fca5e721ab63d4d49e068331aee90abb111dbc2 (patch) | |
tree | 12fa6bccf85bb19a2aa1b5fa2b8148b47bde0ea3 /doc/plugins.markdown | |
parent | 9ca4b43a97ae92fad57b00ac0217d5b7078272fb (diff) |
Add getPluginHomepage()
Diffstat (limited to 'doc/plugins.markdown')
-rw-r--r-- | doc/plugins.markdown | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/plugins.markdown b/doc/plugins.markdown index a17f1af4..031bf963 100644 --- a/doc/plugins.markdown +++ b/doc/plugins.markdown @@ -70,10 +70,11 @@ Available methods from `Core\Plugin\Base`: - `initialize()`: Executed when the plugin is loaded - `getClasses()`: Return all classes that should be stored in the dependency injection container - `on($event, $callback)`: Listen on internal events -- `getPluginName()`: Get plugin name -- `getPluginAuthor()`: Get plugin author -- `getPluginVersion()`: Get plugin version -- `getPluginDescription()`: Get plugin description +- `getPluginName()`: Should return plugin name +- `getPluginAuthor()`: Should return plugin author +- `getPluginVersion()`: Should return plugin version +- `getPluginDescription()`: Should return plugin description +- `getPluginHomepage()`: Should return plugin Homepage (link) Your plugin registration class also inherit from `Core\Base`, that means you can access to all classes and methods of Kanboard easily. |