• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/Service/Factory.php
  • Класс: Bitrix\Crm\Service\Factory
  • Вызов: Factory::isCategoryAvailable
public function isCategoryAvailable(int $categoryId): bool
{
	if (!$this->isCategoriesSupported())
	{
		return false;
	}

	if (!$this->isCategoryExists($categoryId))
	{
		return false;
	}

	return $this->checkIfCategoryAvailable($categoryId);
}