version: '.$version.''; } echo "\n"; } public static function menu() { if (!User::logged()) return; if (User::hasAccess('menu')) { Lib::loadClass('ProcesMenu'); $procesMenu = ProcesMenu::getInstance(); $procesMenu->show(); if (!V::get('MENU_INIT', '', $_GET)) { Lib::loadClass('UserActivity'); //echo UserActivity::showListInContainer(); } } else { SE_Layout::loadTemplate('menuLevel6'); } } public static function loadTemplate($tmplName, $data = array()) { if (is_array($data) && !empty($data)) { extract($data); } include APP_PATH_LIB . "/tmpl/{$tmplName}.php"; } public static function hotKeyDBG($str) { if (User::hasAccess('dbg')) { echo '' . htmlspecialchars($str) . ''; } } public static function showMessagesForTable($tblName) { if (empty($tblName)) return; $msgsRoute = Router::getRoute('Msgs'); $msgs = $msgsRoute->getActiveMessagesForTable($tblName); if (!empty($msgs)) { self::loadTemplate('msgsForTable', array('msgs' => $msgs)); } } public static function alert($alertType, $msg) { ?>