Lines Matching full:tools
3 * Tools Action component
39 'name' => 'Tools plugin (action component)',
40 …esc' => 'Insert toolbar with tools on pages<br />Allows to override config options for a certain p…
41 'url' => 'http://www.dokuwiki.org/plugin:tools',
50 …$controller->register_hook('TPL_ACT_RENDER','AFTER',$this,'tools',array("show" => $this->TOOLS_SHO…
51 …$controller->register_hook('TPL_ACT_RENDER','BEFORE',$this,'tools',array("show" => $this->TOOLS_SH…
54 * Prints tools icons, if allowed
58 function tools(&$event, $param) { function in action_plugin_tools
66 //Check if tools is allowed
67 $bm = p_get_metadata($ID,'tools');
95 $be = explode(",",$this->getConf('tools'));
98 $iu = DOKU_URL."lib/plugins/tools/img/";
104 $html = array('<ul class="tools">');
108 $tools = array(
118 foreach ($tools as $k=>$v) {
140 … if ($this->getConf('show_header')) $html[] = '<li class="head">'.$this->getLang('tools').'</li>';