xref: /dokuwiki/inc/Action/Denied.php (revision 2f5c77bd85185723017ff0cf3c0b2d65f7319ac2)
1<?php
2
3namespace dokuwiki\Action;
4
5use dokuwiki\Ui;
6
7/**
8 * Class Denied
9 *
10 * Show the access denied screen
11 *
12 * @package dokuwiki\Action
13 */
14class Denied extends AbstractAclAction
15{
16    /** @inheritdoc */
17    public function minimumPermission()
18    {
19        return AUTH_NONE;
20    }
21
22    public function tplContent()
23    {
24        (new Ui\Denied)->show();
25    }
26
27}
28