Initial commit
This commit is contained in:
23
content/inc/Action/Denied.php
Normal file
23
content/inc/Action/Denied.php
Normal file
@@ -0,0 +1,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();
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user