- bugfix smarty.class and internal.security_handler

- added compile_check configuration 
- added all setter/getter methodes
This commit is contained in:
Uwe.Tews
2009-03-31 14:20:10 +00:00
parent c9bbd7e834
commit 25e4ef7fb9
13 changed files with 231 additions and 13 deletions

View File

@@ -0,0 +1,32 @@
<?php
/**
* Smarty method setDebugTemplate
*
* Sets debug template filepath
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Smarty class setDebugTemplate
*
* Sets debug template filepath
*/
class Smarty_Method_SetDebugTemplate extends Smarty_Internal_Base {
/**
* Sets debug template filepath
*
* @param string $ array debug template filepath
*/
public function execute($debug_tpl)
{
$this->smarty->debug_tpl = $debug_tpl;
return;
}
}
?>