summaryrefslogtreecommitdiff
path: root/program/lib/Roundcube/rcube_plugin.php
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2014-08-03 19:17:13 +0200
committerThomas Bruederli <thomas@roundcube.net>2014-08-03 19:17:23 +0200
commit65baa033e067483d5bcd57294aafab413b4cda2c (patch)
treee4f12792c27eff147593159049ef26d66be0de51 /program/lib/Roundcube/rcube_plugin.php
parentef5a1c66aa269cbfbb93070fa3017ee87174f696 (diff)
List all plugins which have been attempted to load (#1488871)
Diffstat (limited to 'program/lib/Roundcube/rcube_plugin.php')
-rw-r--r--program/lib/Roundcube/rcube_plugin.php10
1 files changed, 9 insertions, 1 deletions
diff --git a/program/lib/Roundcube/rcube_plugin.php b/program/lib/Roundcube/rcube_plugin.php
index 01c340deb..cc7c7977f 100644
--- a/program/lib/Roundcube/rcube_plugin.php
+++ b/program/lib/Roundcube/rcube_plugin.php
@@ -94,7 +94,15 @@ abstract class rcube_plugin
/**
* Provide information about this
*
- * @return array Meta information about a plugin or false if not implemented
+ * @return array Meta information about a plugin or false if not implemented:
+ * As hash array with the following keys:
+ * name: The plugin name
+ * vendor: Name of the plugin developer
+ * version: Plugin version name
+ * license: License name (short form according to http://spdx.org/licenses/)
+ * uri: The URL to the plugin homepage or source repository
+ * src_uri: Direct download URL to the source code of this plugin
+ * require: List of plugins required for this one (as array of plugin names)
*/
public static function info()
{