2009-03-31 14:20:10 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2009-11-03 20:38:38 +00:00
|
|
|
* Smarty method SetDebugTemplate
|
2009-03-31 14:20:10 +00:00
|
|
|
*
|
|
|
|
* Sets debug template filepath
|
|
|
|
*
|
|
|
|
* @package Smarty
|
|
|
|
* @subpackage SmartyMethod
|
|
|
|
* @author Uwe Tews
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets debug template filepath
|
|
|
|
*/
|
|
|
|
|
2009-08-08 17:28:23 +00:00
|
|
|
/**
|
|
|
|
* Sets debug template filepath
|
|
|
|
*
|
|
|
|
* @param string $ array debug template filepath
|
|
|
|
*/
|
2009-11-03 20:38:38 +00:00
|
|
|
function Smarty_Method_SetDebugTemplate($smarty, $debug_tpl)
|
2009-08-08 17:28:23 +00:00
|
|
|
{
|
|
|
|
$smarty->debug_tpl = $debug_tpl;
|
|
|
|
return;
|
2009-03-31 14:20:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|