2009-03-30 17:05:37 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2009-11-03 20:38:38 +00:00
|
|
|
* Smarty method SetConfigDir
|
2009-03-30 17:05:37 +00:00
|
|
|
*
|
|
|
|
* Sets directory of config files
|
|
|
|
*
|
|
|
|
* @package Smarty
|
|
|
|
* @subpackage SmartyMethod
|
|
|
|
* @author Uwe Tews
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets directory of config files
|
2009-08-08 17:28:23 +00:00
|
|
|
*
|
|
|
|
* @param object $smarty
|
|
|
|
* @param string $ config folder
|
|
|
|
* @return
|
2009-03-30 17:05:37 +00:00
|
|
|
*/
|
2009-11-03 20:38:38 +00:00
|
|
|
function Smarty_Method_SetConfigDir($smarty, $config_dir)
|
2009-08-08 17:28:23 +00:00
|
|
|
{
|
|
|
|
$this->smarty->config_dir = $config_dir;
|
|
|
|
return;
|
2009-03-30 17:05:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|