![]() 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-offline-shipping/Block/Adminhtml/Form/Field/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflineShipping\Block\Adminhtml\Form\Field; /** * Custom import CSV file field for shipping table rates * * @author Magento Core Team <[email protected]> */ class Import extends \Magento\Framework\Data\Form\Element\AbstractElement { /** * @return void */ protected function _construct() { parent::_construct(); $this->setType('file'); } /** * Enter description here... * * @return string */ public function getElementHtml() { $html = ''; $html .= '<input id="time_condition" type="hidden" name="' . $this->getName() . '" value="' . time() . '" />'; $html .= <<<EndHTML <script> require(['prototype'], function(){ Event.observe($('carriers_tablerate_condition_name'), 'change', checkConditionName.bind(this)); function checkConditionName(event) { var conditionNameElement = Event.element(event); if (conditionNameElement && conditionNameElement.id) { $('time_condition').value = '_' + conditionNameElement.value + '/' + Math.random(); } } }); </script> EndHTML; $html .= parent::getElementHtml(); return $html; } }