49 return function (
isItem $item_one,
isItem $item_two) :
int {
50 return $item_one->
getPosition() - $item_two->getPosition();
60 if (0 < strlen($serialize)) {
61 $this->raw[$serialize] = $item;
70 foreach ($items as $item) {
81 $item = $this->raw->offsetGet($identification->serialize());
83 return $item ?? $this->
getLostItem($identification);
93 $item = $this->filtered->offsetGet($identification->serialize());
95 return $item ?? $this->
getLostItem($identification);
103 $this->raw->offsetUnset($identification->serialize());
114 return $this->filtered->offsetExists($identification->serialize());
120 public function has() : bool
122 return $this->raw->count() > 0;
127 if ($this->filtered === null) {
128 $this->filtered =
new ArrayObject($this->raw->getArrayCopy());
130 if (count($this->filters) > 0) {
132 if ($this->filtered === null) {
133 $filter_copy = $this->raw->getArrayCopy();
136 $filter_copy = $this->filtered->getArrayCopy();
138 foreach ($this->filters as $filter) {
139 $filter_copy = array_filter($filter_copy, $filter);
141 $this->filtered->exchangeArray($filter_copy);
162 $to_walk = (array) $this->filtered->getArrayCopy();
163 array_walk($to_walk, $c);
172 $this->filters[] =
$c;
179 $this->filtered->uasort($this->
getSorter());
181 $replace_children_sorted =
function (
isItem &$item) {
183 $children = $item->getChildren();
185 $item = $item->withChildren($children);
188 $this->
walk($replace_children_sorted);
195 ->withVisibilityCallable(
199 )->withTitle(
'Lost');
withAlwaysAvailable(bool $always_active)
Interface IdentificationInterface.
existsInFilter(IdentificationInterface $identification)
Class NullIdentification.
getSingleItemFromRaw(IdentificationInterface $identification)
getProviderIdentification()
getPosition()
Return the default position for installation, this will be overridden by the configuration later...
Class MainMenuItemFactory.
getLostItem(IdentificationInterface $identification)
__construct(MainMenuItemFactory $factory)
Tree constructor.
addMultiple(isItem ... $items)
getSingleItemFromFilter(IdentificationInterface $identification)