Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/rospirotorg.ru/bitrix/modules/ui/lib/entityselector/ |
Upload File : |
<? namespace Bitrix\UI\EntitySelector; class RecentCollection implements \IteratorAggregate, \JsonSerializable { private $items = []; private $itemsByEntity = []; public function __construct() { } public function add(RecentItem $recentItem) { if ($this->has($recentItem)) { return; } if (!isset($this->itemsByEntity[$recentItem->getEntityId()])) { $this->itemsByEntity[$recentItem->getEntityId()] = []; } $this->itemsByEntity[$recentItem->getEntityId()][$recentItem->getId()] = $recentItem; $this->items[] = $recentItem; } public function get(string $entityId, $itemId): ?RecentItem { return $this->itemsByEntity[$entityId][$itemId] ?? null; } public function has(RecentItem $recentItem): bool { return isset($this->itemsByEntity[$recentItem->getEntityId()][$recentItem->getId()]); } public function getByItem(Item $item): ?RecentItem { return $this->itemsByEntity[$item->getEntityId()][$item->getId()] ?? null; } public function getAll(): array { return $this->items; } public function count(): int { return count($this->items); } public function getEntityItems(string $entityId): array { return $this->itemsByEntity[$entityId] ?? []; } public function jsonSerialize() { return array_values(array_filter($this->items, function(RecentItem $recentItem) { return $recentItem->isLoaded() && $recentItem->isAvailable(); })); } public function getIterator(): \ArrayIterator { return new \ArrayIterator($this->items); } }