Home
last modified time | relevance | path

Searched +full:filter -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 25 of 83) sorted by path

1234

/dokuwiki/conf/
H A Dmysql.conf.php.example108 * that meet certain filter criteria. The filter expressions will be added
115 * will be replaced in the filter expressions:
/dokuwiki/inc/Extension/
H A DAuthPlugin.php315 * Return a count of the number of user which meet $filter criteria
321 * @param array $filter array of field/pattern pairs, empty array for no filter
324 public function getUserCount($filter = [])
338 * @param array $filter array of field/pattern pairs, null for no filter
341 public function retrieveUsers($start = 0, $limit = 0, $filter = null)
326 getUserCount($filter = array()) global() argument
343 retrieveUsers($start = 0, $limit = 0, $filter = null) global() argument
/dokuwiki/inc/Input/
H A DInput.php28 protected $filter;
42 * Apply the set filter to the given value
49 if (!$this->filter) return $data;
50 return call_user_func($this->filter, $data);
58 * @param Callable|string $filter
61 public function filter($filter = 'stripctl')
63 $this->filter = $filter;
65 $this->filter
29 protected $filter; global() variable in dokuwiki\\Input\\Input
62 filter($filter = 'stripctl') global() argument
[all...]
/dokuwiki/inc/Search/
H A DIndexer.php1149 * @param array|int $filter
1152 protected function indexLengths($filter)
1156 if (is_array($filter)) {
1159 foreach (array_keys($filter) as $key) {
1167 if ((int)$length >= (int)$filter)
1125 indexLengths($filter) global() argument
/dokuwiki/inc/Subscriptions/
H A DBulkSubscriptionSender.php82 // Filter out pages only changed in small and own edits
/dokuwiki/inc/
H A Dchangelog.php351 // filter namespace
H A Dcommon.php449 * Filter for page IDs
H A Ddefines.php49 * Changelog filter constants
H A Dhtml.php210 //filter id (without urlencoding)
H A Dhttputils.php35 $if_modified_since = $INPUT->server->filter('stripslashes')->str('HTTP_IF_MODIFIED_SINCE', false);
36 $if_none_match = $INPUT->server->filter('stripslashes')->str('HTTP_IF_NONE_MATCH', false);
H A Dindexer.php338 * @param array|int $filter
341 function idx_indexLengths($filter)
345 if (is_array($filter)) {
348 foreach (array_keys($filter) as $key) {
356 if ((int)$length >= (int)$filter)
330 idx_indexLengths($filter) global() argument
H A Dpageutils.php438 // filter files like foo.bar.meta when $id == 'foo'
H A Dparserutils.php315 // filter by $key
H A Dsearch.php218 //check pattern filter
285 //check pattern filter
/dokuwiki/lib/exe/
H A Dajax.php25 $call = $INPUT->filter([Clean::class, 'stripspecials'])->str('call');
/dokuwiki/lib/plugins/authad/adLDAP/classes/
H A DadLDAPComputers.php68 $filter = "(&(objectClass=computer)(cn=" . $computerName . "))";
72 $sr = ldap_search($this->adldap->getLdapConnection(), $this->adldap->getBaseDn(), $filter, $fields);
H A DadLDAPContacts.php138 $filter = "distinguishedName=" . $distinguishedName;
142 $sr = ldap_search($this->adldap->getLdapConnection(), $this->adldap->getBaseDn(), $filter, $fields);
260 $filter = "(&(objectClass=contact)(cn=" . $search . "))";
262 $sr = ldap_search($this->adldap->getLdapConnection(), $this->adldap->getBaseDn(), $filter, $fields);
H A DadLDAPExchange.php360 $filter = '(&(objectCategory=msExchStorageGroup))';
361 $sr = @ldap_search($this->adldap->getLdapConnection(), $exchangeServer, $filter, $attributes);
384 $filter = '(&(objectCategory=msExchPrivateMDB))';
385 $sr = @ldap_search($this->adldap->getLdapConnection(), $storageGroup, $filter, $attributes);
H A DadLDAPFolders.php86 $filter = '(&';
90 $filter .= '(objectClass=contact)';
93 $filter .= '(objectClass=computer)';
96 $filter .= '(objectClass=group)';
99 $filter .= '(objectClass=organizationalUnit)';
102 $filter .= '(objectClass=container)';
105 $filter .= '(objectClass=builtinDomain)';
108 $filter .= '(objectClass=user)';
113 $filter .= '(objectClass=*)';
120 $filter
[all...]
H A DadLDAPGroups.php325 $filter = "(&(objectCategory=group)(distinguishedName=" . $this->adldap->utilities()->ldapSlashes($groups[$i]) . "))";
327 $sr = ldap_search($this->adldap->getLdapConnection(), $this->adldap->getBaseDn(), $filter, $fields);
332 $filter = "(&(objectCategory=group)(distinguishedName=" . $this->adldap->utilities()->ldapSlashes($groups[$i]) . "))";
334 $sr = ldap_search($this->adldap->getLdapConnection(), $this->adldap->getBaseDn(), $filter, $fields);
373 $filter = "(&(objectCategory=person)(distinguishedName=" . $this->adldap->utilities()->ldapSlashes($users[$i]) . "))";
375 $sr = ldap_search($this->adldap->getLdapConnection(), $this->adldap->getBaseDn(), $filter, $fields);
380 $filter = "(&(objectCategory=group)(distinguishedName=" . $this->adldap->utilities()->ldapSlashes($users[$i]) . "))";
382 $sr = ldap_search($this->adldap->getLdapConnection(), $this->adldap->getBaseDn(), $filter, $fields);
425 $filter = "(&(objectCategory=group)(name=" . $this->adldap->utilities()->ldapSlashes($groupName) . "))";
429 $sr = ldap_search($this->adldap->getLdapConnection(), $this->adldap->getBaseDn(), $filter,
[all...]
H A DadLDAPUsers.php225 $filter = "objectguid=" . $username;
228 $filter = "userPrincipalName=" . $username;
231 $filter = "samaccountname=" . $username;
233 $filter = "(&(objectCategory=person)({$filter}))";
240 $sr = ldap_search($this->adldap->getLdapConnection(), $this->adldap->getBaseDn(), $filter, $fields);
557 $filter = "(&(objectClass=user)(samaccounttype=" . adLDAP::ADLDAP_NORMAL_ACCOUNT .")(objectCategory=person)(cn=" . $search . "))";
559 $sr = ldap_search($this->adldap->getLdapConnection(), $this->adldap->getBaseDn(), $filter, $fields);
589 $filter = "samaccountname=" . $username;
591 $sr = @ldap_search($this->adldap->getLdapConnection(), $this->adldap->getBaseDn(), $filter,
[all...]
/dokuwiki/lib/plugins/authad/
H A Dauth.php68 * @var array filter patterns for listing users
365 * @param array $filter
368 protected function constructSearchString($filter)
370 if (!$filter) {
375 if (isset($filter['name'])) {
376 $result .= ')(displayname=*' . $adldapUtils->ldapSlashes($filter['name']) . '*';
377 unset($filter['name']);
380 if (isset($filter['user'])) {
381 $result .= ')(samAccountName=*' . $adldapUtils->ldapSlashes($filter['user']) . '*';
382 unset($filter['use
358 constructSearchString($filter) global() argument
388 getUserCount($filter = array()) global() argument
438 filterToString($filter) global() argument
465 fillGroupUserArray($filter, $numberOfAdds) global() argument
502 retrieveUsers($start = 0, $limit = 0, $filter = array()) global() argument
764 protected function filter($user, $info) global() function in auth_plugin_authad
785 constructPattern($filter) global() argument
[all...]
/dokuwiki/lib/plugins/authldap/
H A Dauth.php26 /* @var array $pattern User filter pattern */
198 $filter = $this->makeFilter($this->getConf('userfilter'), $info);
200 $filter = "(ObjectClass=*)";
203 $this->debug('LDAP Filter: ' . hsc($filter), 0, __LINE__, __FILE__);
205 $this->debug('LDAP search at: ' . hsc($base . ' ' . $filter), 0, __LINE__, __FILE__);
206 $sr = $this->ldapSearch($this->con, $base, $filter, $this->getConf('userscope'), $this->getConf('attributes'));
275 $filter = $this->makeFilter($this->getConf('groupfilter'), $user_result);
279 $filter,
284 $this->debug('LDAP search at: ' . hsc($base . ' ' . $filter),
402 retrieveUsers($start = 0, $limit = 0, $filter = array()) global() argument
456 makeFilter($filter, $placeholders) global() argument
482 protected function filter($user, $info) global() function in auth_plugin_authldap
504 constructPattern($filter) global() argument
649 ldapSearch($link_identifier, $base_dn, $filter, $scope = 'sub', $attributes = null, $attrsonly = 0, $sizelimit = 0) global() argument
[all...]
/dokuwiki/lib/plugins/authpdo/
H A Dauth.php363 * @param array $filter array of field/pattern pairs, null for no filter
366 public function retrieveUsers($start = 0, $limit = -1, $filter = null)
369 if (is_null($filter)) $filter = [];
371 if (isset($filter['grps'])) $filter['group'] = $filter['grps'];
373 if (!isset($filter[$key])) {
374 $filter[
406 retrieveUsers($start = 0, $limit = 1, $filter = null) global() argument
446 getUserCount($filter = array()) global() argument
[all...]
/dokuwiki/lib/plugins/authplain/
H A Dauth.php20 /** @var array filter pattern */
271 * Return a count of the number of user which meet $filter criteria argument
275 * @param array $filter
278 public function getUserCount($filter = [])
283 if ($filter === []) return count($this->users);
286 $this->constructPattern($filter);
289 $count += $this->filter($user, $info);
302 * @param array $filter array of field/pattern pairs
305 public function retrieveUsers($start = 0, $limit = 0, $filter = [])
315 $this->constructPattern($filter);
298 retrieveUsers($start = 0, $limit = 0, $filter = array()) global() argument
455 protected function filter($user, $info) global() function in auth_plugin_authplain
474 constructPattern($filter) global() argument
[all...]

1234