display page header("Location: entry.php?dn=".$result[0]['dn']); exit; }elseif(count($result)){ $keys = array_keys($result); uksort($keys,"_namesort"); foreach($keys as $key){ tpl_entry($result[$key]); $list .= $smarty->fetch($entrytpl); } } //prepare templates tpl_std(); tpl_markers(); //FIXME not needed anymore!? tpl_categories(); tpl_timezone(); tpl_country(); if (empty($_REQUEST['filter'])) $_REQUEST['filter']=''; if (empty($_REQUEST['marker'])) $_REQUEST['marker']=''; if (empty($_REQUEST['search'])) $_REQUEST['search']=''; $smarty->assign('list',$list); $smarty->assign('filter',$_REQUEST['filter']); $smarty->assign('marker',$_REQUEST['marker']); $smarty->assign('search',$_REQUEST['search']); //display templates if(!empty($_REQUEST['export']) && $_REQUEST['export'] == 'csv'){ if ($conf['userlogreq'] == 1 && $user == '') { header("HTTP/1.1 401 ACCESS DENIED"); exit(); } else { header("Content-Type: text/csv"); header('Content-Disposition: Attachement; filename="contagged_export.csv"'); $smarty->display('export_list_csv.tpl'); } }else{ //save location in session $_SESSION['ldapab']['lastlocation']=$_SERVER["REQUEST_URI"]; header('Content-Type: text/html; charset=utf-8'); $smarty->display('list.tpl'); } //------- functions -----------// /** * callback function to sort entries by name * uses global $result */ function _namesort($a,$b){ global $result; if (empty($result[$a]['givenName'])) { $result[$a]['givenName']=''; } if (empty($result[$b]['givenName'])) { $result[$b]['givenName']=''; } $x = $result[$a]['sn'][0].$result[$a]['givenName'][0]; $y = $result[$b]['sn'][0].$result[$b]['givenName'][0]; return(strcasecmp($x,$y)); } /** * Creates an LDAP filter from given request variables search or filter */ function _makeldapfilter(){ //handle given filter if (empty($_REQUEST['filter'])) { $_REQUEST['filter']=''; } if (empty($_REQUEST['search'])) { $_REQUEST['search']=''; } if (empty($_REQUEST['org'])) { $_REQUEST['org']=''; } if (empty($_REQUEST['marker'])) { $_REQUEST['marker']=''; } if (empty($_REQUEST['categories'])) { $_REQUEST['categories']=''; } $filter = ldap_filterescape($_REQUEST['filter']); $search = ldap_filterescape($_REQUEST['search']); $org = ldap_filterescape($_REQUEST['org']); $marker = ldap_filterescape($_REQUEST['marker']); $categories = ldap_filterescape($_REQUEST['categories']); $_SESSION['ldapab']['filter'] = $_REQUEST['filter']; if(empty($filter)) $filter='a'; if(!empty($marker)){ $ldapfilter = '(&(objectClass=contactPerson)'; $marker = explode(',',$marker); foreach($marker as $m){ $m = trim($m); $ldapfilter .= "(marker=$m)"; } $ldapfilter .= ')'; }elseif(!empty($categories)){ $ldapfilter = "(&(objectClass=OXUserObject)(OXUserCategories=$categories))"; }elseif(!empty($search)){ $search = trim($search); $words=preg_split('/\s+/',$search); $filter=''; foreach($words as $word){ $filter .= "(|(|(sn=*$word*)(givenName=*$word*))(o=*$word*))"; } $ldapfilter = "(&(objectClass=inetOrgPerson)$filter)"; }elseif(!empty($org)){ $ldapfilter = "(&(objectClass=inetOrgPerson)(o=$org))"; }elseif($filter=='other'){ $other=''; for ($i=ord('a');$i<=ord('z');$i++){ $other .= '(!(sn='.chr($i).'*))'; } $ldapfilter = "(&(objectClass=inetOrgPerson)$other)"; }elseif($filter=='*'){ $ldapfilter = "(objectClass=inetOrgPerson)"; }else{ $ldapfilter = "(&(objectClass=inetOrgPerson)(sn=$filter*))"; } return $ldapfilter; } ?>