![]() 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-ui/Component/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Ui\Component; use Magento\Framework\View\Element\UiComponent\ContextInterface; use Magento\Framework\UrlInterface; /** * Class ExportButton */ class ExportButton extends AbstractComponent { /** * Component name */ const NAME = 'exportButton'; /** * @var \Magento\Framework\UrlInterface */ protected $urlBuilder; /** * @param ContextInterface $context * @param UrlInterface $urlBuilder * @param array $components * @param array $data */ public function __construct( ContextInterface $context, UrlInterface $urlBuilder, array $components = [], array $data = [] ) { parent::__construct($context, $components, $data); $this->urlBuilder = $urlBuilder; } /** * Get component name * * @return string */ public function getComponentName() { return static::NAME; } /** * @return void */ public function prepare() { $context = $this->getContext(); $config = $this->getData('config'); if (isset($config['options'])) { $options = []; foreach ($config['options'] as $option) { $additionalParams = $this->getAdditionalParams($config, $context); $option['url'] = $this->urlBuilder->getUrl($option['url'], $additionalParams); $options[] = $option; } $config['options'] = $options; $this->setData('config', $config); } parent::prepare(); } /** * Get export button additional parameters * * @param array $config * @param ContextInterface $context * @return array */ protected function getAdditionalParams($config, $context) { $additionalParams = []; if (isset($config['additionalParams'])) { foreach ($config['additionalParams'] as $paramName => $paramValue) { if ('*' == $paramValue) { $paramValue = $context->getRequestParam($paramName); } $additionalParams[$paramName] = $paramValue; } } return $additionalParams; } }