Files
dokuwiki/inc/Extension/ActionPlugin.php
2023-08-31 22:44:40 +02:00

22 lines
463 B
PHP

<?php
namespace dokuwiki\Extension;
/**
* Action Plugin Prototype
*
* Handles action hooks within a plugin
*
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
* @author Christopher Smith <chris@jalakai.co.uk>
*/
abstract class ActionPlugin extends Plugin
{
/**
* Registers a callback function for a given event
*
* @param EventHandler $controller
*/
abstract public function register(EventHandler $controller);
}