Searched +full:comparator +full:> +full:= +(+path:plugin +path:struct) -(+path:plugin +path:struct +path:lang) (Results 1 – 3 of 3) sorted by relevance
/plugin/struct/meta/ |
H A D | SearchConfigParameters.php | 13 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, ] = [all...] |
H A D | AggregationTable.php | 23 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 = ne [all...] |
/plugin/struct/types/ |
H A D | AbstractBaseType.php | 32 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 = [all...] |