Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Index.php
Go to the documentation of this file.
1 <?php
8 
9 use Magento\Framework\App\Action\HttpGetActionInterface as HttpGetActionInterface;
10 
12 {
17 
25  public function __construct(
26  \Magento\Backend\App\Action\Context $context,
27  \Magento\Config\Model\Config\Structure $configStructure,
28  \Magento\Config\Controller\Adminhtml\System\ConfigSectionChecker $sectionChecker,
29  \Magento\Config\Model\Config $backendConfig,
30  \Magento\Backend\Model\View\Result\ForwardFactory $resultForwardFactory
31  ) {
32  parent::__construct($context, $configStructure, $sectionChecker, $backendConfig);
33  $this->resultForwardFactory = $resultForwardFactory;
34  }
35 
41  public function execute()
42  {
44  $resultForward = $this->resultForwardFactory->create();
45  return $resultForward->forward('edit');
46  }
47 }
__construct(\Magento\Backend\App\Action\Context $context, \Magento\Config\Model\Config\Structure $configStructure, \Magento\Config\Controller\Adminhtml\System\ConfigSectionChecker $sectionChecker, \Magento\Config\Model\Config $backendConfig, \Magento\Backend\Model\View\Result\ForwardFactory $resultForwardFactory)
Definition: Index.php:25