* Name: ci_config
* Purpose: bridge to code igniter config properties * @author Neighbor Webmastert * @param array Format: *
 * array(
 *   'name' => required name of the config properties
 *   'assign' => optional smarty variable name to assign to - defaults to name
 * )
 * 
* @param Smarty */ function smarty_function_ci_config($params, &$smarty) { if ($smarty->debugging) { $_params = array(); require_once(SMARTY_CORE_DIR . 'core.get_microtime.php'); $_debug_start_time = smarty_core_get_microtime($_params, $smarty); } $_name = isset($params['name']) ? $params['name'] : ''; $_assign = isset($params['assign']) ? $params['assign'] : $_name; if ($_name != '') { // get a Code Igniter instance $CI = &get_instance(); $value = $CI->config->item($_name); $smarty->assign( $_assign, $value ); } if ($smarty->debugging) { $_params = array(); require_once(SMARTY_CORE_DIR . 'core.get_microtime.php'); $smarty->_smarty_debug_info[] = array('type' => 'config', 'filename' => $_file.' ['.$_section.'] '.$_scope, 'depth' => $smarty->_inclusion_depth, 'exec_time' => smarty_core_get_microtime($_params, $smarty) - $_debug_start_time); } } /* vim: set expandtab: */ ?>