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 relevance

1234

/dokuwiki/lib/plugins/logviewer/
H A Dscript.js10 var $filter = jQuery('<input>');
11 $filter.on('keyup', function (e) {
12 var re = new RegExp($filter.val(), 'i');
22 $dl.before($filter);
23 $filter.wrap('<label></label>');
24 $filter.before(LANG.plugins.logviewer.filter + ' ');
/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/revert/
H A Dadmin.php61 $this->revertEdits($INPUT->arr('revert'), $INPUT->str('filter'));
62 } elseif ($INPUT->has('filter')) {
63 $this->listEdits($INPUT->str('filter'));
74 echo '<label>' . $this->getLang('filter') . ': </label>';
75 echo '<input type="text" name="filter" class="edit" value="' . hsc($INPUT->str('filter')) . '" /> ';
84 protected function revertEdits($revert, $filter)
100 if (strpos($data, (string) $filter) === false) break;
120 * List recent edits matching the given filter
122 protected function listEdits($filter)
83 revertEdits($revert, $filter) global() argument
121 listEdits($filter) global() argument
[all...]
/dokuwiki/lib/plugins/authad/adLDAP/classes/
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...]
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);
/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/vendor/splitbrain/php-archive/
H A Dphpunit.xml16 <filter>
20 </filter>
/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...]
/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/lib/plugins/extension/
H A Dcli.php42 $options->registerOption('filter', 'Filter by this status', 'f', 'status', 'list');
80 $ret = $this->cmdList($options->getOpt('verbose'), $options->getOpt('filter', ''));
286 * @param string $filter
290 protected function cmdList($showdetails, $filter)
293 $this->listExtensions($list, $showdetails, $filter);
321 * @param string $filter filter for this status
324 protected function listExtensions($list, $details, $filter = '')
359 if ($filter
285 cmdList($showdetails, $filter) global() argument
320 listExtensions($list, $details, $filter = '') global() argument
[all...]
/dokuwiki/lib/plugins/usermanager/
H A Dadmin.php29 protected $filter = []; // user selection filter(s)
137 $this->filter = $this->retrieveFilter();
168 $this->users_total = $this->auth->canDo('getUserCount') ? $this->auth->getUserCount($this->filter) : -1;
204 $user_list = $this->auth->retrieveUsers($this->start, $this->pagesize, $this->filter);
210 $export_label = empty($this->filter) ? $this->lang['export_all'] : $this->lang['export_filtered'];
303 if (!empty($this->filter)) {
551 * Returns htmlescaped filter value
558 if (empty($this->filter)) return '';
559 return (isset($this->filter[
24 protected $filter = array(); // user selection filter(s) global() variable in admin_plugin_usermanager
[all...]
/dokuwiki/vendor/geshi/geshi/src/geshi/
H A Dmake.php65 //'subst', 'addprefix', 'addsuffix', 'basename', 'call', 'dir', 'error', 'eval', 'filter-out', 'filter',
130 GESHI_SEARCH => '(\\$[({])(subst|addprefix|addsuffix|basename|call|dir|error|eval|filter-out|filter,|findstring|firstword|foreach|if|join|notdir|origin|patsubst|shell|sort|strip,|suffix|warning|wildcard|word|wordlist|words)([ })])',
H A Dwhois.php62 'as-block','as-set','aut-num','domain','filter-set','inet-rtr',
72 'fax-no','filter','filter-set','fingerpr','form','holes','ifaddr',
77 'mp-export','mp-filter','mp-import','mp-members','mp-peer',
H A Dpf.php11 * OpenBSD PACKET FILTER language file for GeSHi.
43 'LANG_NAME' => 'OpenBSD Packet Filter',
/dokuwiki/lib/exe/
H A Dajax.php25 $call = $INPUT->filter([Clean::class, 'stripspecials'])->str('call');
/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/
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 Ddefines.php49 * Changelog filter constants
/dokuwiki/vendor/simplepie/simplepie/src/Cache/
H A DNameFilter.php75 public function filter(string $name): string; function
H A DCallableNameFilter.php85 public function filter(string $name): string function in SimplePie\\Cache\\CallableNameFilter
/dokuwiki/lib/scripts/
H A Dbehaviour.js179 .filter(':checked')
192 var $checked = $all.filter(':checked');

1234