document.body.style.minHeight = '' + (window.innerHeight - 2) + 'px';"; } } public static function endHtml() { $version = (file_exists(APP_PATH_ROOT . '/VERSION'))? file_get_contents(APP_PATH_ROOT . '/VERSION') : null; if ($version) { echo '
version: '.$version.'
'; } echo UI::fixFooterPosition('footer_js_tag'); 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 { UI::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; Lib::loadClass('Router'); $msgsRoute = Router::getRoute('Msgs'); $msgs = $msgsRoute->getActiveMessagesForTable($tblName); if (!empty($msgs)) { self::loadTemplate('msgsForTable', array('msgs' => $msgs)); } } public static function alert($alertType, $msg, $outputHtml = true) { if (!$outputHtml) { $type = ('danger' == $alertType) ? "ERROR" : strtoupper($alertType); echo "{$type}: {$msg}\n"; return; } ?>
... * $params['cols'] (optional) -> cols, if not set read from first row * $params['rows'] -> rows, if not set - empty table * $params['rows'] -> rows, if not set - empty table * $params['disable_lp'] -> disable lp. col */ public static function table($params) { $cols = V::get('cols', array(), $params); $rows = V::get('rows', array(), $params); $caption = V::get('caption', '', $params); $showLp = (!V::get('disable_lp', false, $params)); if (empty($cols) && !empty($rows)) { $firstRow = array(); foreach ($rows as $row) { $firstRow = $row; break; } $cols = array_keys((array)$firstRow); } // if (empty($cols)) return; $hiddenCols = V::get('hidden_cols', array(), $params); $html_id = V::get('__html_id', '', $params); ?> > >
Lp.
' . "\n"; if (!empty($attrs['class'])) $attrs['class'] .= ' container'; $attrs['class'] = ' container'; self::startTag('div', $attrs); } public static function endContainer() { echo '' . "\n"; } public static function startTag($tag, $attrs = array()) { $outAttrs = ''; if (is_array($attrs)) { foreach ($attrs as $attrName => $val) $outAttrs .= " {$attrName}=\"{$val}\""; } echo '<' . $tag . $outAttrs . '>'; } public static function endTag($tag) { echo ''; } public static function tag($tag, $attrs = array(), $childrens = array()) { self::startTag($tag, $attrs); if (!empty($childrens) && is_array($childrens)) throw new Exception("UI::tag() children as nodes not implemented".json_encode($childrens)); if (is_scalar($childrens)) echo $childrens; self::endTag($tag); } public static function link($type, $content, $href, $attrs = array()) { $attrs['class'] = V::get('class', '', $attrs); $attrs['class'] .= "btn btn-{$type}"; if (!empty($attrs['className'])) { foreach ($attrs['className'] as $cls => $bool) { if ($bool) $attrs['class'] .= " {$cls}"; } unset($attrs['className']); } $attrs['href'] = $href; UI::tag('a', $attrs, $content); } public static function jsAjaxTable($params) { } public static function price($value) { // TODO: if not number type - string wwith wrong format - try to convert? return number_format($value, 2, ',', ' '); } }