template.generate_debug_output.php
1.16 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
<?php
/**
* Template Lite template_generate_debug_output template internal module
*
* Type: template
* Name: template_generate_debug_output
*/
function template_generate_debug_output(&$object)
{
$assigned_vars = $object->_vars;
ksort($assigned_vars);
if (@is_array($object->_config[0]))
{
$config_vars = $object->_config[0];
ksort($config_vars);
$object->assign("_debug_config_keys", array_keys($config_vars));
$object->assign("_debug_config_vals", array_values($config_vars));
}
$included_templates = $object->_templatelite_debug_info;
$object->assign("_debug_keys", array_keys($assigned_vars));
$object->assign("_debug_vals", array_values($assigned_vars));
$object->assign("_debug_tpls", $included_templates);
$object->assign("_templatelite_debug_output", "");
$object->_templatelite_debug_loop = true;
$object->_templatelite_debug_dir = $object->template_dir;
$object->template_dir = TEMPLATE_LITE_DIR . "internal/";
$debug_output = $object->fetch("debug.tpl");
$object->template_dir = $object->_templatelite_debug_dir;
$object->_templatelite_debug_loop = false;
return $debug_output;
}
?>