forked from jegelstaff/formulize
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
47 lines (44 loc) · 1.65 KB
/
index.php
File metadata and controls
47 lines (44 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
/**
* Site index aka home page.
* redirects to installation, if ImpressCMS is not installed yet
*
* @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
* @author Sina Asghari(aka stranger) <pesian_stranger@users.sourceforge.net>
* @version AVN: $Id: index.php 21047 2011-03-14 15:52:14Z m0nty_ $
**/
/** Need the mainfile */
include "mainfile.php";
$member_handler = icms::handler('icms_member');
$group = $member_handler->getUserBestGroup((@is_object(icms::$user) ? icms::$user->getVar('uid') : 0));
$icmsConfig['startpage'] = $icmsConfig['startpage'][$group];
if (isset($icmsConfig['startpage']) && $icmsConfig['startpage'] != "" && $icmsConfig['startpage'] != "--") {
$arr = explode('-', $icmsConfig['startpage']);
if (count($arr) > 1) {
$page_handler = icms::handler('icms_data_page');
$page = $page_handler->get($arr[1]);
if (is_object($page)) {
$url =(substr($page->getVar('page_url'), 0, 7) == 'http://')
? $page->getVar('page_url') : ICMS_URL . '/' . $page->getVar('page_url');
header('Location: ' . $url);
} else {
$icmsConfig['startpage'] = '--';
$xoopsOption['show_cblock'] = 1;
/** Included to start page rendering */
include "header.php";
/** Included to complete page rendering */
include "footer.php";
}
} else {
header('Location: ' . ICMS_MODULES_URL . '/' . $icmsConfig['startpage'] . '/');
}
exit();
} else {
$xoopsOption['show_cblock'] = 1;
/** Included to start page rendering */
include "header.php";
/** Included to complete page rendering */
include "footer.php";
}