LayoutEngine.class.php
7.17 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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
<?php
/*
This is phpSitemapNG, a php script that creates your personal google sitemap
It can be downloaded under http://enarion.net/google/
License: GPL
Tobias Kluge, enarion.net
*/
/**
* this class gets all messages from the application and
* creates a html output as result of getContent()
*/
class LayoutEngine {
var $content = array();
var $buffering = true;
var $static_title = "";
function LayoutEngine($staticTitle) {
/* $this->content[error] = array();
$this->content[warning] = array();
$this->content[info] = array();
$this->content[success] = array();
$this->content[text] = array();
$this->content[debug][] = array();
*/ $this->content['content_header'] = "";
$this->content['content_footer'] = "";
$this->content['title'] = "";
$this->content['charset'] = "";
$this->content['header'] = array();
$this->content['css'] = array();
$this->content['body'] = array();
$this->static_title = $staticTitle;
}
function addHeader($header) {
$this->content['header'][] = $header;
}
function switchOffBuffer() {
$this->buffering = false;
}
function addCss($msg) {
$this->content['css'][] = $msg;
}
function addContentHeader($msg) {
$tmp = '<div class="content_header">'.$msg.'</div>'. "\n";
if ($this->buffering) {
$this->content['content_header'][] = $tmp;
} else {
print $tmp;
}
}
function addContentFooter($msg) {
$tmp = '<div class="content_footer">'.$msg.'</div>'. "\n";
if ($this->buffering) {
$this->content['content_footer'][] = $tmp;
} else {
print $tmp;
}
}
function setTitle($msg) {
$this->content['title'] = $msg;
}
function setCharset($msg) {
$this->content['charset'] = $msg;
}
function addError($msg, $title="") {
if ($title != "") {
$tmp = '<h4 class="error">Error: '.$title.'</h4>'."\n".'<div class="error">'.$msg.'</div>'."\n";
} else {
$tmp = '<div class="error">Error: '.$msg.'</div>'."\n";
}
if ($this->buffering) {
$this->content['body'][] = $tmp;
} else {
print $tmp;
}
}
function addWarning($msg, $title = "") {
if ($title != "") {
$tmp = '<h4 class="warning">Warning: '.$title.'</h4>'."\n".'<div class="warning">'.$msg.'</div>'."\n";
} else {
$tmp = '<div class="warning">Warning: '.$msg.'</div>'."\n";
}
if ($this->buffering) {
$this->content['body'][] = $tmp;
} else {
print $tmp;
}
}
function addInfo($msg, $title = "") {
if ($title != "") {
$tmp = '<h4 class="info">Info: '.$title.'</h4>'."\n".'<div class="info">'.$msg.'</div>'."\n";
} else {
$tmp = '<div class="info">Info: '.$msg.'</div>'."\n";
}
if ($this->buffering) {
$this->content['body'][] = $tmp;
} else {
print $tmp;
}
}
function addText($msg, $title = "", $css_class="") {
if ($css_class != "") $css_class = ' class="'.$css_class.'"';
if ($title != "") $title = '<h4'.$css_class.'>'.$title.'</h4>';
$tmp = $title.'<div'.$css_class.'>'.$msg.'</div>';
if ($this->buffering) {
$this->content['body'][] = $tmp;
} else {
print $tmp;
}
}
function addDebug($msg, $title = '') {
if ($title != "") {
$tmp = '<h4 class="debug">Debug: '.$title.'</h4>'."\n".'<div class="debug">'.$msg.'</div>'."\n";
} else {
$tmp = '<div class="debug">Debug: '.$msg.'</div>'."\n";
}
if ($this->buffering) {
$this->content['body'][] = $tmp;
} else {
print $tmp;
}
}
function addSuccess($msg, $title = '') {
if ($title != "") {
$tmp = '<h4 class="success">Successful: '.$title.'</h4>'."\n".'<div class="success">'.$msg.'</div>'."\n";
} else {
$tmp = '<div class="success">Successful: '.$msg.'</div>'."\n";
}
if ($this->buffering) {
$this->content['body'][] = $tmp;
} else {
print $tmp;
}
}
function getFooterLayout() {
if ($this->buffering) return '';
$res = '';
if(($this->content['content_footer'] != "") && count($this->content['content_footer']) > 0) {
foreach ($this->content['content_footer'] as $id => $line) {
$res .= '<div class="content_footer">'.$line.'</div>'. "\n";
}
}
$res .= "</body>";
$res .= "</html>";
return $res;
}
function getHeaderLayout() {
if ($this->buffering) return '';
$res = '<html><head>'."\n";
$res .= '<meta http-equiv="Content-Type" content="text/html; charset='.$this->content['charset'].'">'."\n";
$res .= '<title>'.$this->static_title .' ' . $this->content['title'].'</title>'."\n";
// header
if(($this->content['header'] != "") && count($this->content['header']) > 0) {
foreach ($this->content['header'] as $id => $head) {
$res .= $head . "\n";
}
}
// css
$res .= '<style type="text/css">'."\n".'<!--'."\n";
if(($this->content['css'] != "") && count($this->content['css']) > 0) {
foreach ($this->content['css'] as $id => $line) {
$res .= $line . "\n";
}
}
$res .= '-->'."\n".'</style>'."\n";
//end of head
$res .= '</head><body>'."\n";
$res .= '<h1>'.$this->content['title'].'</h1>';
if(($this->content['content_header'] != "") && count($this->content['content_header'])>0) {
foreach ($this->content['content_header'] as $id => $line) {
$res .= $line . "\n";
}
}
return $res;
}
function getContent() {
if (! $this->buffering) {
$res = '<html><head>'."\n";
$res .= '<meta http-equiv="Content-Type" content="text/html; charset='.$this->content[charset].'">'."\n";
$res .= '<title>'.$this->static_title .' ' . $this->content['title'].'</title>'."\n";
// header
if(($this->content['header'] != "") && count($this->content['header']) > 0) {
foreach ($this->content['header'] as $id => $head) {
$res .= $head . "\n";
}
}
// css
$res .= '<style type="text/css">'."\n".'<!--'."\n";
if(($this->content['css'] != "") && count($this->content['css']) > 0) {
foreach ($this->content['css'] as $id => $line) {
$res .= $line . "\n";
}
}
$res .= '-->'."\n".'</style>'."\n";
//end of head
$res .= '</head><body>'."\n";
$res .= '<h1>'.$this->content['title'].'</h1>';
if(($this->content['content_header'] != "") && count($this->content['content_header'])>0) {
foreach ($this->content['content_header'] as $id => $line) {
$res .= $line . "\n";
}
}
if(($this->content['body'] != "") && count($this->content['body']) > 0) {
foreach ($this->content['body'] as $id => $line) {
$res .= $line . "\n";
}
}
if(($this->content['content_footer'] != "") && count($this->content['content_footer']) > 0) {
foreach ($this->content['content_footer'] as $id => $line) {
$res .= '<div class="content_footer">'.$line.'</div>'. "\n";
}
}
$res .= "</body>";
$res .= "</html>";
} else {
$res = '';
}
return $res;
}
}
?>