![]() 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/mageworx/module-seoredirects/Ui/Component/ |
<?php /** * Copyright © MageWorx. All rights reserved. * See LICENSE.txt for license details. */ namespace MageWorx\SeoRedirects\Ui\Component; /** * Class ExportButton */ class ExportButton extends \Magento\Ui\Component\ExportButton { /** * @return void */ public function prepare() { parent::prepare(); $config = $config = $this->getData('config'); if (isset($config['options'])) { $options = []; foreach ($config['options'] as $option) { // Only CSV format is possible if ($option['value'] !== 'csv') { continue; } $options[] = $option; } $config['options'] = $options; $this->setData('config', $config); } } }