showBanner(); (new Ui\Editor)->show(); } /** * Display error on locked pages * * @author Andreas Gohr * * @return void */ public function showBanner() { global $ID; global $conf; global $lang; global $INFO; $locktime = filemtime(wikiLockFN($ID)); $expire = dformat($locktime + $conf['locktime']); $min = round(($conf['locktime'] - (time() - $locktime) )/60); // print intro print p_locale_xhtml('locked'); print ''.DOKU_LF; } }