On Sun, 17 May 2009 13:03:37 -0230, Robert King robk@mun.ca 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; ... }