*/ if(!defined('DOKU_INC')) die(); class action_plugin_wikistyle2html extends DokuWiki_Action_Plugin { public function register(Doku_Event_Handler $controller) { $controller->register_hook('DOKUWIKI_STARTED', 'BEFORE', $this, 'alert', array()); } public function alert(Doku_Event $event, $param) { $message = '[IMPORTANT] The plugin ID wikistyle2html, has been renamed to wikiformatstyling. The support of wikistyle2html will be discontinued. Please install wikiformatstyling plugin, then delete wikistyle2html plugin!'; if (auth_ismanager()) msg($message); } }