htdocs/footer.php
<?php
// $Id: footer.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 XOOPS_copyrights.txt
* @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: footer.php 12313 2013-09-15 21:14:35Z skenow $
*
*/
defined('ICMS_ROOT_PATH') || die('ICMS root path not defined');
if (defined("XOOPS_FOOTER_INCLUDED")) exit();
global $xoopsOption, $icmsConfigMetaFooter, $xoopsTpl;
/** Set the constant XOOPS_FOOTER_INCLUDED to 1 - this file has been included */
define("XOOPS_FOOTER_INCLUDED", 1);
$_SESSION['ad_sess_regen'] = FALSE;
if (isset($_SESSION['sess_regen']) && $_SESSION['sess_regen']) {
icms::$session->sessionOpen(TRUE);
$_SESSION['sess_regen'] = FALSE;
} else {
icms::$session->sessionOpen();
}
// ################# Preload Trigger beforeFooter ##############
icms::$preload->triggerEvent('beforeFooter');
icms::$logger->stopTime('Module display');
if (isset($xoopsOption['theme_use_smarty']) && $xoopsOption['theme_use_smarty'] == 0) {
// the old way
$footer = htmlspecialchars($icmsConfigMetaFooter['footer']) . '<br /><div style="text-align:center">' . _LOCAL_FOOTER . '</div>';
$google_analytics = $icmsConfigMetaFooter['google_analytics'];
if (isset($xoopsOption['template_main'])) {
$xoopsTpl->caching = 0;
$xoopsTpl->display('db:' . $xoopsOption['template_main']);
}
if (!isset($xoopsOption['show_rblock'])) {$xoopsOption['show_rblock'] = 0;}
//themefooter($xoopsOption['show_rblock'], $footer, $google_analytics);
xoops_footer();
} else {
// RMV-NOTIFY
if (is_object(icms::$module) && icms::$module->getVar('hasnotification') == 1 && is_object(icms::$user)) {
/** Require the notifications area */
require_once 'include/notification_select.php';
}
/** @todo Notifications include/require clarification in footer.php - if this is included here, why does it need to be required above? */
/** Include the notifications area */
include_once ICMS_ROOT_PATH . '/include/notification_select.php';
if (!headers_sent()) {
header('Content-Type:text/html; charset=' . _CHARSET);
header('Expires:' . gmdate("D, d M Y H:i:s T", strtotime("yesterday")) );
header('Cache-Control: private, no-cache');
header('Pragma: no-cache');
header("X-Frame-Options: SAMEORIGIN");
}
/*
global $icmsConfig;
if (!$icmsConfig['theme_fromfile']) {
session_write_close();
icms::$xoopsDB->close();
}
*/
//@internal: using global $xoTheme dereferences the variable in old versions, this does not
if (!isset($xoTheme)) {$xoTheme =& $GLOBALS['xoTheme'];}
if (isset($xoopsOption['template_main']) && $xoopsOption['template_main'] != $xoTheme->contentTemplate) {
trigger_error("xoopsOption[template_main] should be defined before including header.php", E_USER_WARNING);
if (FALSE === strpos($xoopsOption['template_main'], ':')) {
$xoTheme->contentTemplate = 'db:' . $xoopsOption['template_main'];
} else {
$xoTheme->contentTemplate = $xoopsOption['template_main'];
}
}
/* check if the module is cached and retrieve it, otherwise, render the page */
if (!$xoTheme->checkCache()) {
$xoTheme->render();
}
}
icms::$logger->stopTime();