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