summaryrefslogtreecommitdiff
path: root/platform/www/inc/Action/Denied.php
blob: c8e01926265cb86dd3b373cb2c69c4830b966dca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php

namespace dokuwiki\Action;

/**
 * Class Denied
 *
 * Show the access denied screen
 *
 * @package dokuwiki\Action
 */
class Denied extends AbstractAclAction {

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

    public function tplContent() {
        html_denied();
    }

}