| 12345678910111213141516 |
- <?php
- Lib::loadClass('UI');
- class SE_Layout {
- public static function getTitle() { return UI::getTitle(); }
- public static function gora() { UI::startHtml(); }
- public static function dol() { UI::endHtml(); }
- public static function menu() { UI::menu(); }
- public static function loadTemplate($tmplName, $data = array()) { UI::loadTemplate($tmplName, $data); }
- public static function hotKeyDBG($str) { UI::hotKeyDBG($str); }
- public static function showMessagesForTable($tblName) { UI::showMessagesForTable($tblName); }
- public static function alert($alertType, $msg) { UI::alert($alertType, $msg); }
- }
|