. ***********************************************************************/ function help_url($title, $app) { global $help_page_url, $help_base_url, $applications, $help_page_title; if (isset($help_page_url)) { return $help_base_url.$help_page_url; } $help_page_url = ''; if (isset($help_page_title)) { $help_page_url = $help_page_title; } elseif ($title==_("Main Menu")) { $help_page_url = access_string($applications[$app], true); } else { $help_page_url = $title; } return $help_base_url.urlencode(str_replace(' ', '', ucwords($help_page_url))); } function send_scripts() { global $js_lib, $js_static, $js_path, $js_userlib, $comp_path, $path_to_root, $go_debug; $js =''; foreach($js_static as $jsfile) { $fpath = $comp_path.'/'.user_company().'/js_cache/'.$jsfile; // compress also static files if (!file_exists($fpath) || $go_debug) cache_js_file($fpath, file_get_contents($js_path.$jsfile)); $js .= ''; } foreach($js_userlib as $jsfile) { $js .= ''; } echo $js; } function page_header($title, $no_menu=false, $is_index=false, $onload="", $js="") { // titles and screen header global $path_to_root, $def_app, $use_popup_windows, $help_base_url; if (in_ajax()) return; // just for speed up // $jsext = substr_replace($_SERVER['PHP_SELF'], '.js', -4); // if (file_exists($_SERVER['DOCUMENT_ROOT'].$jsext)) // add_js_ufile($jsext); $theme = user_theme(); $local_path_to_root = $path_to_root; if ($help_base_url != null && $use_popup_windows && $js == '') { if (!function_exists('get_js_open_window')) { include_once($path_to_root.'/includes/ui/ui_view.inc'); } add_js_source(get_js_open_window(900, 500)); } if ($js!='') add_js_source($js); if (!isset($no_menu)) { $no_menu = false; } if (!isset($_SESSION["sel_app"])) session_register("sel_app"); if (isset($_SESSION["App"]) && is_object($_SESSION["App"]) && isset($_SESSION["App"]->selected_application) && $_SESSION["App"]->selected_application != "") $sel_app = $_SESSION["App"]->selected_application; elseif (isset($_SESSION["sel_app"]) && $_SESSION["sel_app"] != "") $sel_app = $_SESSION["sel_app"]; else $sel_app = user_startup_tab(); $_SESSION["sel_app"] = $sel_app; if (isset($_SESSION["App"]) && is_object($_SESSION["App"])) $_SESSION["App"]->selected_application = $sel_app; $encoding = $_SESSION['language']->encoding; if (!headers_sent()){ header("Content-type: text/html; charset='$encoding'"); } echo "\n"; echo "dir . "' >\n"; echo "$title"; echo ""; echo " \n"; send_scripts($js); echo " \n"; if ($onload == "") echo ""; else echo ""; include_once($local_path_to_root."/themes/".user_theme()."/renderer.php"); $rend = new renderer(); $rend->menu_header($title, $no_menu, $is_index); error_box(); } ?>