summaryrefslogtreecommitdiff
path: root/plugins/help/help.php
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2009-07-24 12:06:05 +0000
committeralecpl <alec@alec.pl>2009-07-24 12:06:05 +0000
commit9240c6a7d9053af43fe16629f0a38440c6369fdc (patch)
tree6333c23949b1734b354aee16d5146fd10c07c637 /plugins/help/help.php
parent356a67fa5476dc288c5a9704fdedf3644cedf596 (diff)
- support plugin's config file
Diffstat (limited to 'plugins/help/help.php')
-rw-r--r--plugins/help/help.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/plugins/help/help.php b/plugins/help/help.php
index 336321c88..c02b7e991 100644
--- a/plugins/help/help.php
+++ b/plugins/help/help.php
@@ -6,11 +6,10 @@
* @author Aleksander 'A.L.E.C' Machniak
* @licence GNU GPL
*
- * Enable the plugin in config/main.inc.php and set Help content iframe source
- * $rcmail_config['help_source'] = 'http://trac.roundcube.net/wiki';
+ * Configuration (see config.inc.php.dist)
*
**/
-
+
class help extends rcube_plugin
{
function init()
@@ -42,6 +41,8 @@ class help extends rcube_plugin
{
$rcmail = rcmail::get_instance();
+ $this->load_config();
+
// register UI objects
$rcmail->output->add_handlers(array(
'helpcontent' => array($this, 'content'),