Home
last modified time | relevance | path

Searched refs:filter (Results 126 – 150 of 1263) sorted by relevance

12345678910>>...51

/plugin/findologicxmlexport/vendor/myclabs/deep-copy/
H A DREADME.md29 1. [`SetNullFilter`](#setnullfilter-filter)
30 1. [`KeepFilter`](#keepfilter-filter)
141 The method to add a filter is `DeepCopy\DeepCopy::addFilter($filter, $matcher)`,
197 #### `SetNullFilter` (filter)
219 #### `KeepFilter` (filter)
236 #### `DoctrineCollectionFilter` (filter)
252 #### `DoctrineEmptyCollectionFilter` (filter)
271 #### `DoctrineProxyFilter` (filter)
293 #### `ReplaceFilter` (type filter)
335 #### `ShallowCopyFilter` (type filter)
[all …]
/plugin/dw2pdf/vendor/myclabs/deep-copy/
H A DREADME.md24 1. [`SetNullFilter`](#setnullfilter-filter)
25 1. [`KeepFilter`](#keepfilter-filter)
26 1. [`DoctrineCollectionFilter`](#doctrinecollectionfilter-filter)
27 1. [`DoctrineEmptyCollectionFilter`](#doctrineemptycollectionfilter-filter)
28 1. [`DoctrineProxyFilter`](#doctrineproxyfilter-filter)
29 1. [`ReplaceFilter`](#replacefilter-type-filter)
30 1. [`ShallowCopyFilter`](#shallowcopyfilter-type-filter)
136 The method to add a filter is `DeepCopy\DeepCopy::addFilter($filter, $matcher)`,
137 with `$filter` implementin
[all...]
/plugin/authgooglesheets/
H A Dauth.php117 public function retrieveUsers($start = 0, $limit = 0, $filter = null) argument
119 return $this->helper->getUsers($start, $limit, $filter);
125 * @param array $filter
128 public function getUserCount($filter = array()) argument
130 return count($this->helper->getUsers(0, 0, $filter));
H A Dhelper.php65 public function getUsers($start = 0, $limit = 0, $filter = null) argument
112 return $this->getFilteredUsers($start, $limit, $filter);
247 * @param array $filter
250 protected function getFilteredUsers($start, $limit, $filter) argument
252 $filter = $filter ?? [];
254 foreach ($filter as $item => $pattern) {
263 if ($this->filter($user, $info)) {
285 protected function filter($user, $info) function in helper_plugin_authgooglesheets
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
H A Ddate_modify.rst5 The date_modify filter has been added in Twig 1.9.0.
7 The ``date_modify`` filter modifies a date with a given modifier string:
13 The ``date_modify`` filter accepts strings (it must be in a format supported
15 it with the :doc:`date<date>` filter for formatting.
/plugin/structgroup/helper/
H A Dauthgroup.php54 public function getGroups($length = NULL, $filter = '') { argument
60 if ($filter != '') $groups = array_filter($groups, function ($group) use ($filter) {
61 return strpos($group, $filter) === 0;
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dadvanced.rst61 Now, let's use a ``lipsum`` *filter*:
152 Then, add the filter to your Twig environment::
155 $twig->addFilter($filter);
229 through your filter::
241 last argument to the filter call as an array::
254 A filter name containing the special ``*`` character is a dynamic filter as
272 The filter will receive all dynamic part values before the normal filter
275 the filter: ``('a', 'b', 'foo')``.
403 :doc:`filter <tags/filter>` tag:
407 {% filter markdown %}
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/src/NodeVisitor/
H A DEscaperNodeVisitor.php105 protected function preEscapeFilterNode(FilterExpression $filter, Environment $env) argument
107 $name = $filter->getNode('filter')->getAttribute('value');
111 return $filter;
114 $node = $filter->getNode('node');
116 return $filter;
119 $filter->setNode('node', $this->getEscaperFilter($type, $node));
121 return $filter;
/plugin/bez/mdl/
H A DEntity.php39 public function get_assoc($filter=NULL) { argument
43 if ($filter !== NULL) {
44 $columns = array_intersect($columns, $filter);
109 public function changable_fields($filter=NULL) { argument
112 if ($filter !== NULL) {
113 $fields = array_filter($fields, function ($k) use ($filter) {
114 return in_array($k, $filter);
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/filter/
H A Dwith_for_tag.test2 "filter" tag applies the filter on "for" tags
4 {% filter upper %}
H A Dnested.test2 "filter" tags can be nested at will
4 {% filter lower|title %}
6 {% filter upper %}
H A Dbasic.test2 "filter" tag applies a filter on its children
4 {% filter upper %}
/plugin/findologicxmlexport/vendor/hoa/file/
H A DFinder.php339 $filter = null;
343 $filter = function (\SplFileInfo $current) use ($number) {
350 $filter = function (\SplFileInfo $current) use ($number) {
357 $filter = function (\SplFileInfo $current) use ($number) {
364 $filter = function (\SplFileInfo $current) use ($number) {
371 $filter = function (\SplFileInfo $current) use ($number) {
378 $this->_filters[] = $filter;
513 public function filter($callback) function in Hoa\\File\\Finder
642 foreach ($this->getFilters() as $filter) {
645 $filter
/plugin/authremoteuser/
H A Dauth.php264 * @param array $filter
267 public function getUserCount($filter = array()) { argument
271 if(!count($filter)) return count($this->users);
274 $this->_constructPattern($filter);
290 * @param array $filter array of field/pattern pairs
293 public function retrieveUsers($start = 0, $limit = 0, $filter = array()) { argument
302 $this->_constructPattern($filter);
426 * @param array $filter
428 protected function _constructPattern($filter) { argument
430 foreach($filter as $item => $pattern) {
/plugin/dataloop/syntax/
H A Dloop.php445 foreach($data['filter'] as $filter){
446 $col = $filter['key'];
449 … $where .= " ".$filter['logic']." pages.page ".$filter['compare']." '".$filter['value']."'";
451 … $where .= " ".$filter['logic']." pages.title ".$filter['compare']." '".$filter['value']."'";
460 $where .= ' '.$filter['logic'].' '.$tables[$col].'.value '.$filter['compare'].
461 " '".$filter['value']."'"; //value is already escaped
/plugin/issuetracker/
H A Daction.php791 if ($filter['severity'] == '') { $filter['severity'] = 'ALL' ;}
792 if ($filter['status'] == '') { $filter['status'] = 'ALL' ;}
793 if ($filter['product'] == '') { $filter['product'] = 'ALL' ;}
794 if ($filter['version'] == '') { $filter['version'] = 'ALL' ;}
795 if ($filter['component'] == '') { $filter['component'] = 'ALL' ;}
796 if ($filter['tblock'] == '') { $filter['tblock'] = false ;}
798 if ($filter['assignee'] == '') { $filter['assignee'] = 'ALL' ;}
800 if ($filter['myissues'] == '') { $filter['myissues'] = false ;}
803 if ($filter['myissues'] == '') {$filter['myissues'] = false;}
1100 if($filter['myissues'] == '') { $filter['myissues'] = false; }
[all …]
/plugin/distribute/
H A Dhelper.funcs.util.php17 function getFilesInDir($dir, $recursive=false, $type='df', $filter='', $showhidden=false, $showdots… argument
28 $gs = getFilesInDir($dir.$f, $recursive, $type, $filter, $showhidden, $showdots);
36 ($filter && !preg_match("/$filter/", $f)) )
/plugin/authsmartcard/
H A Dauth.php227 * @param array $filter array of field/pattern pairs, empty array for no filter
230 public function getUserCount($filter = array()) { argument
231 return parent::getUserCount($filter);
239 * @param array $filter array of field/pattern pairs
242 public function retrieveUsers($start, $limit, $filter) { argument
243 return parent::retrieveUsers($start, $limit, $filter);
/plugin/struct/meta/
H A DSearchConfigParameters.php47 foreach ($INPUT->arr(self::$PARAM_FILTER) as $colcomp => $filter) {
48 [$colname, $comp, $value, ] = $confHlp->parseFilterLine('AND', $colcomp . $filter);
114 * Adds another filter
116 * When there is a filter for that column already, the new filter overwrites it. Setting a
136 * Removes the filter for the given column
148 * Remove all filter
186 foreach ($this->filters as $column => $filter) {
187 [$comp, $value] = $filter;
197 * Applies the dynamic filter setting
[all...]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Pubsub/
H A DSubscription.php45 public $filter; variable in Google\\Service\\Pubsub\\Subscription
166 public function setFilter($filter) argument
168 $this->filter = $filter;
175 return $this->filter;
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/
H A DPHP.php28 $filter = $coverage->filter();
42 var_export($filter->getWhitelistedFiles(), 1)
/plugin/authvk/
H A Dauth.php267 * @param array $filter
270 public function getUserCount($filter = array()) { argument
274 if(!count($filter)) return count($this->users);
277 $this->_constructPattern($filter);
293 * @param array $filter array of field/pattern pairs
296 public function retrieveUsers($start = 0, $limit = 0, $filter = array()) { argument
305 $this->_constructPattern($filter);
429 * @param array $filter
431 protected function _constructPattern($filter) { argument
433 foreach($filter as $item => $pattern) {
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Datastore/
H A DQuery.php81 public function setFilter(Filter $filter) argument
83 $this->filter = $filter;
90 return $this->filter;
/plugin/authopenldapkerberos/
H A Dauth.php99 public function getUserCount($filter = array()) argument
115 public function retrieveUsers($start = 0, $limit = 0, $filter = array()) argument
117 $this->constructPattern($filter);
169 if($this->filter($uid, $users[$uid])) {
217 protected function filter($user, $info) function in auth_plugin_authopenldapkerberos
234 * @param array $filter
236 protected function constructPattern($filter) argument
239 foreach ($filter as $item => $pattern) {
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/
H A DLdapUrl.php81 protected $filter;
178 return $this->filter;
182 * @param null|string $filter
185 public function setFilter(?string $filter)
187 $this->filter = $filter;
377 if ($this->filter !== null) {
378 $query[2] = self::encode($this->filter);
67 protected $filter; global() variable in FreeDSx\\Ldap\\LdapUrl
170 setFilter(string $filter) global() argument

12345678910>>...51