• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/entity/identificator/complexcollection.php
  • Класс: Bitrix\Crm\Entity\Identificator\ComplexCollection
  • Вызов: ComplexCollection::addIdentificator
public function addIdentificator($entityTypeId, $entityId, $uniqueOnly = false)
{
	if (!Complex::validateId($entityTypeId))
	{
		return;
	}
	if (!Complex::validateId($entityId))
	{
		return;
	}

	$this->setComplex(new Complex($entityTypeId, $entityId), $uniqueOnly);
}