19 declare(strict_types=1);
48 return static fn(isGlobalScreenItem $item_one, isGlobalScreenItem $item_two):
int => 0;
53 return static fn(isGlobalScreenItem $item_one, isGlobalScreenItem $item_two):
int => 0;
56 public function add(isGlobalScreenItem $item): void
58 $serialize = $item->getProviderIdentification()->serialize();
59 if (0 < strlen($serialize)) {
60 $this->
raw[$serialize] = $item;
64 public function addMultiple(isGlobalScreenItem ...$items): void
66 foreach ($items as $item) {
73 if ($this->
raw->offsetExists($identification->serialize())) {
74 $item = $this->
raw->offsetGet($identification->serialize());
76 return $item ?? $this->
getLostItem($identification);
85 if ($this->filtered->offsetExists($identification->serialize())) {
86 $item = $this->filtered->offsetGet($identification->serialize());
89 return $item ?? $this->
getLostItem($identification);
94 $this->
raw->offsetUnset($identification->serialize());
101 return $this->filtered->offsetExists($identification->serialize());
104 public function has(): bool
106 return $this->
raw->count() > 0;
111 if (!isset($this->filtered)) {
114 if ($this->filters !== []) {
115 $filter_copy = isset($this->filtered) ? $this->filtered->getArrayCopy() : $this->
raw->getArrayCopy();
116 foreach ($this->filters as $filter) {
117 $filter_copy = array_filter($filter_copy, $filter);
119 $this->filtered->exchangeArray($filter_copy);
145 $to_walk = (array) $this->filtered->getArrayCopy();
146 array_walk($to_walk, $c);
152 $this->filters[] =
$c;
Interface IdentificationInterface.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
existsInFilter(IdentificationInterface $identification)
addMultiple(isGlobalScreenItem ... $items)
getLostItem(IdentificationInterface $identification)
getSingleItemFromRaw(IdentificationInterface $identification)
add(isGlobalScreenItem $item)
getSingleItemFromFilter(IdentificationInterface $identification)