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

	$typeID = intval($typeID);
	return $typeID >= self::ALL && $typeID <= self::JUNK;
}