showBanner(); $data = null; $event = new Event('ACTION_DENIED_TPLCONTENT', $data); if ($event->advise_before()) { global $INPUT; if (empty($INPUT->server->str('REMOTE_USER')) && actionOK('login')) { (new Login())->show(); } } $event->advise_after(); } /** * Display error on denied pages * * @author Andreas Gohr * * @return void */ public function showBanner() { // print intro echo p_locale_xhtml('denied'); } }