forked from chimeric/dokuwiki-plugin-pagemoveng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin.php
35 lines (26 loc) · 854 Bytes
/
admin.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
/**
* DokuWiki Plugin pagemoveng (Admin Component)
*
* @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
* @author Michael Klier <[email protected]>
*/
// must be run within Dokuwiki
if (!defined('DOKU_INC')) die();
if (!defined('DOKU_LF')) define('DOKU_LF', "\n");
if (!defined('DOKU_TAB')) define('DOKU_TAB', "\t");
if (!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/');
require_once(DOKU_PLUGIN.'admin.php');
class admin_plugin_pagemoveng extends DokuWiki_Admin_Plugin {
function getInfo() {
return confToHash(dirname(__FILE__).'plugin.info.txt');
}
function getMenuSort() { return FIXME; }
function forAdminOnly() { return false; }
function handle() {
}
function html() {
ptln('<h1>' . $this->getLang('menu') . '</h1>');
}
}
// vim:ts=4:sw=4:et:enc=utf-8: