<?php
/**
* Xoops footer
*
* 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.
*
* @copyright (c) 2000-2025 XOOPS Project (https://xoops.org)
* @license GNU GPL 2 (https://www.gnu.org/licenses/gpl-2.0.html)
* @package kernel
* @since 2.0.0
*/
if (!defined('XOOPS_ROOT_PATH')) {
throw new \RuntimeException('Restricted access');
}
$xoopsPreload = XoopsPreload::getInstance();
$xoopsPreload->triggerEvent('core.footer.start');
if (!defined('XOOPS_FOOTER_INCLUDED')) {
define('XOOPS_FOOTER_INCLUDED', 1);
$xoopsLogger = XoopsLogger::getInstance();
$xoopsLogger->stopTime('Module display');
// RMV-NOTIFY
include_once $GLOBALS['xoops']->path('include/notification_select.php');
if (!headers_sent()) {
header('Content-Type:text/html; charset=' . _CHARSET);
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
//header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
header('Cache-Control: private, no-cache');
header('Pragma: no-cache');
}
//@internal: using global $xoTheme dereferences the variable in old versions, this does not
if (!isset($xoTheme)) {
$xoTheme = $GLOBALS['xoTheme'];
}
if (isset($GLOBALS['xoopsOption']['template_main']) && $GLOBALS['xoopsOption']['template_main'] != $xoTheme->contentTemplate) {
trigger_error("xoopsOption['template_main'] should be defined before including header.php", E_USER_WARNING);
if (false === strpos($GLOBALS['xoopsOption']['template_main'], ':')) {
$xoTheme->contentTemplate = 'db:' . $GLOBALS['xoopsOption']['template_main'];
} else {
$xoTheme->contentTemplate = $GLOBALS['xoopsOption']['template_main'];
}
}
$xoTheme->render();
$xoopsLogger->stopTime();
}
$xoopsPreload->triggerEvent('core.footer.end');
|