add contents
This commit is contained in:
29
lib/plugins/hidden/action.php
Normal file
29
lib/plugins/hidden/action.php
Normal file
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
/**
|
||||
* action.php for Plugin hidden
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
* @author Guillaume Turri <guillaume.turri@gmail.com>
|
||||
*/
|
||||
|
||||
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' => '<hidden>',
|
||||
'close' => '</hidden>',
|
||||
);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user