Ui\PageView class replaces html_showf)
[dokuwiki.git] / inc / Ui / Denied.php
blob210050387140d266266efeb236dadbac6baafdf8
1 <?php
3 namespace dokuwiki\Ui;
5 use dokuwiki\Extension\Event;
6 use dokuwiki\Form\Form;
8 /**
9 * DokuWiki Denied Insterface
11 * @package dokuwiki\Ui
13 class Denied extends Ui
15 /**
16 * Show denied page content
18 * @author Andreas Gohr <andi@splitbrain.org>
20 * @return void
22 public function show()
24 // print intro
25 print p_locale_xhtml('denied');
27 if (empty($_SERVER['REMOTE_USER']) && actionOK('login')) {
28 (new Login)->show();