xref: /dokuwiki/inc/Extension/ActionPlugin.php (revision 8c7c53b0321a3cd3116b8d3b2ad27863a38dece7)
1<?php
2
3namespace dokuwiki\Extension;
4
5/**
6 * Action Plugin Prototype
7 *
8 * Handles action hooks within a plugin
9 *
10 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
11 * @author     Christopher Smith <chris@jalakai.co.uk>
12 */
13abstract class ActionPlugin extends Plugin
14{
15
16    /**
17     * Registers a callback function for a given event
18     *
19     * @param EventHandler $controller
20     */
21    abstract public function register(EventHandler $controller);
22}
23