• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/entityrequisite.php
  • Класс: Bitrix\Crm\EntityRequisite
  • Вызов: EntityRequisite::checkEntityType
static function checkEntityType($entityTypeId)
{
	$entityTypeId = intval($entityTypeId);

	if ($entityTypeId !== CCrmOwnerType::Company && $entityTypeId !== CCrmOwnerType::Contact)
		return false;

	return true;
}