forked from leftypol/leftypol
"debug" thing
This commit is contained in:
parent
bdb05b16d8
commit
5c4ead4f66
2 changed files with 14 additions and 4 deletions
|
@ -168,13 +168,17 @@
|
|||
}
|
||||
|
||||
function Element($templateFile, array $options) {
|
||||
global $config;
|
||||
global $config, $debug;
|
||||
|
||||
// Small little hack to add the PM system
|
||||
if(function_exists('create_pm_header') && (@$options['mod'] || @$options['__mod'])) {
|
||||
if(function_exists('create_pm_header') && (isset($options['mod']) || isset($options['__mod']))) {
|
||||
$options['pm'] = create_pm_header();
|
||||
}
|
||||
|
||||
if(isset($options['body']) && $config['debug']) {
|
||||
$options['body'] .= '<h3>Debug</h3><pre style="white-space: pre-wrap;font-size: 10px;">' . print_r($debug, true) . '</pre><hr/>';
|
||||
}
|
||||
|
||||
// Read the template file
|
||||
if($template = @file_get_contents("{$config['dir']['template']}/${templateFile}")) {
|
||||
return templateParse($template, $options, null, $templateFile);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue