mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-18 06:55:20 +02:00
32 lines
495 B
PHP
32 lines
495 B
PHP
![]() |
<?php
|
||
|
|
||
|
/**
|
||
|
* Smarty method getDebugTemplate
|
||
|
*
|
||
|
* Returns debug template filepath
|
||
|
*
|
||
|
* @package Smarty
|
||
|
* @subpackage SmartyMethod
|
||
|
* @author Uwe Tews
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Smarty class getDebugTemplate
|
||
|
*
|
||
|
* Returns debug template filepath
|
||
|
*/
|
||
|
|
||
|
class Smarty_Method_GetDebugTemplate extends Smarty_Internal_Base {
|
||
|
/**
|
||
|
* Returns directory of cache files
|
||
|
*
|
||
|
* @return string debug template filepath
|
||
|
*/
|
||
|
public function execute()
|
||
|
{
|
||
|
return $this->smarty->debug_tpl;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
?>
|