Searched +full:comparator +full:> +full:= +(+path:plugin +path:struct) -(+path:plugin +path:struct +path:lang) (Results 1 – 5 of 5) sorted by relevance
/plugin/findologicxmlexport/vendor/sebastian/comparator/tests/_files/ |
D | Struct.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/meta/ |
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'); 41 if ($INPUT->has(self::$PARAM_SORT)) { 42 [$colname, $sort] = $confHlp->parseSort($INPUT->str(self::$PARAM_SORT)); 43 $this->setSort($colname, $sort); [all …]
|
D | NestedValue.php | 18 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; 48 return $this->depth; 56 $this->depth = $depth; 57 foreach ($this->children as $child) { 58 $child->setDepth($depth + 1); [all …]
|
D | AggregationTable.php | 23 public function render($showNotFound = false) 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(); 35 $rendercontext = [ 36 'table' => $this, 37 'renderer' => $this->renderer, 38 'format' => $this->mode, 39 'search' => $this->searchConfig, [all …]
|
/plugin/struct/types/ |
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 = 0) 74 $baseconfig = [ 75 'visibility' => [ 76 'inpage' => true, [all …]
|