Searched +full:comparator +full:< +full:> +(+path:plugin +path:struct) -(+path:plugin +path:struct +path:lang) (Results 1 – 6 of 6) sorted by relevance
| /plugin/findologicxmlexport/vendor/sebastian/comparator/tests/_files/ |
| D | Struct.php | 1 <?php 3 * This file is part of the Comparator package. 5 * (c) Sebastian Bergmann <sebastian@phpunit.de> 11 namespace SebastianBergmann\Comparator; 23 $this->var = $var;
|
| /plugin/struct/_test/ |
| H A D | SearchConfigParameterTest.php | 1 <?php 24 $this->loadSchemaJSON('schema1'); 25 $this->loadSchemaJSON('schema2'); 30 $this->fixedrev = time(); 32 $as->assignPageSchema('page01', 'schema1'); 33 $this->saveData( 37 'first' => 'first data', 38 'second' => ['second data', 'more data', 'even more'], 39 'third' => 'third data', 40 'fourth' => 'fourth data' [all …]
|
| /plugin/struct/meta/ |
| H A D | SearchConfigParameters.php | 1 <?php 37 $this->searchConfig = $searchConfig; 41 if ($INPUT->has(self::$PARAM_SORT)) { 42 [$colname, $sort] = $confHlp->parseSort($INPUT->str(self::$PARAM_SORT)); 43 $this->setSort($colname, $sort); 46 if ($INPUT->has(self::$PARAM_FILTER)) { 47 foreach ($INPUT->arr(self::$PARAM_FILTER) as $colcomp => $filter) { 48 [$colname, $comp, $value, ] = $confHlp->parseFilterLine('AND', $colcomp . $filter); 49 $this->addFilter($colname, $comp, $value); 53 if ($INPUT->has(self::$PARAM_OFFSET)) { [all …]
|
| H A D | NestedValue.php | 1 <?php 38 $this->value = $value; 39 $this->parentPath = $parentPath; 40 $this->depth = $depth; 48 return $this->depth; 56 $this->depth = $depth; 57 foreach ($this->children as $child) { 58 $child->setDepth($depth + 1); 69 return $this->value; 82 $this->children[(string)$child] = $child; // ensures uniqueness [all …]
|
| H A D | AggregationTable.php | 1 <?php 25 if (in_array($this->mode, \helper_plugin_struct::BLACKLIST_RENDERER)) return; 28 … if ($this->searchConfig->getCount() <= 0 && !$this->isDynamicallyFiltered() && $showNotFound) { 29 $this->renderer->cdata($this->helper->getLang('none')); 33 $this->renderActiveFilters(); 36 'table' => $this, 37 'renderer' => $this->renderer, 38 'format' => $this->mode, 39 'search' => $this->searchConfig, 40 'columns' => $this->columns, [all …]
|
| /plugin/struct/types/ |
| H A D | AbstractBaseType.php | 1 <?php 75 'visibility' => [ 76 'inpage' => true, 77 'ineditor' => true 83 $this->mergeConfig($config, $this->config); 86 $this->initTransConfig(); 87 $this->config = array_merge($baseconfig, $this->config); 88 $this->label = $label; 89 $this->ismulti = (bool)$ismulti; 90 $this->tid = $tid; [all …]
|