![]() 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/cartforge.co/app/code/Magefan/Blog/Block/Adminhtml/Import/ |
<?php /** * Copyright © Magefan ([email protected]). All rights reserved. * Please visit Magefan.com for license details (https://magefan.com/end-user-license-agreement). * * Glory to Ukraine! Glory to the heroes! */ namespace Magefan\Blog\Block\Adminhtml\Import; use Magento\Store\Model\ScopeInterface; /** * Form import block */ class Form extends \Magento\Backend\Block\Widget\Form\Container { /** * Initialize form import block * * @return void */ protected function _construct() { $this->_objectId = 'id'; $this->_blockGroup = 'Magefan_Blog'; $this->_controller = 'adminhtml_import'; $this->_mode = 'form'; parent::_construct(); if (!$this->_isAllowedAction('Magefan_Blog::import')) { $this->buttonList->remove('save'); } else { $this->updateButton( 'save', 'label', __('Start Import') ); } $this->buttonList->remove('delete'); } /** * Check permission for passed action * * @param string $resourceId * @return bool */ protected function _isAllowedAction($resourceId) { return $this->_authorization->isAllowed($resourceId); } /** * Get form save URL * * @see getFormActionUrl() * @return string */ public function getSaveUrl() { return $this->getUrl('*/*/run', ['_current' => true]); } }