mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-16 22:15:21 +02:00
28 lines
371 B
PHP
28 lines
371 B
PHP
<?php
|
|
|
|
/**
|
|
* Smarty method GetDebugTemplate
|
|
*
|
|
* Returns debug template filepath
|
|
*
|
|
* @package Smarty
|
|
* @subpackage SmartyMethod
|
|
* @author Uwe Tews
|
|
*/
|
|
|
|
/**
|
|
* Returns debug template filepath
|
|
*/
|
|
|
|
/**
|
|
* Returns directory of cache files
|
|
*
|
|
* @return string debug template filepath
|
|
*/
|
|
function Smarty_Method_GetDebugTemplate($smarty)
|
|
{
|
|
return $smarty->debug_tpl;
|
|
}
|
|
|
|
?>
|