• Модуль: crmmobile
  • Путь к файлу: ~/bitrix/modules/crmmobile/lib/Controller/Action/ChangeCategoryAction.php
  • Класс: BitrixCrmMobileControllerActionChangeCategoryAction
  • Вызов: ChangeCategoryAction::run
public function run(array $ids, string $entityType, int $categoryId)
{
	$this->checkModules();
	if ($this->hasErrors())
	{
		return $this->showErrors();
	}

	$result = $this->change($ids, $entityType, $categoryId);
	if (!$result->isSuccess())
	{
		$errors = $this->markErrorsAsPublic($result->getErrors());
		$this->addErrors($errors);
	}
}