*/ // must be run within Dokuwiki if(!defined('DOKU_INC')) die(); class action_plugin_newsticker extends DokuWiki_Action_Plugin { function register(Doku_Event_Handler $controller) { $controller->register_hook('DOKUWIKI_STARTED', 'AFTER', $this, 'jsinfo_addConf'); } function jsinfo_addConf(&$event, $param) { global $JSINFO; $JSINFO['plugin']['newsticker']['duration'] = $this->getConf('duration'); } }