...Человеческий поиск в разработке...
- Модуль: crm
- Путь к файлу: ~/bitrix/modules/crm/lib/counter/lighter/groupedbindings.php
- Класс: Bitrix\Crm\Counter\Lighter\GroupedBindings
- Вызов: GroupedBindings::add
public function add(int $ownerTypeId, int $ownerId, int $activityId): void { if (!isset($this->bindings[$ownerTypeId])) { $this->bindings[$ownerTypeId] = []; } if (!isset($this->bindings[$ownerTypeId][$ownerId])) { $this->bindings[$ownerTypeId][$ownerId] = []; $this->bindings[$ownerTypeId][$ownerId]['OWNER_ID'] = $ownerId; $this->bindings[$ownerTypeId][$ownerId]['ACTIVITY_IDS'] = []; } $this->bindings[$ownerTypeId][$ownerId]['ACTIVITY_IDS'][] = $activityId; }