• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/controller/entitysearchscope.php
  • Класс: Bitrix\Crm\Controller\EntitySearchScope
  • Вызов: EntitySearchScope::isDefined
static function isDefined($typeID)
{
	if(!is_numeric($typeID))
	{
		return false;
	}

	$typeID = intval($typeID);
	return $typeID >= self::DENOMINATION && $typeID <= self::INDEX;
}