Category::updateCategory

  1. Bitrix24 API (v. 23.675.0)
  2. crm
  3. Category
  4. updateCategory
  • Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/controller/category.php
  • Класс: Bitrix\Crm\Controller\Category
  • Вызов: Category::updateCategory
protected function updateCategory(Service\Factory $factory, Entity\Category $category, array $fields): ?array
{
	$processResult = $this->processFields($factory, $category, $fields);
	if (!$processResult->isSuccess())
	{
		$this->addErrors($processResult->getErrors());
		return null;
	}

	$saveResult = $category->save();
	if (!$saveResult->isSuccess())
	{
		$this->addErrors($saveResult->getErrors());
		return null;
	}

	return [
		'category' => $category,
	];
}

Добавить комментарий