class.smarttemplatedebugger.php
12.3 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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
<?php
/**
* SmartTemplateDebugger Class
* Used by SmartTemplate Class
*
* @desc Used by SmartTemplate Class
* @author Philipp v. Criegern philipp@criegern.com
* @author Manuel 'EndelWar' Dalla Lana endelwar@aregar.it
* @version 1.2.1 03.07.2006
*
* CVS ID: $Id: class.smarttemplatedebugger.php 2504 2011-12-28 07:35:29Z liu21st $
*/
class SmartTemplateDebugger
{
/**
* The template Filename
*
* @access private
*/
var $filename;
/**
* The template itself
*
* @access private
*/
var $template;
/**
* SmartTemplateParser Constructor
*
* @param string $template_filename HTML Template Filename
*/
function SmartTemplateDebugger ( $template_filename )
{
$this->filename = $template_filename;
// Load Template
if ($hd = @fopen($template_filename, "r"))
{
$this->template = fread($hd, filesize($template_filename));
fclose($hd);
}
else
{
$this->template = "SmartTemplate Debugger Error: File not found: '$template_filename'";
}
$this->tab[0] = '';
for ($i=1; $i < 10; $i++) {
$this->tab[$i] = str_repeat(' ', $i);
}
}
/**
* Main Template Parser
*
* @param string $compiled_template_filename Compiled Template Filename
* @desc Creates Compiled PHP Template
*/
function start ( $vars )
{
$page = $this->template;
$page = preg_replace("/(<!-- BEGIN [ a-zA-Z0-9_.]* -->)/", "\n$1\n", $page);
$page = preg_replace("/(<!-- IF .+? -->)/", "\n$1\n", $page);
$page = preg_replace("/(<!-- END.*? -->)/", "\n$1\n", $page);
$page = preg_replace("/(<!-- ELSEIF .+? -->)/", "\n$1\n", $page);
$page = preg_replace("/(<!-- ELSE [ a-zA-Z0-9_.]*-->)/", "\n$1\n", $page);
$page = $this->highlight_html($page);
$rows = explode("\n", $page);
$page_arr = array();
$level = 0;
$blocklvl = 0;
$rowcnt = 0;
$spancnt = 0;
$offset = 22;
$lvl_block = array();
$lvl_row = array();
$lvl_typ = array();
foreach ($rows as $row)
{
if ($row = trim($row))
{
$closespan = false;
if (substr($row, $offset, 12) == '<!-- END ')
{
if ($level < 1)
{
$level++;
$error[$rowcnt] = "END Without BEGIN";
}
elseif ($lvl_typ[$level] != 'BEGIN')
{
$error[$lvl_row[$level]] = "IF without ENDIF";
$error[$rowcnt] = "END Without BEGIN";
}
$blocklvl--;
$level--;
$closespan = true;
}
if (substr($row, $offset, 14) == '<!-- ENDIF ')
{
if ($level < 1)
{
$level++;
$error[$rowcnt] = "ENDIF Without IF";
}
elseif ($lvl_typ[$level] != 'IF')
{
$error[$lvl_row[$level]] = "BEGIN without END";
$error[$rowcnt] = "ENDIF Without IF";
}
$closespan = true;
$level--;
}
if ($closespan)
{
$page_arr[$rowcnt-1] .= '</span>';
}
$this_row = $this->tab[$level] . $row;
if (substr($row, $offset, 12) == '<!-- ELSE')
{
if ($level < 1)
{
$error[$rowcnt] = "ELSE Without IF";
}
elseif ($lvl_typ[$level] != 'IF')
{
$error[$rowcnt] = "ELSE Without IF";
}
else
{
$this_row = $this->tab[$level-1] . $row;
}
}
if (substr($row, $offset, 14) == '<!-- BEGIN ')
{
if ($blocklvl == 0)
{
if ($lp = strpos($row, '-->'))
{
if ($blockname = trim(substr($row, $offset + 14, $lp -$offset -14)))
{
if ($nr = count($vars[$blockname]))
{
$this_row .= $this->toggleview("$nr Entries");
}
else
{
$this_row .= $this->toggleview("Emtpy");
}
}
}
}
else
{
$this_row .= $this->toggleview('[');
}
$blocklvl++;
$level++;
$lvl_row[$level] = $rowcnt;
$lvl_typ[$level] = 'BEGIN';
}
elseif (substr($row, $offset, 11) == '<!-- IF ')
{
$level++;
$lvl_row[$level] = $rowcnt;
$lvl_typ[$level] = 'IF';
$this_row .= $this->toggleview();
}
$page_arr[] = $this_row;
$lvl_block[$rowcnt] = $blocklvl;
$rowcnt++;
}
}
if ($level > 0)
{
$error[$lvl_row[$level]] = "Block not closed";
}
$page = join("\n", $page_arr);
$rows = explode("\n", $page);
$cnt = count($rows);
for ($i = 0; $i < $cnt; $i++)
{
// Add Errortext
if (isset($error))
{
if ($err = $error[$i])
{
$rows[$i] = '<b>' . $rows[$i] . ' ERROR: ' . $err . '!</b>';
}
}
// Replace Scalars
if (preg_match_all('/{([a-zA-Z0-9_. &;]+)}/', $rows[$i], $var))
{
foreach ($var[1] as $tag)
{
$fulltag = $tag;
if ($delim = strpos($tag, ' > '))
{
$tag = substr($tag, 0, $delim);
}
if (substr($tag, 0, 4) == 'top.')
{
$title = $this->tip($vars[substr($tag, 4)]);
}
elseif ($lvl_block[$i] == 0)
{
$title = $this->tip($vars[$tag]);
}
else
{
$title = '[BLOCK?]';
}
$code = '<b title="' . $title . '">{' . $fulltag . '}</b>';
$rows[$i] = str_replace('{'.$fulltag.'}', $code, $rows[$i]);
}
}
// Replace Extensions
if (preg_match_all('/{([a-zA-Z0-9_]+):([^}]*)}/', $rows[$i], $var))
{
foreach ($var[2] as $tmpcnt => $tag)
{
$fulltag = $tag;
if ($delim = strpos($tag, ' > '))
{
$tag = substr($tag, 0, $delim);
}
if (strpos($tag, ','))
{
list($tag, $addparam) = explode(',', $tag, 2);
}
$extension = $var[1][$tmpcnt];
if (substr($tag, 0, 4) == 'top.')
{
$title = $this->tip($vars[substr($tag, 4)]);
}
elseif ($lvl_block[$i] == 0)
{
$title = $this->tip($vars[$tag]);
}
else
{
$title = '[BLOCK?]';
}
$code = '<b title="' . $title . '">{' . $extension . ':' . $fulltag . '}</b>';
$rows[$i] = str_replace('{'.$extension . ':' . $fulltag .'}', $code, $rows[$i]);
}
}
// 'IF nnn' Blocks
if (preg_match_all('/<!-- IF ([a-zA-Z0-9_.]+) -->/', $rows[$i], $var))
{
foreach ($var[1] as $tag)
{
if (substr($tag, 0, 4) == 'top.')
{
$title = $this->tip($vars[substr($tag, 4)]);
}
elseif ($lvl_block[$i] == 0)
{
$title = $this->tip($vars[$tag]);
}
else
{
$title = '[BLOCK?]';
}
$code = '<span title="' . $title . '"><!-- IF ' . $tag . ' --></span>';
$rows[$i] = str_replace("<!-- IF $tag -->", $code, $rows[$i]);
if ($title == '[NULL]')
{
$rows[$i] = str_replace('Hide', 'Show', $rows[$i]);
$rows[$i] = str_replace('block', 'none', $rows[$i]);
}
}
}
}
$page = join("<br>", $rows);
// Print Header
echo '<html><head><script type="text/javascript">
function toggleVisibility(el, src) {
var v = el.style.display == "block";
var str = src.innerHTML;
el.style.display = v ? "none" : "block";
src.innerHTML = v ? str.replace(/Hide/, "Show") : str.replace(/Show/, "Hide");}
</script></head><body>';
// Print Index
echo '<font face="Arial" Size="3"><b>';
echo 'SmartTemplate Debugger<br>';
echo '<font size="2"><li>PHP-Script: ' . $_SERVER['PATH_TRANSLATED'] . '</li><li>Template: ' . $this->filename . '</li></font><hr>';
echo '<li><a href="#template_code">Template</a></li>';
echo '<li><a href="#compiled_code">Compiled Template</a></li>';
echo '<li><a href="#data_code">Data</a></li>';
echo '</b></font><hr>';
// Print Template
echo '<a name="template_code"><br><font face="Arial" Size="3"><b>Template:</b> [<a href="javascript:void(\'\');" onclick="toggleVisibility(document.getElementById(\'Template\'), this); return false">Hide Ouptut</a>]</font><br>';
echo '<table border="0" cellpadding="4" cellspacing="1" width="100%" bgcolor="#C6D3EF"><tr><td bgcolor="#F0F0F0"><pre id="Template" style="display:block">';
echo $page;
echo '</pre></td></tr></table>';
// Print Compiled Template
if (@include_once ("class.smarttemplateparser.php"))
{
$parser = new SmartTemplateParser($this->filename);
$compiled = $parser->compile();
echo '<a name="compiled_code"><br><br><font face="Arial" Size="3"><b>Compiled Template:</b> [<a href="javascript:void(\'\');" onclick="toggleVisibility(document.getElementById(\'Compiled\'), this); return false">Hide Ouptut</a>]</font><br>';
echo '<table border="0" cellpadding="4" cellspacing="1" width="100%" bgcolor="#C6D3EF"><tr><td bgcolor="#F0F0F0"><pre id="Compiled" style="display:block">';
highlight_string($compiled);
echo '</pre></td></tr></table>';
}
else
{
exit( "SmartTemplate Error: Cannot find class.smarttemplateparser.php; check SmartTemplate installation");
}
// Print Data
echo '<a name="data_code"><br><br><font face="Arial" Size="3"><b>Data:</b> [<a href="javascript:void(\'\');" onclick="toggleVisibility(document.getElementById(\'Data\'), this); return false">Hide Ouptut</a>]</font><br>';
echo '<table border="0" cellpadding="4" cellspacing="1" width="100%" bgcolor="#C6D3EF"><tr><td bgcolor="#F0F0F0"><pre id="Data" style="display:block">';
echo $this->vardump($vars);
echo '</pre></td></tr></table></body></html>';
}
/**
* Insert Hide/Show Layer Switch
*
* @param string $suffix Additional Text
* @desc Insert Hide/Show Layer Switch
*/
function toggleview ( $suffix = '')
{
global $spancnt;
$spancnt++;
if ($suffix)
{
$suffix .= ':';
}
$ret = '[' . $suffix . '<a href="javascript:void(\'\');" onclick="toggleVisibility(document.getElementById(\'Block' . $spancnt . '\'), this); return false">Hide Block</a>]<span id="Block' . $spancnt . '" style="display:block">';
return $ret;
}
/**
* Create Title Text
*
* @param string $value Content
* @desc Create Title Text
*/
function tip ( $value )
{
if (empty($value))
{
return "[NULL]";
}
else
{
$ret = htmlentities(substr($value,0,200));
return $ret;
}
}
/**
* Recursive Variable Display Output
*
* @param mixed $var Content
* @param int $depth Incremented Indent Counter for Recursive Calls
* @return string Variable Content
* @access private
* @desc Recursive Variable Display Output
*/
function vardump($var, $depth = 0)
{
if (is_array($var))
{
$result = "Array (" . count($var) . ")<BR>";
foreach(array_keys($var) as $key)
{
$result .= $this->tab[$depth] . "<B>$key</B>: " . $this->vardump($var[$key], $depth+1);
}
return $result;
}
else
{
$ret = htmlentities($var) . "<BR>";
return $ret;
}
}
/**
* Splits Template-Style Variable Names into an Array-Name/Key-Name Components
*
* @param string $tag Variale Name used in Template
* @return array Array Name, Key Name
* @access private
* @desc Splits Template-Style Variable Names into an Array-Name/Key-Name Components
*/
function var_name($tag)
{
$parent_level = 0;
while (substr($tag, 0, 7) == 'parent.')
{
$tag = substr($tag, 7);
$parent_level++;
}
if (substr($tag, 0, 4) == 'top.')
{
$ret = array('_stack[0]', substr($tag,4));
return $ret;
}
elseif ($parent_level)
{
$ret = array('_stack[$_stack_cnt-'.$parent_level.']', $tag);
return $ret;
}
else
{
$ret = array('_obj', $tag);
return $ret;
}
}
/**
* Highlight HTML Source
*
* @param string $code HTML Source
* @return string Hightlighte HTML Source
* @access private
* @desc Highlight HTML Source
*/
function highlight_html ( $code )
{
$code = htmlentities($code);
$code = preg_replace('/([a-zA-Z_]+)=/', '<font color="#FF0000">$1=</font>', $code);
$code = preg_replace('/(<[\/a-zA-Z0-9&;]+)/', '<font color="#0000FF">$1</font>', $code);
$code = str_replace('<!--', '<font color="#008080"><!--', $code);
$code = str_replace('-->', '--></font>', $code);
$code = preg_replace('/[\r\n]+/', "\n", $code);
return $code;
}
}
?>