* Name: math
* Purpose: handle math computations in template
* @link http://smarty.php.net/manual/en/language.function.math.php {math}
* (Smarty online manual)
* @author Monte Ohrt
* @param array
* @param Smarty
* @return string
*/
function smarty_function_url4($params, &$smarty)
{
$str = (isset($_GET['filter']) && strlen($_GET['filter'])>0) ? iconv('UTF-8','CP1251',$_GET['filter']) : '';
if(strlen($str)>0)$l = explode(';',$str);
else $l = array();
$f=0;
$params['n'] = str_replace(",", ".", $params['n']);
foreach($l as $key=>$q){
if($params['prefix'].$params['n'].'_'.$params['s']==$q){$f++;unset($l[$key]);}
}
if($f==0)$l[] = $params['prefix'].$params['n'].'_'.$params['s'];
sort($l);
$param = (count($l)) ? ("filter=".implode(",",$l)) : null;
$h = array();
if(trim($_GET['search_str'])!='') $h[] = "search_str=".trim($_GET['search_str']);
if(trim($_GET['brend'])!='') $h[] = "brend=".trim($_REQUEST['brend']);
if(trim($_GET['what'])!='') $h[] = "what=".trim($_GET['what']);
if(trim($_GET['sex'])!='') $h[] = "sex=".trim($_REQUEST['sex']);
if(count($h)>0) $g = ";";
else $g = "";
return $_REQUEST['rubID']."-catalogs/".((!empty($_GET['new']))?'new/':((!empty($_GET['top']))?'top/':((!empty($_GET['akciiID']))?'akcii/':'')))."filter;" . implode(";",$h) . $g . $param."/";
}
/* vim: set expandtab: */
?>