Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
EditWebsite.php
Go to the documentation of this file.
1 <?php
8 
9 use Magento\Framework\App\Action\HttpGetActionInterface as HttpGetActionInterface;
10 
11 class EditWebsite extends \Magento\Backend\Controller\Adminhtml\System\Store implements HttpGetActionInterface
12 {
16  public function execute()
17  {
18  $this->_coreRegistry->register('store_type', 'website');
20  $resultForward = $this->resultForwardFactory->create();
21  return $resultForward->forward('editStore');
22  }
23 }