Files
smarty/libs/sysplugins/smarty_method_setconfigdir.php
Uwe.Tews 94b80e892b - renamed function names of autoloaded Smarty methods to Smarty_Method_....
- new security_class property (default is Smarty_Security)
2009-11-03 20:38:38 +00:00

27 lines
384 B
PHP

<?php
/**
* Smarty method SetConfigDir
*
* Sets directory of config files
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Sets directory of config files
*
* @param object $smarty
* @param string $ config folder
* @return
*/
function Smarty_Method_SetConfigDir($smarty, $config_dir)
{
$this->smarty->config_dir = $config_dir;
return;
}
?>