xref: /dokuwiki/lib/plugins/action.php (revision 1808c8dab0847f1c4b85b16d3d9544497e1c53a2)
1<?php
2/**
3 * Admin Plugin Prototype
4 *
5 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6 * @author     Christopher Smith <chris@jalakai.co.uk>
7 */
8// must be run within Dokuwiki
9if(!defined('DOKU_INC')) die();
10
11if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/');
12require_once(DOKU_PLUGIN.'base.php');
13
14/**
15 * All DokuWiki plugins to extend the admin function
16 * need to inherit from this class
17 */
18class DokuWiki_Action_Plugin extends DokuWiki_Plugin {
19
20  function register($controller) {
21    trigger_error('register() not implemented in '.get_class($this), E_USER_WARNING);
22  }
23
24}