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

	return false;
}