• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/order/matcher/entitymatchmanager.php
  • Класс: Bitrix\Crm\Order\Matcher\EntityMatchManager
  • Вызов: EntityMatchManager::checkEntityType
protected function checkEntityType($property)
{
	if (isset($property['CRM_ENTITY_TYPE']) && \CCrmOwnerType::IsEntity($property['CRM_ENTITY_TYPE']))
	{
		$entityType = (int)$property['CRM_ENTITY_TYPE'];
	}
	else
	{
		$entityType = \CCrmOwnerType::Undefined;
	}

	return $entityType;
}