• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/entity/identificator/complexcollection.php
  • Класс: Bitrix\Crm\Entity\Identificator\ComplexCollection
  • Вызов: ComplexCollection::getComplexByTypeId
public function getComplexByTypeId($typeId)
{
	foreach ($this->toArray() as $complex)
	{
		if ($complex->getTypeId() === $typeId)
		{
			return $complex;
		}
	}

	return null;
}