-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathindex.php
97 lines (84 loc) · 3.82 KB
/
index.php
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<?php
/**
* File: index.php.
* Author: Ulrich Block
* Date: 03.10.12
* Time: 17:09
* Contact: <[email protected]>
*
* This file is part of Easy-WI.
*
* Easy-WI 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 3 of the License, or
* (at your option) any later version.
*
* Easy-WI 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 Easy-WI. If not, see <http://www.gnu.org/licenses/>.
*
* Diese Datei ist Teil von Easy-WI.
*
* Easy-WI ist Freie Software: Sie koennen es unter den Bedingungen
* der GNU General Public License, wie von der Free Software Foundation,
* Version 3 der Lizenz oder (nach Ihrer Wahl) jeder spaeteren
* veroeffentlichten Version, weiterverbreiten und/oder modifizieren.
*
* Easy-WI wird in der Hoffnung, dass es nuetzlich sein wird, aber
* OHNE JEDE GEWAEHELEISTUNG, bereitgestellt; sogar ohne die implizite
* Gewaehrleistung der MARKTFAEHIGKEIT oder EIGNUNG FUER EINEN BESTIMMTEN ZWECK.
* Siehe die GNU General Public License fuer weitere Details.
*
* Sie sollten eine Kopie der GNU General Public License zusammen mit diesem
* Programm erhalten haben. Wenn nicht, siehe <http://www.gnu.org/licenses/>.
*/
define('EASYWIDIR', dirname(__FILE__));
//Automatic redirection to the install folder
if (is_dir(EASYWIDIR . '/install')) {
$currentPath = trim($_SERVER['REQUEST_URI'], '/');
echo '<meta http-equiv="refresh" content="0; URL=/' . $currentPath . '/install/">';
}
$main = 1;
$page_include = 1;
include(EASYWIDIR . '/stuff/methods/vorlage.php');
include(EASYWIDIR . '/stuff/methods/class_validator.php');
include(EASYWIDIR . '/stuff/methods/functions.php');
include(EASYWIDIR . '/stuff/settings.php');
include(EASYWIDIR . '/stuff/methods/class_page_settings.php');
include(EASYWIDIR . '/stuff/cms/init_page.php');
if (isset($page_active) and $page_active == 'Y') {
if (isset($throw404)) {
$template_file = 'page_404.tpl';
} else if (isset($what_to_be_included_array[$s]) and is_file(EASYWIDIR . '/stuff/cms/' . $what_to_be_included_array[$s])) {
include(EASYWIDIR . '/stuff/cms/' . $what_to_be_included_array[$s]);
} else if (isset($what_to_be_included_array[$s]) and is_file(EASYWIDIR . '/stuff/' . $what_to_be_included_array[$s])) {
include(EASYWIDIR . '/stuff/' . $what_to_be_included_array[$s]);
} else if (isset($what_to_be_included_array[$s]) and is_file(EASYWIDIR . '/' . $what_to_be_included_array[$s])) {
include(EASYWIDIR . '/' . $what_to_be_included_array[$s]);
} else if (isset($customFiles[$s])) {
include(EASYWIDIR . '/stuff/custom_modules/' . $customFiles[$s]);
} else if (isset($s) and !isset($what_to_be_included_array[$s])) {
$template_file = 'page_404.tpl';
} else {
$template_file = 'page_home.tpl';
}
unset($dbConnect);
if (!isset($template_to_use) or !isset($template_to_use) ) {
$template_to_use = 'default';
}
if (!isset($template_file) or is_array($template_file)) {
$template_file = '';
} else if (is_object($template_file)) {
$template_file = (string) $template_file;
}
include(IncludeTemplate($template_to_use, 'page_header.tpl', 'cms'));
include(IncludeTemplate($template_to_use, (preg_match('/^(.*)\.tpl$/', $template_file)) ? $template_file : 'page_general.tpl', (isset($customModule)) ? 'custom_modules' : 'cms'));
include(IncludeTemplate($template_to_use, 'page_footer.tpl', 'cms'));
} else {
redirect($page_data->pageurl . '/login.php');
}
$sql = null;