init
[garradin.git] / include / libs / template_lite / plugins / postfilter.showtemplatevars.php
1 <?php
2 /*
3 * Template Lite plugin converted from Smarty
4 * -------------------------------------------------------------
5 * File: postfilter.showtemplatevars.php
6 * Type: postfilter
7 * Name: showtemplatevars
8 * Purpose: Output code that lists all current template vars.
9 * -------------------------------------------------------------
10 */
11 function template_postfilter_showtemplatevars($compiled, &$template_object)
12 {
13 $compiled = "<pre>\n<?php print_r(\$this->_vars); ?>\n</pre>" . $compiled;
14 return $compiled;
15 }
16 ?>