Home
last modified time | relevance | path

Searched refs:attributes (Results 26 – 29 of 29) sorted by last modified time

12

/dokuwiki/lib/plugins/authad/adLDAP/classes/
H A DadLDAPExchange.php85 $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 yo
336 servers($attributes = array('cn', 'distinguishedname', 'serialnumber')) global() argument
354 storageGroups($exchangeServer, $attributes = array('cn', 'distinguishedname'), $recursive = NULL) global() argument
380 storageDatabases($storageGroup, $attributes = array('cn', 'distinguishedname', 'displayname')) global() argument
[all...]
H A DadLDAPFolders.php148 * @param array $attributes Default attributes of the ou
151 public function create($attributes) argument
153 if (!is_array($attributes)){ return "Attributes must be an array"; }
154 if (!is_array($attributes["container"])) { return "Container attribute must be an array."; }
155 if (!array_key_exists("ou_name",$attributes)) { return "Missing compulsory field [ou_name]"; }
156 if (!array_key_exists("container",$attributes)) { return "Missing compulsory field [container]"; }
158 $attributes["container"] = array_reverse($attributes["container"]);
162 $add["OU"] = $attributes['ou_nam
[all...]
H A DadLDAPGroups.php158 * @param array $attributes Default attributes of the group
161 public function create($attributes) argument
163 if (!is_array($attributes)){ return "Attributes must be an array"; }
164 if (!array_key_exists("group_name", $attributes)){ return "Missing compulsory field [group_name]"; }
165 if (!array_key_exists("container", $attributes)){ return "Missing compulsory field [container]"; }
166 if (!array_key_exists("description", $attributes)){ return "Missing compulsory field [description]"; }
167 if (!is_array($attributes["container"])){ return "Container attribute must be an array."; }
168 $attributes["container"] = array_reverse($attributes["containe
[all...]
H A DadLDAPUsers.php74 * @param array $attributes The attributes to set to the user account
77 public function create($attributes) argument
80 if (!array_key_exists("username", $attributes)){ return "Missing compulsory field [username]"; }
81 if (!array_key_exists("firstname", $attributes)){ return "Missing compulsory field [firstname]"; }
82 if (!array_key_exists("surname", $attributes)){ return "Missing compulsory field [surname]"; }
83 if (!array_key_exists("email", $attributes)){ return "Missing compulsory field [email]"; }
84 if (!array_key_exists("container", $attributes)){ return "Missing compulsory field [container]"; }
85 if (!is_array($attributes["container"])){ return "Container attribute must be an array."; }
87 if (array_key_exists("password",$attributes)
394 modify($username, $attributes, $isGUID = false) global() argument
[all...]

12