1<?php
2
3use dokuwiki\Extension\ActionPlugin;
4use dokuwiki\Extension\EventHandler;
5use dokuwiki\Extension\Event;
6
7/**
8 * DokuWiki Plugin @@PLUGIN_NAME@@ (Action Component)
9 *
10 * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
11 * @author @@AUTHOR_NAME@@ <@@AUTHOR_MAIL@@>
12 */
13class @@PLUGIN_COMPONENT_NAME@@ extends ActionPlugin
14{
15    /** @inheritDoc */
16    public function register(EventHandler $controller)
17    {
18@@REGISTER@@
19    }
20@@HANDLERS@@
21}
22