XCL Web Application Platform 2.5.0
The XoopsCube Legacy Project
Loading...
Searching...
No Matches
footer.php
1<?php
8/*------------------------------------------------------------------------*
9 | This file was entirely rewritten by the XOOPS Cube Legacy project for |
10 | keeping compatibility with XOOPS 2.0.x |
11 *------------------------------------------------------------------------*/
12
13if (!defined('XOOPS_ROOT_PATH')) {
14 exit();
15}
16if (defined('XOOPS_FOOTER_INCLUDED')) {
17 exit();
18}
19
20$root=&XCube_Root::getSingleton();
21if (!is_object($root->mController)) {
22 exit();
23}
24
25define('XOOPS_FOOTER_INCLUDED', 1);
26
27$xoopsLogger=&$root->mController->getLogger();
28$xoopsLogger->stopTime();
29
30// RMV-NOTIFY
31require_once XOOPS_ROOT_PATH.'/include/notification_select.php';
32
33// Display view
34$root->mController->executeView();
35
36// Count req
37//$filereq = ( count(get_included_files()) );
38//echo "<p>Cound included files : $filereq</p>";