X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fpage%2Fheader.inc;h=ec80dc160973052d407325a37d60e7e951cc453c;hb=93d7b68e2736d199b052c61d36deac23309b92f4;hp=b0364cbebcec0e19c6c94ae187dfe13ea768455c;hpb=49d2702ed98abe7a564a4abb4c8c5fa225f362e8;p=fa-stable.git diff --git a/includes/page/header.inc b/includes/page/header.inc index b0364cbe..ec80dc16 100644 --- a/includes/page/header.inc +++ b/includes/page/header.inc @@ -15,7 +15,7 @@ function help_url($context=null) { - global $help_base_url, $help_context, $old_style_help; + global $SysPrefs, $help_context; $country = $_SESSION['language']->code; $clean = 0; @@ -34,28 +34,44 @@ function help_url($context=null) $clean = 1; } - if (@$old_style_help) + if (@$SysPrefs->old_style_help) $help_page_url = _($help_page_url); if ($clean) $help_page_url = access_string($help_page_url, true); - return $help_base_url + return htmlspecialchars($SysPrefs->help_base_url .urlencode(strtr(ucwords($help_page_url), array(' '=>'', '/'=>'', '&'=>'And'))) - .'&ctxhelp=1&lang='.$country; + .'&ctxhelp=1&lang='.$country, ENT_QUOTES); +} + +function send_css($css = '') +{ + global $css_files; + + css_files_ensure_init(); + + foreach ($css_files as $css_file) + { + echo " \n"; + } + if ($css) + { + echo " \n"; + } } function send_scripts() { - global $js_lib, $js_static, $js_path, $js_userlib, $comp_path, - $path_to_root, $go_debug; + global $SysPrefs, $path_to_root, $js_static, $js_path, $js_userlib; $js =''; foreach($js_static as $jsfile) { - $fpath = $comp_path.'/'.user_company().'/js_cache/'.$jsfile; + $cached_name = basename($jsfile); + $fpath = user_js_cache().'/'.$cached_name; // compress also static files - if (!file_exists($fpath) || $go_debug) + if (!file_exists($fpath) || $SysPrefs->go_debug) cache_js_file($fpath, file_get_contents($js_path.$jsfile)); $js .= '