1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
-
-
-
- class Smarty_Internal_Compile_Debug extends Smarty_Internal_CompileBase
- {
-
-
- public function compile($args, $compiler)
- {
-
- $_attr = $this->getAttributes($compiler, $args);
-
-
- $compiler->tag_nocache = true;
-
-
- $_output = "<?php \$_smarty_debug = new Smarty_Internal_Debug;\n \$_smarty_debug->display_debug(\$_smarty_tpl);\n";
- $_output .= "unset(\$_smarty_debug);\n?>";
- return $_output;
- }
- }
|