• Модуль: crmmobile
  • Путь к файлу: ~/bitrix/modules/crmmobile/lib/Controller/Category.php
  • Класс: BitrixCrmMobileControllerCategory
  • Вызов: Category::getCategoryFromFactory
private function getCategoryFromFactory(Factory $factory, int $categoryId): ?CrmCategoryEntityCategory
{
	$category = $factory->getCategory($categoryId);
	if ($category)
	{
		return $category;
	}

	$this->addError(ErrorCode::getNotFoundError());

	return null;
}