• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/controller/category.php
  • Класс: Bitrix\Crm\Controller\Category
  • Вызов: Category::makeCurrentDefaultCategoryNotDefault
protected function makeCurrentDefaultCategoryNotDefault(Service\Factory $factory): Result
{
	$defaultCategory = $factory->getDefaultCategory();
	if (!$defaultCategory)
	{
		return new Result();
	}

	$defaultCategory->setIsDefault(false);

	return $defaultCategory->save();
}