On Sun, 17 May 2009 13:03:37 -0230, Robert King <[email protected]> wrote:
> In my plugins I've been calling a function in the plugin init of:
> 
> class plugin_name extends rcube_plugin
> {
> 
> public function init()
> {
> _load_config();
> }
> 
> private function _load_config()
> {
> include('config.inc.php');
> $this->config = (array) $_config;
> }
> 
> }

Forgot this important detail:

class plugin_name extends rcube_plugin
{
private $config;
...
}

-- 
Robert King
System Administrator
Computing & Communications
Memorial University
_______________________________________________
List info: http://lists.roundcube.net/dev/

Reply via email to