Home
last modified time | relevance | path

Searched refs:addFilter (Results 1 – 25 of 28) sorted by relevance

12

/plugin/structodt/
H A Dhelper.php238 $search->addFilter($colname, $value, $comp, $op);
256 $search->addFilter('%pageid%', $pid, '=');
258 $search->addFilter('%pageid%', $pid, '=');
259 $search->addFilter('%rowid%', $rid, '=');
261 $search->addFilter('%rowid%', $rid, '=');
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Node/Expression/PHP53/
H A DFilterInclude.php4 $env->addFilter(new \Twig\TwigFilter('anonymous', function () {}));
/plugin/elasticsearch/vendor/ruflin/elastica/src/Aggregation/
H A DAdjacencyMatrix.php14 public function addFilter(AbstractQuery $filter, string $name): self function in Elastica\\Aggregation\\AdjacencyMatrix
H A DFilters.php30 public function addFilter(AbstractQuery $filter, ?string $name = null): self function in Elastica\\Aggregation\\Filters
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Node/Expression/
H A DFilterTest.php36 $environment->addFilter(new TwigFilter('bar', 'bar', ['needs_environment' => true]));
37 …$environment->addFilter(new TwigFilter('barbar', 'twig_tests_filter_barbar', ['needs_context' => t…
/plugin/findologicxmlexport/vendor/myclabs/deep-copy/
H A DREADME.md141 The method to add a filter is `DeepCopy\DeepCopy::addFilter($filter, $matcher)`,
211 $copier->addFilter(new SetNullFilter(), new PropertyNameMatcher('id'));
229 $copier->addFilter(new KeepFilter(), new PropertyMatcher('MyClass', 'category'));
246 $copier->addFilter(new DoctrineCollectionFilter(), new PropertyTypeMatcher('Doctrine\Common\Collect…
263 $copier->addFilter(new DoctrineEmptyCollectionFilter(), new PropertyMatcher('MyClass', 'myProperty'…
285 $copier->addFilter(new DoctrineProxyFilter(), new DoctrineProxyMatcher());
306 $copier->addFilter(new ReplaceFilter($callback), new PropertyMatcher('MyClass', 'title'));
/plugin/dw2pdf/vendor/myclabs/deep-copy/
H A DREADME.md136 The method to add a filter is `DeepCopy\DeepCopy::addFilter($filter, $matcher)`,
206 $copier->addFilter(new SetNullFilter(), new PropertyNameMatcher('id'));
224 $copier->addFilter(new KeepFilter(), new PropertyMatcher('MyClass', 'category'));
241 $copier->addFilter(new DoctrineCollectionFilter(), new PropertyTypeMatcher('Doctrine\Common\Collections\Collection'));
258 $copier->addFilter(new DoctrineEmptyCollectionFilter(), new PropertyMatcher('MyClass', 'myProperty'));
280 $copier->addFilter(new DoctrineProxyFilter(), new DoctrineProxyMatcher());
301 $copier->addFilter(new ReplaceFilter($callback), new PropertyMatcher('MyClass', 'title'));
/plugin/struct/meta/
H A DSearchConfigParameters.php49 $this->addFilter($colname, $comp, $value);
123 public function addFilter($column, $comp, $value) function in dokuwiki\\plugin\\struct\\meta\\SearchConfigParameters
H A DSearchConfig.php59 $this->addFilter($filter[0], $this->applyFilterVars($filter[2]), $filter[1], $filter[3]);
H A DSearch.php168 public function addFilter($colname, $value, $comp, $op = 'OR')
159 public function addFilter($colname, $value, $comp, $op = 'OR') global() function in dokuwiki\\plugin\\struct\\meta\\Search
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Runner/Filter/
H A DFactory.php22 public function addFilter(ReflectionClass $filter, $args) function in PHPUnit_Runner_Filter_Factory
/plugin/scrape/HTMLPurifier/ConfigSchema/schema/
H A DFilter.Custom.txt
/plugin/elasticsearch/vendor/ruflin/elastica/src/Query/
H A DBoolQuery.php57 public function addFilter(AbstractQuery $filter): self function in Elastica\\Query\\BoolQuery
/plugin/structcombolookup/
H A Daction.php72 $search->addFilter($id, $rawvalue, '=');
/plugin/findologicxmlexport/vendor/twig/twig/src/Extension/
H A DStagingExtension.php49 public function addFilter($name, $filter) function in Twig\\Extension\\StagingExtension
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dadvanced_legacy.rst178 Adding a filter is as simple as calling the ``addFilter()`` method on the
182 $twig->addFilter('rot13', new Twig_Filter_Function('str_rot13'));
184 The second argument of ``addFilter()`` is an instance of ``Twig_Filter``.
210 $twig->addFilter('rot13', new Twig_Filter_Function('project_compute_rot13'));
216 $twig->addFilter('rot13', new Twig_Filter_Function('SomeClass::rot13Filter'));
269 $twig->addFilter('*_path_*', new Twig_Filter_Function('twig_path'));
283 $twig->addFilter('*_path_*', new Twig_Filter_Function('twig_path'));
350 $twig->addFilter('*_path_*', new Twig_Filter_Function('twig_path'));
703 $twig->addFilter('rot13', new Twig_Filter_Function('Project_Twig_Extension::rot13Filter'));
H A Dadvanced.rst155 $twig->addFilter($filter);
941 $twig->addFilter(new \Twig\TwigFilter('date', function ($timestamp, $format = 'F j, Y H:i') {
/plugin/structcombolookup/types/
H A DNarrowingLookup.php66 $search->addFilter($this->config['field'], $rawvalue, '=');
/plugin/findologicxmlexport/vendor/myclabs/deep-copy/src/DeepCopy/
H A DDeepCopy.php94 public function addFilter(Filter $filter, Matcher $matcher) function in DeepCopy\\DeepCopy
/plugin/dw2pdf/vendor/myclabs/deep-copy/src/DeepCopy/
H A DDeepCopy.php97 public function addFilter(Filter $filter, Matcher $matcher) function in DeepCopy\\DeepCopy
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/TextUI/
H A DTestRunner.php128 $filterFactory->addFilter(
135 $filterFactory->addFilter(
142 $filterFactory->addFilter(
/plugin/findologicxmlexport/vendor/twig/twig/src/Test/
H A DIntegrationTestCase.php175 $twig->addFilter($filter);
/plugin/diagramsnet/lib/WEB-INF/lib/
H A Dservlet-api.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/servlet/ javax/ ...
/plugin/findologicxmlexport/vendor/twig/twig/src/
H A DEnvironment.php1122 public function addFilter($name, $filter = null) function in Twig\\Environment
1139 $this->staging->addFilter($name, $filter);
/plugin/findologicxmlexport/vendor/twig/twig/
H A DCHANGELOG692 …* changed the way extensions are loaded (addFilter/addFunction/addGlobal/addTest/addNodeVisitor/ad…
917 * fixed type hinting for Twig_Environment::addFilter() method

12