Source for file libplugins.php
Documentation is available at libplugins.php
* @author Christopher Troup <mini@chatetheory.com>
var $hooks = array( 'ip.pre' => array(),
'graph.prerender' => array(),
'graph.postrender' => array());
* Register a new plugin and make availible to the proper hook
if (isset ($conf['activePlugins'])) {
foreach ($conf['activePlugins'] as $classname) {
include dirname(__FILE__ ) . '/../plugins/' . $classname . '.php';
/** @todo class doesent exist */
|