Ignore:
Timestamp:
09/05/11 15:33:41 (13 years ago)
Author:
fernando-alberto
Message:

Ticket #1269 - Mergiando revisoes do branch22 de rev4972 ate rev5034

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sandbox/expressoMail1_2/MailArchiver/2.2/reports/inc/class.functions.inc.php

    r4644 r5035  
    11111111                        return $total_count; 
    11121112                } 
    1113  
     1113                 
     1114                function get_num_users_sector($query, $contexts) { 
     1115                        $dn                     = $GLOBALS['phpgw_info']['server']['ldap_root_dn']; 
     1116                        $passwd         = $GLOBALS['phpgw_info']['server']['ldap_root_pw']; 
     1117                        $ldap_conn      = ldap_connect($GLOBALS['phpgw_info']['server']['ldap_host']); 
     1118                        ldap_set_option($ldap_conn, LDAP_OPT_PROTOCOL_VERSION, 3); 
     1119                        ldap_set_option($ldap_conn, LDAP_OPT_REFERRALS, 0); 
     1120                        ldap_bind($ldap_conn,$dn,$passwd); 
     1121                         
     1122                        $filter="(phpgwAccountType=u)"; 
     1123                        $justthese = array("uidnumber"); 
     1124                        $count = 0; 
     1125                        foreach ($contexts as $index=>$context) { 
     1126                                $search = ldap_search($ldap_conn, $query, $filter, $justthese); 
     1127                                $count+=ldap_count_entries($ldap_conn, $search); 
     1128                        } 
     1129                        return $count; 
     1130                } 
     1131                 
    11141132                function get_list_user_sector_logon($query, $contexts,$sizelimit,$numacesso) 
    11151133                { 
Note: See TracChangeset for help on using the changeset viewer.