-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
61 lines (55 loc) · 2.97 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
<?php
##################################################################################
## ##
## This File is Part of the FLSES Project, released under GNU GPL v3 ##
## Copyright © 2009 tai([email protected]) ##
## ##
## This program 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. ##
## ##
## 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. See the ##
## GNU General Public License for more details. ##
## ##
## You should have received a copy of the GNU General Public License ##
## along with this program. If not, see <http://www.gnu.org/licenses/>. ##
## ##
##################################################################################
## ##
## FLSES is a Project that aims to help keeping the FL Community alive ##
## You can find more information at <http://the-starport.net> ##
## ##
## Plugins and Future Versions will be released the above website. ##
## ##
##################################################################################
header('Content-Type: text/html; charset=utf-8');
error_reporting(E_ALL ^ E_NOTICE);
session_start();
$settings = parse_ini_file("./config.ini",true);
include_once "./classes/templates.php";
include_once "./classes/pluginSystem.php";
include_once "./classes/language.php";
include_once "./classes/flses.php";
include_once "./classes/flhook.php";
mysql_connect($settings['MySQL']['server'],$settings['MySQL']['user'],$settings['MySQL']['password']);
mysql_select_db($settings['MySQL']['database']);
$language = "en";
$flhook = new FLHook();
$flses = new FLSES($flhook,$settings);
if($_GET["menu"])
{
$main = $_GET["menu"];
$sub = $_GET["submenu"];
if(!$sub)
$sub = "overview";
$flses->setClass($main);
$flses->$sub();
} else {
$flses->setClass("Home");
$flses->overview();
}
print $flses->output;
?>