Home
last modified time | relevance | path

Searched +full:comparator +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/
DStruct.php3 * This file is part of the Comparator package.
11 namespace SebastianBergmann\Comparator;
23 $this->var = $var;
/plugin/struct/_test/
H A DSearchConfigParameterTest.php27 $as = mock\Assignments::getInstance();
30 $this->fixedrev = time();
37 'first' => 'first data',
38 'second' => ['second data', 'more data', 'even more'],
39 'third' => 'third data',
40 'fourth' => 'fourth data'
50 'afirst' => 'first data',
51 'asecond' => ['second data', 'more data', 'even more'],
52 'athird' => 'third data',
53 'afourth' => 'fourth data'
[all …]
/plugin/struct/meta/
H A DNestedValue.php18 protected $children = [];
21 protected $resultRows = [];
36 public function __construct(?Value $value, $parentPath = '', $depth = 0)
38 $this->value = $value;
39 $this->parentPath = $parentPath;
40 $this->depth = $depth;
56 $this->depth = $depth;
82 $this->children[(string)$child] = $child; // ensures uniqueness
91 public function getChildren($sort = false)
93 $children = $this->children;
[all …]
H A DSearchConfigParameters.php13 public static $PARAM_FILTER = 'flt';
15 public static $PARAM_OFFSET = 'ofs';
17 public static $PARAM_SORT = 'srt';
25 protected $offset = 0;
27 protected $filters = [];
37 $this->searchConfig = $searchConfig;
39 $confHlp = plugin_load('helper', 'struct_config');
42 [$colname, $sort] = $confHlp->parseSort($INPUT->str(self::$PARAM_SORT));
47 foreach ($INPUT->arr(self::$PARAM_FILTER) as $colcomp => $filter) {
48 [$colname, $comp, $value, ] = $confHlp->parseFilterLine('AND', $colcomp . $filter);
[all …]
H A DAggregationTable.php23 public function render($showNotFound = false)
28 … if ($this->searchConfig->getCount() <= 0 && !$this->isDynamicallyFiltered() && $showNotFound) {
35 $rendercontext = [
36 'table' => $this,
37 'renderer' => $this->renderer,
38 'format' => $this->mode,
39 'search' => $this->searchConfig,
40 'columns' => $this->columns,
41 'data' => $this->searchConfig->getRows()
44 $event = new Event(
[all …]
/plugin/struct/types/
H A DAbstractBaseType.php32 protected $config = [];
37 protected $keepconfig = ['label', 'hint', 'visibility'];
42 protected $label = '';
47 protected $ismulti = false;
52 protected $tid = 0;
67 * @param string $label The label for this field (empty for new definitions=
71 public function __construct($config = null, $label = '', $ismulti = false, $tid = 0)
74 $baseconfig = [
75 'visibility' => [
76 'inpage' => true,
[all …]