170316b84SAndreas Gohr<?php 2*8673a04eSAndreas Gohr 3*8673a04eSAndreas Gohruse dokuwiki\Extension\ActionPlugin; 4*8673a04eSAndreas Gohruse dokuwiki\Extension\EventHandler; 5*8673a04eSAndreas Gohruse dokuwiki\Extension\Event; 6*8673a04eSAndreas Gohr 770316b84SAndreas Gohr/** 870316b84SAndreas Gohr * DokuWiki Plugin @@PLUGIN_NAME@@ (Action Component) 970316b84SAndreas Gohr * 1070316b84SAndreas Gohr * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html 1170316b84SAndreas Gohr * @author @@AUTHOR_NAME@@ <@@AUTHOR_MAIL@@> 1270316b84SAndreas Gohr */ 13*8673a04eSAndreas Gohrclass @@PLUGIN_COMPONENT_NAME@@ extends ActionPlugin 1470316b84SAndreas Gohr{ 1570316b84SAndreas Gohr /** @inheritDoc */ 16*8673a04eSAndreas Gohr public function register(EventHandler $controller) 1770316b84SAndreas Gohr { 1870316b84SAndreas Gohr@@REGISTER@@ 1970316b84SAndreas Gohr } 2070316b84SAndreas Gohr@@HANDLERS@@ 2170316b84SAndreas Gohr} 22