XOOPS  2.6.0
page_end.php
Go to the documentation of this file.
1 <?php
2 /*
3  You may not change or alter any portion of this comment or credits
4  of supporting developers from this source code or any supporting source code
5  which is considered copyrighted (c) material of the original comment or credit authors.
6 
7  This program is distributed in the hope that it will be useful,
8  but WITHOUT ANY WARRANTY; without even the implied warranty of
9  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10 */
11 
27 require_once __DIR__ . '/include/common.inc.php';
28 
30 
31 /* @var $wizard XoopsInstallWizard */
32 $wizard = $_SESSION['wizard'];
33 
34 setcookie('xo_install_user', '', null, null, null);
35 
36 $installer_modified = "install_remove_" . uniqid(mt_rand());
37 register_shutdown_function('install_finalize', $installer_modified);
38 
39 $_SESSION['installer_modified'] = $installer_modified;
40 
41 $wizard->loadLangFile('finish');
42 $content = $_SESSION['content'];
43 
44 $_SESSION['pageHasHelp'] = false;
45 $_SESSION['pageHasForm'] = false;
46 $_SESSION['content'] = $content;
47 include XOOPS_INSTALL_PATH . '/include/install_tpl.php';
48 $_SESSION = array();
$installer_modified
Definition: page_end.php:36
static getInstance()
Definition: Xoops.php:160
$_SESSION['installer_modified']
Definition: page_end.php:39
$content
Definition: page_end.php:42
$wizard
Definition: page_end.php:32
const XOOPS_INSTALL_PATH
Definition: common.inc.php:33
$xoops
Definition: page_end.php:29