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