diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-04-28 14:31:18 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-04-28 14:31:18 +0200 |
commit | 416cc7106ad571e9ed42874ceee7dfec549be2bb (patch) | |
tree | 09deed6cf86d05a6ec1fb103426f25df741b96f4 /program/lib/Roundcube/rcube_plugin.php | |
parent | 311e82652ae0f2dd9792610175a1ba19cd71c0af (diff) | |
parent | 378d6cf97f1d3e6ae12b9f43b22f538417037934 (diff) |
Merge branch 'master' of github.com:roundcube/roundcubemail
Diffstat (limited to 'program/lib/Roundcube/rcube_plugin.php')
-rw-r--r-- | program/lib/Roundcube/rcube_plugin.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/program/lib/Roundcube/rcube_plugin.php b/program/lib/Roundcube/rcube_plugin.php index 167a9eb4f..d24a2693c 100644 --- a/program/lib/Roundcube/rcube_plugin.php +++ b/program/lib/Roundcube/rcube_plugin.php @@ -92,6 +92,16 @@ abstract class rcube_plugin abstract function init(); /** + * Provide information about this + * + * @return array Meta information about a plugin or false if not implemented + */ + public static function info() + { + return false; + } + + /** * Attempt to load the given plugin which is required for the current plugin * * @param string Plugin name |