*/ // must be run within Dokuwiki if(!defined('DOKU_INC')) die(); class action_plugin_discoursesearch extends DokuWiki_Action_Plugin { /** * Registers a callback function for a given event * * @param Doku_Event_Handler $controller DokuWiki's event controller object * @return void */ public function register(Doku_Event_Handler $controller) { $controller->register_hook('DOKUWIKI_STARTED', 'BEFORE', $this, 'handle_dokuwiki_started'); } /** * [Custom event handler which performs action] * * @param Doku_Event $event event object by reference * @param mixed $param [the parameters passed as fifth argument to register_hook() when this * handler was registered] * @return void */ public function handle_dokuwiki_started(Doku_Event &$event, $param) { global $JSINFO; $JSINFO['plugins']['discoursesearch'] = array ( 'url' => $this->getConf('url'), 'title' => $this->getConf('title') ); } } // vim:ts=4:sw=4:et: