*/ // must be run within Dokuwiki if (!defined('DOKU_INC')) { die(); } class action_plugin_jsreplacements_jsexpose 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', 'AFTER', $this, 'handle_dokuwiki_started'); } /** * [Custom event handler which performs action] * * Called for event: * * @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; $styleUtil = new \dokuwiki\StyleUtils(); $styleIni = $styleUtil->cssStyleini($conf['template']); $JSINFO['replacements'] = $styleIni['replacements']; } }