123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?php
- /**
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\OfflineShipping\Controller\Adminhtml\System\Config;
- use Magento\Framework\App\ResponseInterface;
- use Magento\Config\Controller\Adminhtml\System\ConfigSectionChecker;
- use Magento\Framework\App\Filesystem\DirectoryList;
- class ExportTablerates extends \Magento\Config\Controller\Adminhtml\System\AbstractConfig
- {
- /**
- * @var \Magento\Framework\App\Response\Http\FileFactory
- */
- protected $_fileFactory;
- /**
- * @var \Magento\Store\Model\StoreManagerInterface
- */
- protected $_storeManager;
- /**
- * @param \Magento\Backend\App\Action\Context $context
- * @param \Magento\Config\Model\Config\Structure $configStructure
- * @param \Magento\Config\Controller\Adminhtml\System\ConfigSectionChecker $sectionChecker
- * @param \Magento\Framework\App\Response\Http\FileFactory $fileFactory
- * @param \Magento\Store\Model\StoreManagerInterface $storeManager
- */
- public function __construct(
- \Magento\Backend\App\Action\Context $context,
- \Magento\Config\Model\Config\Structure $configStructure,
- ConfigSectionChecker $sectionChecker,
- \Magento\Framework\App\Response\Http\FileFactory $fileFactory,
- \Magento\Store\Model\StoreManagerInterface $storeManager
- ) {
- $this->_storeManager = $storeManager;
- $this->_fileFactory = $fileFactory;
- parent::__construct($context, $configStructure, $sectionChecker);
- }
- /**
- * Export shipping table rates in csv format
- *
- * @return ResponseInterface
- */
- public function execute()
- {
- $fileName = 'tablerates.csv';
- /** @var $gridBlock \Magento\OfflineShipping\Block\Adminhtml\Carrier\Tablerate\Grid */
- $gridBlock = $this->_view->getLayout()->createBlock(
- \Magento\OfflineShipping\Block\Adminhtml\Carrier\Tablerate\Grid::class
- );
- $website = $this->_storeManager->getWebsite($this->getRequest()->getParam('website'));
- if ($this->getRequest()->getParam('conditionName')) {
- $conditionName = $this->getRequest()->getParam('conditionName');
- } else {
- $conditionName = $website->getConfig('carriers/tablerate/condition_name');
- }
- $gridBlock->setWebsiteId($website->getId())->setConditionName($conditionName);
- $content = $gridBlock->getCsvFile();
- return $this->_fileFactory->create($fileName, $content, DirectoryList::VAR_DIR);
- }
- }
|