Lines Matching +full:attributes -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang)

85         $attributes = array(
91 $result = $this->adldap->user()->modify($username, $attributes, $isGUID);
125 $attributes['exchange_proxyaddress'] = $proxyValue . 'c=' . $country . ';a=' . $admd . ';p=' . $pdmd . ';o=' . $org . ';s=' . $surname . ';g=' . $givenName . ';';
128 $add = $this->adldap->adldap_schema($attributes);
189 $attributes['exchange_proxyaddress'] = $proxyValue . $emailAddress;
192 $add = $this->adldap->adldap_schema($attributes);
315 $attributes = array("email"=>$emailAddress,"contact_email"=>"SMTP:" . $emailAddress,"exchange_proxyaddress"=>"SMTP:" . $emailAddress,"exchange_mailnickname" => $mailNickname);
318 $mod = $this->adldap->adldap_schema($attributes);
333 * @param array $attributes An array of the AD attributes you wish to return
336 public function servers($attributes = array('cn','distinguishedname','serialnumber'))
341 $sr = @ldap_search($this->adldap->getLdapConnection(), $configurationNamingContext[0]['configurationnamingcontext'][0],'(&(objectCategory=msExchExchangeServer))', $attributes);
350 * @param array $attributes An array of the AD attributes you wish to return
354 public function storageGroups($exchangeServer, $attributes = array('cn','distinguishedname'), $recursive = NULL)
361 $sr = @ldap_search($this->adldap->getLdapConnection(), $exchangeServer, $filter, $attributes);
377 * @param array $attributes An array of the AD attributes you wish to return
380 public function storageDatabases($storageGroup, $attributes = array('cn','distinguishedname','displayname')) {
385 $sr = @ldap_search($this->adldap->getLdapConnection(), $storageGroup, $filter, $attributes);