game/onyx2/modules/templates/smarty/sysplugins/smarty_method_getdebugtemplate.php

28 lines
356 B
PHP
Raw Normal View History

2020-11-15 15:12:32 +00:00
<?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 GetDebugTemplate($smarty)
{
return $smarty->debug_tpl;
}
?>