• Модуль: market
  • Путь к файлу: ~/bitrix/modules/market/lib/Controller/Application.php
  • Класс: BitrixMarketControllerApplication
  • Вызов: Application::uninstallAction
public function uninstallAction(string $code, string $clean = 'N', string $from = null): array
{
	if (!Loader::includeModule('rest')) {
		return [
			'error' => 'ERROR_LOADS_MODULE_REST',
			'errorDescription' => Loc::getMessage('MARKET_ERROR_LOADS_MODULE_REST'),
		];
	}

	return BitrixRestMarketplaceApplication::uninstall($code, ($clean === 'Y'), $from);
}