• Модуль: catalogmobile
  • Путь к файлу: ~/bitrix/modules/catalogmobile/lib/Controller/ProductWizard.php
  • Класс: BitrixCatalogMobileControllerProductWizard
  • Вызов: ProductWizard::configAction
public function configAction(string $wizardType): array
{
	if (!$this->accessController->check(ActionDictionary::ACTION_CATALOG_READ))
	{
		$this->addError(new Error(Loc::getMessage('MOBILE_CONTROLLER_CATALOG_PRODUCT_WIZARD_ACCESS_DENIED')));
		return [];
	}

	return (new ConfigQuery($wizardType))->execute();
}