1234567891011121314151617181920212223242526272829303132333435 |
- <?php
-
-
- class Smarty_Internal_Method_GetDebugTemplate
- {
-
-
- public $objMap = 3;
-
-
-
- public function getDebugTemplate(Smarty_Internal_TemplateBase $obj)
- {
- $smarty = isset($obj->smarty) ? $obj->smarty : $obj;
- return $smarty->debug_tpl;
- }
- }
|