CCrmOwnerType::isCorrectEntityTypeId

  1. Bitrix24 API (v. 23.675.0)
  2. crm
  3. CCrmOwnerType
  4. isCorrectEntityTypeId
  • Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/classes/general/crm_owner_type.php
  • Класс: \CCrmOwnerType
  • Вызов: CCrmOwnerType::isCorrectEntityTypeId
static function isCorrectEntityTypeId(int $entityTypeId): bool
{
	return (
		$entityTypeId === self::System
		|| (
			$entityTypeId >= self::FirstOwnerType
			&& $entityTypeId <= self::LastOwnerType
		)
		|| static::isPossibleDynamicTypeId($entityTypeId)
		|| static::isPossibleSuspendedDynamicTypeId($entityTypeId)
	);
}

Добавить комментарий