• Модуль: crmmobile
  • Путь к файлу: ~/bitrix/modules/crmmobile/lib/Kanban/ControllerStrategy/ListStrategy.php
  • Класс: BitrixCrmMobileKanbanControllerStrategyListStrategy
  • Вызов: ListStrategy::changeCategory
public function changeCategory(array $ids, int $categoryId): Result
{
	$factory = Container::getInstance()->getFactory($this->getEntityTypeId());

	if ($factory && $factory->isCategoriesEnabled())
	{
		return parent::changeCategory($ids, $categoryId);
	}

	throw new Exception('Entity categories not supported or disabled');
}