![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-tax/Controller/Adminhtml/Rate/ |
<?php /** * * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Controller\Adminhtml\Rate; use Magento\Framework\Exception\NoSuchEntityException; use Magento\Framework\Controller\ResultFactory; class AjaxLoad extends \Magento\Tax\Controller\Adminhtml\Rate { /** * Json needed for the Ajax Edit Form * * @return \Magento\Framework\Controller\Result\Json * @throws \InvalidArgumentException */ public function execute() { $rateId = (int)$this->getRequest()->getParam('id'); try { /* @var \Magento\Tax\Api\Data\TaxRateInterface */ $taxRateDataObject = $this->_taxRateRepository->get($rateId); /* @var array */ $resultArray = $this->_taxRateConverter->createArrayFromServiceObject($taxRateDataObject, true); $responseContent = [ 'success' => true, 'error_message' => '', 'result' => $resultArray, ]; } catch (NoSuchEntityException $e) { $responseContent = [ 'success' => false, 'error_message' => $e->getMessage(), ]; } catch (\Exception $e) { $responseContent = [ 'success' => false, 'error_message' => __('An error occurred while loading this tax rate.'), ]; } /** @var \Magento\Framework\Controller\Result\Json $resultJson */ $resultJson = $this->resultFactory->create(ResultFactory::TYPE_JSON); $resultJson->setData($responseContent); return $resultJson; } }