• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/Service/Factory/Deal.php
  • Класс: Bitrix\Crm\Service\Factory\Deal
  • Вызов: Deal::checkIfCategoryAvailable
protected function checkIfCategoryAvailable(int $categoryId): bool
{
	if ($categoryId === 0)
	{
		//It's deal default category. Always is available
		return true;
	}

	return \Bitrix\Crm\Category\DealCategory::isEnabled($categoryId);
}