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

29 lines
383 B
PHP
Raw Normal View History

2020-11-15 15:12:32 +00:00
<?php
/**
* Smarty method setDebugTemplate
*
* Sets debug template filepath
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Sets debug template filepath
*/
/**
* Sets debug template filepath
*
* @param string $ array debug template filepath
*/
function SetDebugTemplate($smarty, $debug_tpl)
{
$smarty->debug_tpl = $debug_tpl;
return;
}
?>