Files
smarty/libs/sysplugins/smarty_method_setconfigdir.php
Uwe.Tews cf379474fd - change of filenames in sysplugins folder for internal spl_autoload function
- lexer/parser changed for increased compilation speed
2009-10-31 00:44:58 +00:00

27 lines
369 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 SetConfigDir($smarty, $config_dir)
{
$this->smarty->config_dir = $config_dir;
return;
}
?>