about summary refs log tree commit diff stats
path: root/wiki/inc/Action/Profile.php
diff options
context:
space:
mode:
Diffstat (limited to 'wiki/inc/Action/Profile.php')
-rw-r--r--wiki/inc/Action/Profile.php45
1 files changed, 0 insertions, 45 deletions
diff --git a/wiki/inc/Action/Profile.php b/wiki/inc/Action/Profile.php
deleted file mode 100644
index 53d8d2f..0000000
--- a/wiki/inc/Action/Profile.php
+++ /dev/null
@@ -1,45 +0,0 @@
-<?php
-
-namespace dokuwiki\Action;
-
-use dokuwiki\Action\Exception\ActionAbort;
-use dokuwiki\Action\Exception\ActionDisabledException;
-
-/**
- * Class Profile
- *
- * Handle the profile form
- *
- * @package dokuwiki\Action
- */
-class Profile extends AbstractUserAction {
-
-    /** @inheritdoc */
-    public function minimumPermission() {
-        return AUTH_NONE;
-    }
-
-    /** @inheritdoc */
-    public function checkPreconditions() {
-        parent::checkPreconditions();
-
-        /** @var \DokuWiki_Auth_Plugin $auth */
-        global $auth;
-        if(!$auth->canDo('Profile')) throw new ActionDisabledException();
-    }
-
-    /** @inheritdoc */
-    public function preProcess() {
-        global $lang;
-        if(updateprofile()) {
-            msg($lang['profchanged'], 1);
-            throw new ActionAbort('show');
-        }
-    }
-
-    /** @inheritdoc */
-    public function tplContent() {
-        html_updateprofile();
-    }
-
-}