Bartlomiej Nogas
2014-10-24 a235f79df9b3e94e52e22008e9af858e094fd25f
program/lib/Roundcube/rcube_plugin.php
@@ -94,7 +94,15 @@
    /**
     * 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()
    {
@@ -113,6 +121,17 @@
    }
    /**
     * Attempt to load the given plugin which is optional for the current plugin
     *
     * @param string Plugin name
     * @return boolean True on success, false on failure
     */
    public function include_plugin($plugin_name)
    {
        return $this->api->load_plugin($plugin_name, true, false);
    }
    /**
     * Load local config file from plugins directory.
     * The loaded values are patched over the global configuration.
     *