This repository has been archived by the owner on Apr 30, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.php
72 lines (70 loc) · 3.15 KB
/
test.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
<?php
/***************************************************************************
* index.php
* -------------------
* begin : 03-29-2008
* copyright : (c) 2008 The phpBG Team
* email : [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.
*
***************************************************************************/
session_start();
require("system/class.auth.php");
require("system/class.base.php");
require("system/class.dba.php");
require("system/class.instance.php");
require("system/class.mail.php");
require("system/class.interface.php");
require("system/class.template.php");
$index = new template();
$iface = new iface();
$index->_assign("headline", "phpBG");
$index->_assign("title", "phpBG");
$index->_assign("subtitle", "The Open-Source Browserengine");
$index->_assign("lang", "en");
$index = new template();
$nav = new template("navigation.tpl");
$res = new template("ressources.tpl");
$news = new template("news.tpl");
$login = new template("login.tpl");
$error = new template("error.tpl");
for($i=0;$i<10;$i++)
$newslist[] = array("title" => "Lorem ipsum dolor sit amet, consectetuer ", "text" => "Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.");
$usersess = array("LoggedIn" => true,
"username" => "VIA",
"access" => 1,
"lang" => "de",
"player" => array( "era" => 13,
"res" => array( "gold" => 1000,
"stone" => 1000,
"wood" => 1000,
"food" => 1000,
"iron" => 1000,
"oil" => 1000,
"energy" => 1000)
)
);
$news->_assign("newslist", $newslist);
$nav->_assign("items", $iface->_navigation($usersess));
$res->_assign("ressource", $iface->_ressources($usersess));
$index->_assign("lang", "en");
$index->_assign("title", "phpBG");
$index->_assign("headline", "phpBG");
$index->_assign("subtitle", "The Open-Source Browserengine");
$index->_assign("navigation", $nav);
$index->_assign("options", $res);
#$index->_assign("content", $news);
$index->_assign("content", $login);
echo $index->_show();
?>