summaryrefslogtreecommitdiff
path: root/platform/www/inc/Action/Login.php
blob: 7f903ff2de3875be3e755e385657e4d3977a66a5 (plain)
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
36
<?php

namespace dokuwiki\Action;

use dokuwiki\Action\Exception\ActionException;

/**
 * Class Login
 *
 * The login form. Actual logins are handled in inc/auth.php
 *
 * @package dokuwiki\Action
 */
class Login extends AbstractAclAction {

    /** @inheritdoc */
    public function minimumPermission() {
        return AUTH_NONE;
    }

    /** @inheritdoc */
    public function checkPreconditions() {
        global $INPUT;
        parent::checkPreconditions();
        if($INPUT->server->has('REMOTE_USER')) {
            // nothing to do
            throw new ActionException();
        }
    }

    /** @inheritdoc */
    public function tplContent() {
        html_login();
    }

}