db_Mark_Time('(Header Top)'); e107::css('core', 'bootstrap-datetimepicker/css/datetimepicker.css', 'jquery'); e107::js('core', 'bootstrap-datetimepicker/js/bootstrap-datetimepicker.min.js', 'jquery', 2); e107::js('core', 'bootstrap/js/bootstrap-tooltip.js','jquery'); e107::css('core', 'bootstrap/css/tooltip.css','jquery'); e107::js('core', 'bootstrap-notify/js/bootstrap-notify.js','jquery'); e107::css('core', 'bootstrap-notify/css/bootstrap-notify.css','jquery'); // ------------------ // e107::js('core', 'jquery.elastic.js', 'jquery', 2); e107::js('core', 'rate/js/jquery.raty.js', 'jquery', 2); e107::css('core', 'core/all.jquery.css', 'jquery'); e107::js("core", "core/front.jquery.js","jquery",5); // Load all default functions. e107::js("core", "core/all.jquery.js","jquery",5); // Load all default functions. $js_body_onload = array(); // Legacy array of code to load with page. // // *** Code sequence for headers *** // IMPORTANT: These items are in a carefully constructed order. DO NOT REARRANGE // without checking with experienced devs! Various subtle things WILL break. // // We realize this is a bit (!) of a mess and hope to make further cleanups in a future release. // // A: Define themable header parsing // B: Send HTTP headers that come before any html // C: Send start of HTML // D: Send CSS // E: Send JS // F: Send Meta Tags and Icon links // G: Send final theme headers (theme_head() function) // H: Generate JS for image preloading (setup for onload) // I: Calculate onload() JS functions to be called // J: Send end of html and start of // K: (The rest is ignored for popups, which have no menus) // L: Removed // M: Send top of body for custom pages and for news // N: Send other top-of-body HTML // // Load order notes for devs // * Browsers wait until ALL HTML has loaded before executing ANY JS // * The last CSS tag downloaded supercedes earlier CSS tags // * Browsers don't care when Meta tags are loaded. We load last due to // a quirk of e107's log subsystem. // * Multiple external file references slow down page load. Each one requires // browser-server interaction even when cached. // // // A: Define themeable header parsing // if (!function_exists("parseheader")) { function parseheader($LAYOUT) { $tp = e107::getParser(); $tmp = explode("\n", $LAYOUT); $sc = e107::getScBatch('_theme_'); foreach ($tmp as $line) { if (preg_match("/{.+?}/", $line)) { echo $tp->parseTemplate($line, true, $sc)."\n"; // retain line-breaks. } else { echo $line."\n"; // retain line-breaks. } } } } // // B: Send HTTP headers (these come before ANY html) // // send the charset to the browser - overrides spurious server settings with the lan pack settings. // Would like to set the MIME type appropriately - but it broke other things //if (stristr($_SERVER["HTTP_ACCEPT"], "application/xhtml+xml")) // header("Content-type: application/xhtml+xml; charset=utf-8", TRUE); //else header("Content-type: text/html; charset=utf-8", TRUE); // NEW - HTML5 default // TODO - more precise controlo over page header depending on the HTML5 mode if(!defined("XHTML4")) { echo "\n"; echo "\n"; echo "\n"; echo "\n"; } else { echo (defined("STANDARDS_MODE") ? "" : "\n")."\n"; echo "\n"; echo " "; echo (defined("CORE_LC")) ? "\n" : ""; } // // C: Send start of HTML // if(vartrue($pref['meta_copyright'][e_LANGUAGE])) e107::meta('dcterms.rights',$pref['meta_copyright'][e_LANGUAGE]); if(vartrue($pref['meta_author'][e_LANGUAGE])) e107::meta('author',$pref['meta_author'][e_LANGUAGE]); if($pref['sitebutton']) e107::meta('og:image',$tp->replaceConstants($pref['sitelogo'],'full')); if(defined("VIEWPORT")) e107::meta('viewport',VIEWPORT); //BC ONLY echo e107::getUrl()->response()->renderMeta()."\n"; echo "".(defined('e_PAGETITLE') ? e_PAGETITLE.' - ' : (defined('PAGE_NAME') ? PAGE_NAME.' - ' : "")).SITENAME."\n\n"; // Wysiwyg JS support on or off. if (varset($pref['wysiwyg'],FALSE)) { define("e_WYSIWYG",TRUE); } else { define("e_WYSIWYG",FALSE); } // // D: Register CSS // $e_js = e107::getJs(); $e_pref = e107::getConfig('core'); // Other Meta tags. // Register Core CSS first, TODO - convert $no_core_css to constant, awaiting for path changes // NOTE: PREVIEWTHEME check commented - It shouldn't break anything as it's overridden by theme CSS now if (/*!defined("PREVIEWTHEME") && */!isset($no_core_css) || !$no_core_css) { //echo "\n"; $e_js->otherCSS('{e_WEB_CSS}e107.css'); } // Load Plugin Header Files, allow them to load CSS/JSS via JS Manager early enouhg // NOTE: e_header.php should not output content, it should only register stuff! e_meta.php is more appropriate for outputting header content. $e_headers = $e_pref->get('e_header_list'); if ($e_headers && is_array($e_headers)) { foreach($e_headers as $val) { // no checks fore existing file - performance e107_include(e_PLUGIN.$val."/e_header.php"); } } unset($e_headers); // re-initalize in case globals are destroyed from $e_headers includes $e_js = e107::getJs(); $e_pref = e107::getConfig('core'); // --- Load plugin Meta files - now possible to add to all zones! -------- $e_meta_content = ''; if (is_array($pref['e_meta_list'])) { // $pref = e107::getPref(); ob_start(); foreach($pref['e_meta_list'] as $val) { $fname = e_PLUGIN.$val."/e_meta.php"; // Do not place inside a function - BC $pref required. . if(is_readable($fname)) { $ret = ($e107_debug || isset($_E107['debug'])) ? include_once($fname) : @include_once($fname); } } // content will be added later // NOTE: not wise to do e_meta output, use JS Manager! $e_meta_content = ob_get_contents(); ob_end_clean(); unset($ret); } // -------- Generate Apple Touch Icon --------- if(isset($pref['sitebutton'])) { $appleIcon = $tp->thumbUrl($pref['sitebutton'],'w=144&h=144&crop=1',true); echo "\n"; unset($appleIcon); } // Register Plugin specific CSS // DEPRECATED, use $e_js->pluginCSS('myplug', 'style/myplug.css'[, $media = 'all|screen|...']); if (isset($eplug_css) && $eplug_css) { if(!is_array($eplug_css)) { $eplug_css = array($eplug_css); } foreach($eplug_css as $kcss) { // echo ($kcss[0] == "<") ? $kcss : "\n"; $e_js->otherCSS($kcss); } } // Register Theme CSS // Writing link tags is DEPRECATED, use $e_js->themeCSS('style/mytheme.css'[, $media = 'all|screen|...']); - current theme is auto-detected if(defined("PREVIEWTHEME")) { // XXX - can be PREVIEWTHEME done in a better way than this? //echo "\n"; //var_dump(PREVIEWTHEMENAME); $e_js->otherCSS(PREVIEWTHEME.'style.css'); } else { $css_default = "all"; // TODO - default should be defined by the theme // theme-css.php auto-detection TODO - convert it to constant or anything different from GLOBAL if (isset($theme_css_php) && $theme_css_php) { //echo "\n"; $e_js->themeCSS('theme-css.php', $css_default); } else { // Theme default $e_js->themeCSS(THEME_STYLE, $css_default); /* Moved to class2 and defined as THEME_STYLE if($e_pref->get('themecss') && file_exists(THEME.$e_pref->get('themecss'))) { //echo "\n"; $e_js->themeCSS($e_pref->get('themecss'), $css_default); } else { // echo "\n"; $e_js->themeCSS('style.css', $css_default); } */ // Support for print and handheld media - override theme default CSS if(file_exists(THEME."style_mobile.css")) { //echo "\n"; //$css_default = "screen"; $e_js->themeCSS('style_mobile.css', 'handheld'); } if(file_exists(THEME."style_print.css")) { // echo "\n"; // $css_default = "screen"; $e_js->themeCSS('style_print.css', 'print'); } } // FIXME: TEXTDIRECTION compatibility CSS (marj?) // TODO: probably better to externalise along with some other things above // possibility to overwrite some CSS definition according to TEXTDIRECTION // especially usefull for rtl.css // see _blank theme for examples if(defined('TEXTDIRECTION') && file_exists(THEME.'/'.strtolower(TEXTDIRECTION).'.css')) { //echo ' //'; $e_js->themeCSS(TEXTDIRECTION.'.css', 'all'); } } // // Render CSS - all in once // Read here why - http://code.google.com/speed/page-speed/docs/rtt.html#PutStylesBeforeScripts // // Other CSS - from unknown location, different from core/theme/plugin location or backward compatibility; NOTE - could be removed in the future!!! //TODO Additional options for 'bootstrap' and 'style' (ie. THEME_STYLE loaded above). Requires changes to js_manager.php $CSSORDER = deftrue('CSSORDER') ? explode(",",CSSORDER) : array('other','core','plugin','theme','inline'); foreach($CSSORDER as $val) { $cssId = $val."_css"; $e_js->renderJs($cssId, false, 'css', false); } unset($CSSORDER); /* $e_js->renderJs('other_css', false, 'css', false); echo "\n\n"; // Core CSS $e_js->renderJs('core_css', false, 'css', false); echo "\n\n"; // Plugin CSS $e_js->renderJs('plugin_css', false, 'css', false); echo "\n\n"; // Theme CSS //echo "\n"; $e_js->renderJs('theme_css', false, 'css', false); echo "\n\n"; // Inline CSS - not sure if this should stay at all! $e_js->renderJs('inline_css', false, 'css', false); echo "\n\n"; */ // // Style for unobtrusive JS, prevent 3rd party code overload // // require_once(e_FILE."/e_css.php"); see e107_web/css/e107.css // // E: Send JS all in once // Read here why - http://code.google.com/speed/page-speed/docs/rtt.html#PutStylesBeforeScripts // TODO - more work (zones, eplug_js, headerjs etc order, external JS/CSS) // TODO - mobile support // [JSManager] Load JS Includes - Zone 1 - Before Library e107::getJs()->renderJs('header', 1); e107::getJs()->renderJs('header_inline', 1); // Send Javascript Libraries ALWAYS (for now) $jslib = e107::getObject('e_jslib', null, e_HANDLER.'jslib_handler.php'); $jslib->renderHeader('front', false); // [JSManager] Load JS Includes - Zone 2 - After Library e107::getJs()->renderJs('header', 2); e107::getJs()->renderJs('header_inline', 2); // Send Plugin JS Files //DEPRECATED, $eplug_js will be removed soon - use e107::getJs()->headerPlugin('myplug', 'myplug/js/my.js'); if (isset($eplug_js) && $eplug_js) { echo "\n\n"; if(is_array($eplug_js)) { $eplug_js_unique = array_unique($eplug_js); foreach($eplug_js_unique as $kjs) { echo ($kjs[0] == "<") ? $kjs : "\n"; } } else { echo "\n"; } } // Send Theme JS Files //DEPRECATE this as well? if (isset($theme_js_php) && $theme_js_php) { echo "\n"; } else { if (file_exists(THEME.'theme.js')) { echo "\n"; } if (is_readable(e_FILE.'user.js') && filesize(e_FILE.'user.js')) { echo "\n"; } if (file_exists(THEME.'theme.vbs')) { echo "\n"; } if (is_readable(e_FILE.'user.vbs') && filesize(e_FILE.'user.vbs')) { echo "\n"; } } //FIXME - CHAP JS // TODO - convert it to e107::getJs()->header/footerFile() call if (!USER && ($pref['user_tracking'] == "session") && varset($pref['password_CHAP'],0)) { if ($pref['password_CHAP'] == 2) { // *** Add in the code to swap the display tags // $js_body_onload[] = "expandit('loginmenuchap','nologinmenuchap');"; $js_body_onload[] = "expandit('loginmenuchap');"; $js_body_onload[] = "expandit('nologinmenuchap');"; } echo "\n"; $js_body_onload[] = "getChallenge();"; } //headerjs moved below // Deprecated function finally removed //if(function_exists('core_head')){ echo core_head(); } // [JSManager] Load JS Includes - Zone 3 - After e_plug/theme.js, before headerjs() e107::getJs()->renderJs('header', 3); e107::getJs()->renderJs('header_inline', 3); // [JSManager] Load JS Includes - Zone 4 - After headerjs e107::getJs()->renderJs('header', 4); e107::getJs()->renderJs('header_inline', 4); // [JSManager] Load JS Includes - Zone 5 - End of header JS, just before e_meta content and e107:loaded trigger e107::getJs()->renderJs('header', 5); // // F: Send Meta Tags, Icon links // // --- Send plugin Meta -------- echo $e_meta_content; // e_meta already loaded // // G: Send Theme Headers // if(function_exists('theme_head')) { echo theme_head(); } // FIXME description and keywords meta tags shouldn't be sent on all pages $diz_merge = (defined("META_MERGE") && META_MERGE != FALSE && $pref['meta_description'][e_LANGUAGE]) ? $pref['meta_description'][e_LANGUAGE]." " : ""; $key_merge = (defined("META_MERGE") && META_MERGE != FALSE && $pref['meta_keywords'][e_LANGUAGE]) ? $pref['meta_keywords'][e_LANGUAGE]."," : ""; function render_meta($type) { global $pref,$tp; if (!isset($pref['meta_'.$type][e_LANGUAGE]) || empty($pref['meta_'.$type][e_LANGUAGE])) { return ''; } if($type == "tag") { return str_replace("<", "<", $tp -> toHTML($pref['meta_tag'][e_LANGUAGE], FALSE, "nobreak, no_hook, no_make_clickable"))."\n"; } else { return ''."\n"; } } echo (defined("META_DESCRIPTION")) ? "\n\n" : render_meta('description'); echo (defined("META_KEYWORDS")) ? "\n\n" : render_meta('keywords'); //echo render_meta('copyright'); //echo render_meta('author'); echo render_meta('tag'); unset($key_merge,$diz_merge); // ---------- Favicon --------- if (file_exists(THEME."favicon.ico")) { echo "\n\n"; } elseif (file_exists(e_BASE."favicon.ico")) { echo "\n\n"; } // // FIXME H: Generate JS for image preloads (do we really need this?) // if ($pref['image_preload'] && is_dir(THEME.'images')) { $ejs_listpics = ''; $handle=opendir(THEME.'images'); while ($file = readdir($handle)) { if(preg_match("#(jpg|jpeg|gif|bmp|png)$#i", $file)) { $ejs_listpics .= $file.","; } } $ejs_listpics = substr($ejs_listpics, 0, -1); closedir($handle); if (!isset($script_text)) $script_text = ''; $script_text .= "ejs_preload('".THEME_ABS."images/','".$ejs_listpics."');\n"; } if (isset($script_text) && $script_text) { echo "\n"; } // // FIXME - I: Calculate JS onload() functions for the BODY tag // // Fader menu // OLD CODE REMOVAL //global $eMenuActive, $eMenuArea; //if(in_array('fader_menu', $eMenuActive)) $js_body_onload[] = 'changecontent(); '; // External links handling //$js_body_onload = array();//'externalLinks();'; - already registered to e107:loaded Event by the new JS API // Theme JS // XXX DEPRECATED $body_onload and related functionality if (defined('THEME_ONLOAD')) $js_body_onload[] = THEME_ONLOAD; $body_onload=''; if (count($js_body_onload)) $body_onload = " onload=\"".implode(" ",$js_body_onload)."\""; // // J: Send end of and start of // /* * Fire Event e107:loaded * core JS available only in Prototype front-end environment */ // e_css.php is removed //\$('e-js-css').remove(); e107::js('inline'," document.observe('dom:loaded', function () { e107Event.trigger('loaded', null, document); }); ",'prototype',5); e107::getJs()->renderJs('header_inline', 5); echo "\n"; // ---------- New in 2.0 ------------------------------------------------------- if(isset($LAYOUT) && is_array($LAYOUT)) // $LAYOUT is a combined $HEADER,$FOOTER. { foreach($LAYOUT as $key=>$template) { list($hd,$ft) = explode("{---}",$template); $HEADER[$key] = isset($LAYOUT['_header_']) ? $LAYOUT['_header_'] . $hd : $hd; $FOOTER[$key] = isset($LAYOUT['_footer_']) ? $ft . $LAYOUT['_footer_'] : $ft ; } unset($hd,$ft); } $def = THEME_LAYOUT; // The active layout based on custompage matches. // echo "DEF = ".$def."
"; if($def == 'legacyCustom' || $def=='legacyDefault' ) // 0.6 themes. { // echo "MODE 0.6"; if($def == 'legacyCustom') { $HEADER = ($CUSTOMHEADER) ? $CUSTOMHEADER : $HEADER; $FOOTER = ($CUSTOMFOOTER) ? $CUSTOMFOOTER : $FOOTER; } } elseif($def && $def != "legacyCustom" && (isset($CUSTOMHEADER[$def]) || isset($CUSTOMFOOTER[$def]))) // 0.7/1.x themes { // echo " MODE 0.7"; $HEADER = ($CUSTOMHEADER[$def]) ? $CUSTOMHEADER[$def] : $HEADER; $FOOTER = ($CUSTOMFOOTER[$def]) ? $CUSTOMFOOTER[$def] : $FOOTER; } elseif($def && isset($HEADER[$def]) && isset($FOOTER[$def])) // 2.0 themes - we use only $HEADER and $FOOTER arrays. { // echo " MODE 0.8"; $HEADER = $HEADER[$def]; $FOOTER = $FOOTER[$def]; } if(deftrue('e_IFRAME')) { $HEADER = ""; $FOOTER = ""; $body_onload .= " class='e-iframe'"; } $HEADER = str_replace("{e_PAGETITLE}",deftrue('e_PAGETITLE',''),$HEADER); if(!deftrue('BODYTAG')) //TODO Discuss a better way? { echo "\n"; } else { if ($body_onload) { // Kludge to get the CHAP code included echo substr(trim(BODYTAG), 0, -1).' '.$body_onload.">\n"; // FIXME - must be a better way! } else { echo BODYTAG."\n"; } } // Bootstrap Modal Window - too important to template. /* echo ' '; */ // Header included notification, from this point header includes are not possible define('HEADER_INIT', TRUE); $sql->db_Mark_Time("Main Page Body"); // // K: (The rest is ignored for popups, which have no menus) // //echo "XXX - ".$e107_popup; // require $e107_popup =1; to use it as header for popup without menus if(!isset($e107_popup)) { $e107_popup = 0; } if ($e107_popup != 1) { // // L: Removed // // // M: Send top of body for custom pages and for news // //XXX - remove all page detections if (e_PAGE == 'news.php' && isset($NEWSHEADER)) { parseheader($NEWSHEADER); } else { if(deftrue('DEMO_CONTENT')) // embedded content relative to THEME directory - update paths. { $HEADER = preg_replace('#(src|href)=("|\')([^:\'"]*)("|\')#','$1=$2'.THEME.'$3$4', $HEADER); $FOOTER = preg_replace('#(src|href)=("|\')([^:\'"]*)("|\')#','$1=$2'.THEME.'$3$4', $FOOTER); } parseheader($HEADER); // echo $HEADER; } unset($def); // ----------------------------------------------------------------------------- // // N: Send other top-of-body HTML // if(ADMIN && !vartrue($_SERVER['E_DEV']) && file_exists(e_BASE.'install.php')) { echo "
*** ".CORE_LAN4." ***
".CORE_LAN5."
"; } //XXX TODO LAN in English.php echo ""; if(deftrue('BOOTSTRAP')) { echo "
"; // Popup Alert Message holder. @see http://nijikokun.github.io/bootstrap-notify/ } // Display Welcome Message when old method activated. if(strstr($HEADER,"{WMESSAGE")===false && strstr($FOOTER,"{WMESSAGE")===false) // Auto-detection to override old pref. { echo e107::getParser()->parseTemplate("{WMESSAGE}"); } if(defined("PREVIEWTHEME")) { themeHandler::showPreview(); } unset($text); } //Trim whitepsaces after end of the script