GroupedBindings::add

  1. Bitrix24 API (v. 23.675.0)
  2. crm
  3. GroupedBindings
  4. add
  • Модуль: 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;
}

Добавить комментарий