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

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