Rename dokuwiki plugin subdirectory to dokuwiki.
This commit is contained in:
parent
8a3321f772
commit
4eae0835b3
4 changed files with 0 additions and 0 deletions
32
dokuwiki/action.php
Normal file
32
dokuwiki/action.php
Normal file
|
@ -0,0 +1,32 @@
|
|||
<?php
|
||||
/**
|
||||
* DokuWiki Plugin brmburo (Action Component)
|
||||
*
|
||||
* @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
|
||||
* @author Dominik Pantůček <dominik.pantucek@trustica.cz>
|
||||
*/
|
||||
class action_plugin_brmburo extends \dokuwiki\Extension\ActionPlugin
|
||||
{
|
||||
|
||||
/** @inheritDoc */
|
||||
public function register(Doku_Event_Handler $controller)
|
||||
{
|
||||
$controller->register_hook('ACTION_ACT_PREPROCESS', 'AFTER|BEFORE', $this, 'handleActionActPreprocess');
|
||||
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Event handler for ACTION_ACT_PREPROCESS
|
||||
*
|
||||
* @see https://www.dokuwiki.org/devel:events:ACTION_ACT_PREPROCESS
|
||||
* @param Doku_Event $event Event object
|
||||
* @param mixed $param optional parameter passed when event was registered
|
||||
* @return void
|
||||
*/
|
||||
public function handleActionActPreprocess(Doku_Event $event, $param) {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue