htdocs/header.php
<?php
// $Id: header.php 12313 2013-09-15 21:14:35Z skenow $
// ------------------------------------------------------------------------ //
// XOOPS - PHP Content Management System //
// Copyright (c) 2000 XOOPS.org //
// <http://www.xoops.org/> //
// ------------------------------------------------------------------------ //
// This program is free software; you can redistribute it and/or modify //
// it under the terms of the GNU General Public License as published by //
// the Free Software Foundation; either version 2 of the License, or //
// (at your option) any later version. //
// //
// You may not change or alter any portion of this comment or credits //
// of supporting developers from this source code or any supporting //
// source code which is considered copyrighted (c) material of the //
// original comment or credit authors. //
// //
// This program is distributed in the hope that it will be useful, //
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
// GNU General Public License for more details. //
// //
// You should have received a copy of the GNU General Public License //
// along with this program; if not, write to the Free Software //
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA //
// ------------------------------------------------------------------------ //
/**
*
* @copyright http://www.xoops.org/ The XOOPS Project
* @copyright http://www.impresscms.org/ The ImpressCMS Project
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU General Public License (GPL)
* @package core
* @since XOOPS
* @author phppp
* @author Sina Asghari (aka stranger) <pesian_stranger@users.sourceforge.net>
* @version $Id: header.php 12313 2013-09-15 21:14:35Z skenow $
*
*/
defined('ICMS_ROOT_PATH') or die('ImpressCMS root path not defined');
icms::$logger->stopTime('Module init');
icms::$logger->startTime('ICMS output init');
global $xoopsOption, $icmsConfig;
$xoopsOption['theme_use_smarty'] = 1;
if (@$xoopsOption['template_main']) {
if (FALSE === strpos($xoopsOption['template_main'], ':')) {
$xoopsOption['template_main'] = 'db:' . $xoopsOption['template_main'];
}
}
$xoopsThemeFactory = new icms_view_theme_Factory();
$xoopsThemeFactory->allowedThemes = $icmsConfig['theme_set_allowed'];
$xoopsThemeFactory->defaultTheme = $icmsConfig['theme_set'];
/**
*
* @var icms_view_theme_Object
*/
$icmsTheme = $xoTheme = &$xoopsThemeFactory->createInstance(array('contentTemplate' => @$xoopsOption['template_main']));
$xoopsTpl = $icmsTpl = &$xoTheme->template;
if (isset($icmsConfigMetaFooter['google_meta']) && $icmsConfigMetaFooter['google_meta'] != '') {
$xoTheme->addMeta('meta', 'verify-v1', $icmsConfigMetaFooter['google_meta']);
$xoTheme->addMeta('meta', 'google-site-verification', $icmsConfigMetaFooter['google_meta']);
}
// ################# Preload Trigger startOutputInit ##############
icms::$preload->triggerEvent('startOutputInit');
$xoTheme->addScript(ICMS_URL . '/include/xoops.js', array('type' => 'text/javascript'));
$xoTheme->addScript(ICMS_URL . '/include/linkexternal.js', array('type' => 'text/javascript'));
$style_info = '';
if (!empty($icmsConfigPlugins['sanitizer_plugins'])) {
foreach ($icmsConfigPlugins['sanitizer_plugins'] as $key) {
if (empty($key)) continue;
if (file_exists(ICMS_PLUGINS_PATH . '/textsanitizer/' . $key . '/' . $key . '.css')) {
$xoTheme->addStylesheet(ICMS_PLUGINS_URL . '/textsanitizer/' . $key . '/' . $key . '.css', array('media' => 'screen'));
} else {
$extension = include_once ICMS_PLUGINS_PATH . '/textsanitizer/' . $key . '/' . $key . '.php';
$func = 'style_' . $key;
if (function_exists($func)) {
$style_info = $func();
if (!empty($style_info)) {
if (!file_exists(ICMS_ROOT_PATH . '/' . $style_info)) {
$xoTheme->addStylesheet('', array('media' => 'screen'), $style_info);
} else {
$xoTheme->addStylesheet($style_info, array('media' => 'screen'));
}
}
}
}
}
}
$xoTheme->addScript(ICMS_LIBRARIES_URL . '/jquery/jquery.js', array('type' => 'text/javascript'));
$xoTheme->addScript(ICMS_LIBRARIES_URL . '/jquery/ui/jquery-ui.min.js', array('type' => 'text/javascript'));
$xoTheme->addScript(ICMS_LIBRARIES_URL . '/jquery/helptip.js', array('type' => 'text/javascript'));
$xoTheme->addStylesheet(ICMS_LIBRARIES_URL . '/jquery/ui/jquery-ui.min.css', array('media' => 'screen'));
$xoTheme->addStylesheet(ICMS_LIBRARIES_URL . '/jquery/jgrowl' . ((defined('_ADM_USE_RTL') && _ADM_USE_RTL) ? '_rtl' : '') . '.css', array('media' => 'screen'));
if (!empty($_SESSION['redirect_message'])) {
$xoTheme->addScript(ICMS_LIBRARIES_URL . '/jquery/jgrowl.js', array('type' => 'text/javascript'));
$xoTheme->addScript('', array('type' => 'text/javascript'), '
if (!window.console || !console.firebug) {
var names = ["log", "debug", "info", "warn", "error", "assert", "dir", "dirxml", "group", "groupEnd",
"time", "timeEnd", "count", "trace", "profile", "profileEnd"];
window.console = {};
for (var i = 0; i < names.length; ++i) window.console[names[i]] = function() {};
}
(function($) {
$(document).ready(function() {
$.jGrowl("' . $_SESSION['redirect_message'] . '", { life:5000 , position: "center", speed: "slow" });
});
})(jQuery);
');
unset($_SESSION['redirect_message']);
}
$xoTheme->addStylesheet(ICMS_LIBRARIES_URL . '/jquery/colorbox/colorbox.css');
$xoTheme->addScript(ICMS_LIBRARIES_URL . '/jquery/colorbox/jquery.colorbox-min.js');
if (@is_object($xoTheme->plugins['icms_view_PageBuilder'])) {
$aggreg = &$xoTheme->plugins['icms_view_PageBuilder'];
$xoopsTpl->assign_by_ref('xoBlocks', $aggreg->blocks);
// Backward compatibility code for pre 2.0.14 themes
$xoopsTpl->assign_by_ref('xoops_lblocks', $aggreg->blocks['canvas_left']);
$xoopsTpl->assign_by_ref('xoops_rblocks', $aggreg->blocks['canvas_right']);
$xoopsTpl->assign_by_ref('xoops_ccblocks', $aggreg->blocks['page_topcenter']);
$xoopsTpl->assign_by_ref('xoops_clblocks', $aggreg->blocks['page_topleft']);
$xoopsTpl->assign_by_ref('xoops_crblocks', $aggreg->blocks['page_topright']);
$xoopsTpl->assign('xoops_showlblock', !empty($aggreg->blocks['canvas_left']));
$xoopsTpl->assign('xoops_showrblock', !empty($aggreg->blocks['canvas_right']));
$xoopsTpl->assign('xoops_showcblock', !empty($aggreg->blocks['page_topcenter']) || !empty($aggreg->blocks['page_topleft']) || !empty($aggreg->blocks['page_topright']));
}
if (icms::$module) $xoTheme->contentCacheLifetime = @$icmsConfig['module_cache'][icms::$module->getVar('mid', 'n')];
// Assigning the selected language as a smarty var
$xoopsTpl->assign('icmsLang', $icmsConfig['language']);
icms::$logger->stopTime('ICMS output init');
icms::$logger->startTime('Module display');