Home
last modified time | relevance | path

Searched refs:filters (Results 251 – 275 of 288) sorted by path

1...<<1112

/plugin/strata/helper/
H A Dtriples.php121 $filters = array('1 = 1');
124 $filters[]=$this->_cic($param, '?');
129 $sql = "DELETE FROM ".self::$writable." WHERE ". implode(" AND ", $filters);
153 $filters = array('1 = 1');
156 $filters[]=$this->_cic($param,'?');
176 $sql = "SELECT subject, predicate, object, graph FROM ".self::$readable." WHERE ". implode(" AND ", $filters).$scopeRestriction;
575 * Translate a filter operation. The filters are a conjunction of separate expressions.
581 $filters = array();
611 $filters[] = '( ' . $this->_ci($lhs) . ' '.$f['operator'].' ' . $this->_ci($rhs). ' )';
617 $filters[]
[all...]
/plugin/strata/
H A Dmanual.txt257 You can use simple filters to refine any matches from a pattern.
265 The following filters apply to all types of data:
271 These filters only make sense on numerical values:
279 These filters (usually) only make sense on textual values:
318 An union block can contain more than two options, but must have at least two. All options must contain at least a pattern, but can contain filters and query blocks as well.
329 A minus block must contain at least a pattern, but can contain filters and other query blocks.
417 * ''text'': a text input field. It filters rows that have a value that contains the filter string (substring matching). E.g.: filtering for //David// will match //10 David Street//.
418 * ''%%select%%'': a drop down select box filter, which contains all possible values. It filters rows that have exactly the value that is selected (exact matching).
419 * ''%%prefix select%%'': a drop down select box filter, which contains all possible values. It filters rows that start with the value that is selected (prefix matching). E.g.: if the values //EN//, //%%EN-US%%//, and //%%EN-GB%%// are present, filtering for //EN// will match all three values.
420 * ''%%suffix select%%'': a drop down select box filter, which contains all possible values. It filters row
[all...]
H A Dscript.js173 // Returns a text input which filters the field belonging to the given filterId
192 // Returns a select input which filters the field belonging to the given filterId
458 'filters': [] property in AnonymousFunctionb1c4c91b1700.f
464 f.filters.push(filterColumns.charAt(i));
477 if (f.filters.length) {
480 for (var j = 0; j < f.filters.length; j++) {
481 createFilterFieldAndSort(li, f.filters[j], i + '_' + j, f.field, f.sortType, fieldSelector, div, caption, f.minWidth);
495 if (f.filters.length == 0) { // No sort data was stored yet, do it now
/plugin/struct/meta/
H A DAccessTable.php530 $QB->filters()->whereAnd("DATA.$idColumn = $pl");
532 $QB->filters()->whereAnd("DATA.rev = $pl");
H A DAggregationTable.php116 * Displays info about the currently applied filters
122 $filters = $dynamic->getFilters();
123 if (!$filters) return;
126 foreach ($filters as $column => $filter) {
129 // display the filters in a human readable format
288 $filters = $dynamic->getFilters();
289 if (isset($filters[$column->getFullQualifiedLabel()])) {
290 [, $current] = $filters[$column->getFullQualifiedLabel()];
484 // FIXME apply dynamic filters
H A DQueryBuilder.php126 * Returns the current WHERE filters and allows to set new ones
130 public function filters() function in dokuwiki\\plugin\\struct\\meta\\QueryBuilder
H A DSearch.php41 /** @var array the filters */
44 /** @var array the filters */
199 /* Convert certain filters into others
200 * this reduces the number of supported filters to implement in types */
H A DSearchCloud.php33 $subAnd = $QB->filters()->whereSubAnd();
55 $QB->filters()->whereAnd("$datatable.latest = 1");
56 $QB->filters()->where('AND', 'tag IS NOT \'\'');
H A DSearchConfig.php55 if (!empty($config['filters'])) $this->cacheFlag = $this->determineCacheFlag($config['filters']);
86 * @param array $filters argument
89 protected function determineCacheFlag($filters)
93 foreach ($filters as $filter) {
120 // apply inexpensive filters first
H A DSearchConfigParameters.php12 /** @var string parameter name to pass filters */
27 protected $filters = []; variable in dokuwiki\\plugin\\struct\\meta\\SearchConfigParameters
131 $this->filters[$column] = [$comp, $value];
144 if (isset($this->filters[$column])) unset($this->filters[$column]);
152 $this->filters = [];
156 * @return array the current filters
160 return $this->filters;
185 if ($this->filters) {
186 foreach ($this->filters a
[all...]
/plugin/structat/meta/
H A DSearchConfigAt.php71 $subAnd = $QB->filters()->whereSubAnd();
98 $QB->filters()->whereAnd("$datatable.rev =
102 $QB->filters()->whereAnd("$datatable.latest = 1");
137 $userWHERE = $QB->filters()->where('AND');
/plugin/structodt/
H A Dhelper.php230 public function getRows($schemas, &$first_schema, $filters=array()) argument
233 foreach ($filters as $filter) {
/plugin/tablefilterjs/
H A Dscript.js20 var filters = jQuery.parseJSON( tablefilterjs.decodeHTML(jQuery(this).data("filters")) );
22 for( col in filters )
33 var regex = new RegExp( filters[col][0], filters[col][1] );
/plugin/tagging/
H A Dhelper.php379 * @param array $filters
382 public function getAllTags($namespace = '', $order_by = 'tid', $desc = false, $filters = []) { argument
389 list($having, $params) = $this->getFilterSql($filters);
732 $filters = $INPUT->arr('tagging__filters');
734 $tags = $this->getAllTags($INPUT->str('filter'), $order_by, $desc, $filters);
803 * Table filters for all sortable columns
983 * @param array $filters
986 protected function getFilterSql($filters) argument
991 $filters = array_filter($filters);
[all...]
/plugin/tagging/script/
H A Dsearch.js51 * @param {string[]} filters
54 function buildFilter(tags, filters) { argument
59 if (Object.keys(tags).length === 0 && filters.length > 0) {
60 for (const key of filters) {
66 let checked = filters.includes(tag) ? 'checked="checked"' : '';
128 let filters = parts.filter(function (part) {
132 return filters.map(function (tag) {
186 // tags in other search filters
/plugin/task/syntax/
H A Dtasks.php53 $filters = $this->_viewFilters();
54 if (!in_array($filter, $filters)) $filter = 'open';
269 if (!$_SERVER['REMOTE_USER']) $filters = array('all', 'open', 'done');
270 …else $filters = array('all', 'open', 'new', 'done', 'my', 'rejected', 'started', 'accepted', 'veri…
272 $filters[] = 'due';
273 $filters[] = 'overdue';
275 return $filters;
/plugin/tuxquote/
H A Dquotes.txt3173 …cherous ascent to the summit of Mount Everest, would take along aquarium filters, just in case. <B…
/plugin/webcode/vendor/
H A Dfirebug-lite-1.4.js3283 }},filters:{enabled:function(elem){return elem.disabled===false&&elem.type!=="hidden"
3310 }},filter:{PSEUDO:function(elem,match,i,array){var name=match[1],filter=Expr.filters[name];
/plugin/webdav/vendor/sabre/dav/
H A DCHANGELOG.md1347 * Fixed: Issue 220: Calendar-query filters may fail when filtering on alarms, if
1418 * Added: Support for time-range filters on VALARM components.
1748 * Fixed: Issue 96: support for 'default' collation in CalDAV text-match filters.
1835 * Fixed: Issue 38, Allowing custom filters to be added to TemporaryFileFilter.
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Backend/
H A DAbstractBackend.php105 * @param array $filters
108 function calendarQuery($calendarId, array $filters) { argument
115 if ($this->validateFilterForObject($object, $filters)) {
130 * @param array $filters
133 protected function validateFilterForObject(array $object, array $filters) { argument
145 $result = $validator->validate($vObject, $filters);
H A DBackendInterface.php244 * @param array $filters
247 function calendarQuery($calendarId, array $filters); argument
H A DPDO.php783 * @param array $filters
786 function calendarQuery($calendarId, array $filters) { argument
798 if (!$filters['prop-filters'] && !$filters['comp-filters']) {
803 if (count($filters['comp-filters']) > 0 && !$filters['comp-filters'][0]['is-not-defined']) {
804 $componentType = $filters['comp-filters'][0]['name'];
807 …if (!$filters['prop-filters'] && !$filters['comp-filters'][0]['comp-filters'] && !$filters['comp-f…
811 if ($componentType == 'VEVENT' && isset($filters['comp-filters'][0]['time-range'])) {
812 $timeRange = $filters['comp-filters'][0]['time-range'];
816 …if (!$filters['prop-filters'] && !$filters['comp-filters'][0]['comp-filters'] && !$filters['comp-f…
853 if (!$this->validateFilterForObject($row, $filters)) {
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/
H A DCalendar.php367 * @param array $filters
370 function calendarQuery(array $filters) { argument
372 return $this->caldavBackend->calendarQuery($this->calendarInfo['id'], $filters);
H A DCalendarQueryValidator.php29 * @param array $filters
32 function validate(VObject\Component\VCalendar $vObject, array $filters) { argument
36 if ($vObject->name !== $filters['name']) {
41 $this->validateCompFilters($vObject, $filters['comp-filters']) &&
42 $this->validatePropFilters($vObject, $filters['prop-filters']);
55 * @param array $filters
60 foreach ($filters as $filter) {
124 * @param array $filters
129 foreach ($filters as $filter) {
194 * @param array $filters
[all …]
H A DICalendarObjectContainer.php34 * @param array $filters
37 function calendarQuery(array $filters); argument

1...<<1112