Debugging Console
There is a debugging console included with Tplix. The console informs you of all the included templates, assigned variables and config file variables for the current invocation of the template. A template file named debug.tpl is included with the distribution of Tplix which controls the formatting of the console.
Set $debugging to TRUE in Tplix, and if needed set $debug_tpl to the template resource path to debug.tpl. When you load the page, a Javascript console window will pop up and give you the names of all the included templates and assigned variables for the current page.
To see the available variables for a particular template, see the {debug} template function. To disable the debugging console, set $debugging to FALSE. You can also temporarily turn on the debugging console by putting TPLIX_DEBUG in the URL if you enable this option with $debugging_ctrl.
<?php
// shows debug console only on localhost ie
// http://localhost/script.php?foo=bar&TPLIX_DEBUG
$tplix->debugging = false; // the default
$tplix->debugging_ctrl = ($_SERVER['SERVER_NAME'] == 'localhost') ? 'URL' : 'NONE';
$debug_tpl
This is the name of the template file used for the debugging console. By default, it is named debug.tpl and is located in src/debug.tpl.