• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/entitypreset.php
  • Класс: Bitrix\Crm\EntityPreset
  • Вызов: EntityPreset::checkEntityType
static function checkEntityType($entityTypeId)
{
	if(!is_numeric($entityTypeId))
		return false;

	$entityTypeId = intval($entityTypeId);

	return $entityTypeId >= self::FirstEntityType && $entityTypeId <= self::LastEntityType;
}