xref: /dokuwiki/inc/Action/Denied.php (revision 64ab5140f7b1c996873fbfe9bab26d9202fbb773)
1<?php
2/**
3 * Created by IntelliJ IDEA.
4 * User: andi
5 * Date: 2/10/17
6 * Time: 4:51 PM
7 */
8
9namespace dokuwiki\Action;
10
11class Denied extends AbstractAclAction {
12
13    /** @inheritdoc */
14    function minimumPermission() {
15        return AUTH_NONE;
16    }
17
18    public function tplContent() {
19        html_denied();
20    }
21
22}
23