Home
last modified time | relevance | path

Searched refs:fields (Results 1 – 11 of 11) sorted by relevance

/dokuwiki/lib/plugins/authad/adLDAP/classes/
H A DadLDAPComputers.php60 * @param array $fields Attributes to return
63 public function info($computerName, $fields = NULL) argument
69 if ($fields === NULL) {
70 $fields = array("memberof","cn","displayname","dnshostname","distinguishedname","objectcategory","operatingsystem","operatingsystemservicepack","operatingsystemversion");
72 $sr = ldap_search($this->adldap->getLdapConnection(), $this->adldap->getBaseDn(), $filter, $fields);
82 * @param array $fields Array of parameters to query
85 public function infoCollection($computerName, $fields = NULL) argument
90 $info = $this->info($computerName, $fields);
H A DadLDAPContacts.php67 // Check for compulsory fields
130 * @param array $fields Attributes to be returned
133 public function info($distinguishedName, $fields = NULL) argument
139 if ($fields === NULL) {
140 $fields = array("distinguishedname", "mail", "memberof", "department", "displayname", "telephonenumber", "primarygroupid", "objectsid");
142 $sr = ldap_search($this->adldap->getLdapConnection(), $this->adldap->getBaseDn(), $filter, $fields);
163 * @param array $fields Array of parameters to query
166 public function infoCollection($distinguishedName, $fields = NULL) argument
171 $info = $this->info($distinguishedName, $fields);
261 $fields
[all...]
H A DadLDAPGroups.php326 $fields = array("samaccountname", "distinguishedname", "objectClass");
327 $sr = ldap_search($this->adldap->getLdapConnection(), $this->adldap->getBaseDn(), $filter, $fields);
333 $fields = array("distinguishedname");
334 $sr = ldap_search($this->adldap->getLdapConnection(), $this->adldap->getBaseDn(), $filter, $fields);
374 $fields = array("samaccountname", "distinguishedname", "objectClass");
375 $sr = ldap_search($this->adldap->getLdapConnection(), $this->adldap->getBaseDn(), $filter, $fields);
381 $fields = array("samaccountname");
382 $sr = ldap_search($this->adldap->getLdapConnection(), $this->adldap->getBaseDn(), $filter, $fields);
413 * @param array $fields Fields to retrieve
416 public function info($groupName, $fields argument
443 infoCollection($groupName, $fields = NULL) global() argument
[all...]
H A DadLDAPUsers.php79 // Check for compulsory fields
214 * @param array $fields Array of parameters to query
218 public function info($username, $fields = NULL, $isGUID = false) argument
234 if ($fields === NULL) {
235 $fields = array("samaccountname","mail","memberof","department","displayname","telephonenumber","primarygroupid","objectsid");
237 if (!in_array("objectsid", $fields)) {
238 $fields[] = "objectsid";
240 $sr = ldap_search($this->adldap->getLdapConnection(), $this->adldap->getBaseDn(), $filter, $fields);
245 if (in_array("memberof", $fields)) {
269 * @param array $fields Arra
273 infoCollection($username, $fields = NULL, $isGUID = false) global() argument
[all...]
/dokuwiki/conf/
H A Dmediameta.php9 * lookups - array additional fields to look up the data (EXIF or IPTC fields)
11 * The fields are not ordered continuously to make inserting additional items
16 * Note: $fields is not a global variable and will not be available to any
22 * For a list of available EXIF/IPTC fields refer to
27 $fields = array( variable
/dokuwiki/inc/lang/en/
H A Dupdateprofile.txt3 You only need to complete those fields you wish to change. You may not change your user name.
/dokuwiki/lib/plugins/usermanager/lang/en/
H A Dimport.txt5 The CSV fields should be separated by commas (,) and strings delimited by quotation marks (%%""%%). Backslash (\) can be used for escaping.
/dokuwiki/lib/plugins/authad/
H A Dauth.php36 * // add a list of comma separated ldap contact fields.
88 // additional information fields
182 * at least these fields:
189 * addional fields:
196 * any fields specified in the 'additional' config option
213 $fields = ['mail', 'displayname', 'samaccountname', 'lastpwd', 'pwdlastset', 'useraccountcontrol'];
215 // add additional fields to read
216 $fields = array_merge($fields, $this->conf['additional']);
217 $fields
[all...]
/dokuwiki/inc/
H A Dmedia.php162 static $fields = null;
163 if ($fields === null) {
180 foreach ($fields as $key => $field) {
1232 static $fields = null;
1233 if (is_null($fields)) {
1242 foreach ($fields as $tag) {
H A DJpegMeta.php139 * @param array|string $fields field name or array with field names
142 function getField($fields) { argument
143 if(!is_array($fields)) $fields = array($fields);
145 foreach($fields as $field){
603 * Get the image's title, tries various fields
611 // try various fields
630 * Gather various date fields
768 * Get the image width, tries various fields
[all...]
H A Dtemplate.php1151 foreach ($fields as $tag) {