-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.php
More file actions
24 lines (21 loc) · 722 Bytes
/
Copy pathaction.php
File metadata and controls
24 lines (21 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
/**
* DokuWiki Plugin structprogress (Action Component)
*
* @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
* @author saggi <saggi@gmx.de>
*/
class action_plugin_structprogress extends DokuWiki_Action_Plugin {
/**
* Registers a callback function for a given event
*
* @param Doku_Event_Handler $controller DokuWiki's event controller object
* @return void
*/
public function register(Doku_Event_Handler $controller) {
$controller->register_hook('PLUGIN_STRUCT_TYPECLASS_INIT', 'BEFORE', $this, 'handle_init');
}
public function handle_init(Doku_Event &$event, $param) {
$event->data['Progress'] = 'dokuwiki\\plugin\\structprogress\\types\\Progress';
}
}