summaryrefslogtreecommitdiff
path: root/lib/plugins/admin.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2006-12-03 14:41:04 +0100
committerAndreas Gohr <andi@splitbrain.org>2006-12-03 14:41:04 +0100
commitf8cc712e2ad522d0bd56b9ba3983cd42abf664ad (patch)
treef05652b1c134709880c8bde9b136f25055fffeb6 /lib/plugins/admin.php
parent4765d61c46935bc95f8f28459004374dfa77797f (diff)
downloadrpg-f8cc712e2ad522d0bd56b9ba3983cd42abf664ad.tar.gz
rpg-f8cc712e2ad522d0bd56b9ba3983cd42abf664ad.tar.bz2
manager user/group
This patch adds support for a manager option as suggested in http://www.freelists.org/archives/dokuwiki/11-2006/msg00314.html darcs-hash:20061203134104-7ad00-72ff6422bbb4f79be325c7e77255e1eee32d0f6b.gz
Diffstat (limited to 'lib/plugins/admin.php')
-rw-r--r--lib/plugins/admin.php44
1 files changed, 23 insertions, 21 deletions
diff --git a/lib/plugins/admin.php b/lib/plugins/admin.php
index 0cf12ad93..22867a93d 100644
--- a/lib/plugins/admin.php
+++ b/lib/plugins/admin.php
@@ -1,7 +1,7 @@
<?php
/**
* Admin Plugin Prototype
- *
+ *
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
* @author Christopher Smith <chris@jalakai.co.uk>
*/
@@ -17,27 +17,29 @@ require_once(DOKU_PLUGIN.'base.php');
*/
class DokuWiki_Admin_Plugin extends DokuWiki_Plugin {
- function getMenuText($language) {
- $menutext = $this->getLang('menu');
- if (!$menutext) {
- $info = $this->getInfo();
- $menutext = $info['name'].' ...';
- }
- return $menutext;
- }
+ function getMenuText($language) {
+ $menutext = $this->getLang('menu');
+ if (!$menutext) {
+ $info = $this->getInfo();
+ $menutext = $info['name'].' ...';
+ }
+ return $menutext;
+ }
- function getMenuSort() {
- return 1000;
- }
+ function getMenuSort() {
+ return 1000;
+ }
- function handle() {
- trigger_error('handle() not implemented in '.get_class($this), E_USER_WARNING);
- }
+ function handle() {
+ trigger_error('handle() not implemented in '.get_class($this), E_USER_WARNING);
+ }
- function html() {
- trigger_error('html() not implemented in '.get_class($this), E_USER_WARNING);
- }
-
-
+ function html() {
+ trigger_error('html() not implemented in '.get_class($this), E_USER_WARNING);
+ }
+
+ function forAdminOnly() {
+ return true;
+ }
}
-//Setup VIM: ex: et ts=4 enc=utf-8 : \ No newline at end of file
+//Setup VIM: ex: et ts=4 enc=utf-8 :