24 lines
333 B
PHP
24 lines
333 B
PHP
<?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();
|
|
}
|
|
|
|
}
|