*/ if(!defined('DOKU_INC')) die(); require_once(DOKU_PLUGIN.'action.php'); class action_plugin_hidden extends Dokuwiki_Action_Plugin { function register(Doku_Event_Handler $controller) { $controller->register_hook('TOOLBAR_DEFINE', 'AFTER', $this, 'insert_button', array ()); } /** * Inserts a toolbar button */ function insert_button(&$event, $param) { $event->data[] = array ( 'type' => 'format', 'title' => $this->getLang('button'), 'icon' => '../../plugins/hidden/images/hidden.png', 'open' => '', 'close' => '', ); } }