forked from lantreff/dotlan_project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
136 lines (109 loc) · 3.25 KB
/
index.php
File metadata and controls
136 lines (109 loc) · 3.25 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<?php
#########################################################################
# Kontakt-Verwaltungsmodul for dotlan #
# #
# Copyright (C) 2013 Christian Egbers <christian@3gg3.de> #
# #
# admin/kontakte/index.php #
#########################################################################
include_once("../../global.php");
include("functions.php");
$PAGE->sitetitle = $PAGE->htmltitle = _("Projektverwaltung");
if(!$module_admin_check && !$ADMIN->check(IS_ADMIN)) $PAGE->error_die($HTML->gettemplate("error_nopermission"));
else
{
$output .= "<a name='top' >
<a href='/admin/projekt/'>Projekt</a>
<hr class='newsline' width='100%' noshade=''>
<br />";
$verz = $_SERVER['DOCUMENT_ROOT']."/admin/projekt";
$handle = opendir($verz);
$output .= "
<div style=' float:left; min-height: 200px;
background-color:#DDDDDD;
border: solid 1px #000000;
margin-top: 5px;
margin-right: 2.5px;
margin-left: 2.5px;
margin-bottom: 5px;
padding-bottom: 10px;
padding-left: 5px;
padding-right: 5px;
padding-top: 10px;
'>
<h3>Support Ticket System</h3>
";
include($verz.'/sts/view.php');
$output .= "
<br>
<a href='sts'>zum Support Ticket System</a>
</div>
";
/////////////////////////////////////
$output .= "
<div style=' float:left; min-height: 200px;
background-color:#DDDDDD;
border: solid 1px #000000;
margin-top: 5px;
margin-right: 2.5px;
margin-left: 2.5px;
margin-bottom: 5px;
padding-bottom: 10px;
padding-left: 5px;
padding-right: 5px;
padding-top: 10px;
'>
<h3>Leihsystem</h3>
";
include($verz.'/leihsystem/view.php');
$output .= "
<br>
<a href='leihsystem'>zum Leihsystem</a>
</div>
";
/////////////////////////////////////
$output .= "
<div style=' float:left; min-height: 200px;
background-color:#DDDDDD;
border: solid 1px #000000;
margin-top: 5px;
margin-right: 2.5px;
margin-left: 2.5px;
margin-bottom: 5px;
padding-bottom: 10px;
padding-left: 5px;
padding-right: 5px;
padding-top: 10px;
'>
<h3>Catering</h3>
";
include($verz.'/pizza/view.php');
$output .= "
<br>
<a href='pizza'>zu Catering (Bestellungen die da sind!!!)</a>
</div>
";
/////////////////////////////////////
/////////////////////////////////////
$output .= "
<div style=' float:left; min-height: 200px;
background-color:#DDDDDD;
border: solid 1px #000000;
margin-top: 5px;
margin-right: 2.5px;
margin-left: 2.5px;
margin-bottom: 5px;
padding-bottom: 10px;
padding-left: 5px;
padding-right: 5px;
padding-top: 10px;
'>
<h3>Geburtstage der User</h3>
";
include($verz.'/geburtstag/view.php');
/////////////////////////////////////
closedir ($handle);
}
$output.= "<meta http-equiv='refresh' content='60; URL=index.php' /> ";
$PAGE->render( utf8_decode($output) ); // Ausgabe des gesamten Seiten inhaltes über das Dotlan-System
?>