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;
11 
15 class Index extends \Magento\Backend\Controller\Adminhtml\System\Store implements HttpGetActionInterface
16 {
22  public function execute()
23  {
25  $resultPage = $this->resultFactory->create(ResultFactory::TYPE_PAGE);
26  $resultPage->setActiveMenu('Magento_Backend::system_store');
27  $resultPage->addBreadcrumb(__('Stores'), __('Stores'));
28  $resultPage->addBreadcrumb(__('All Stores'), __('All Stores'));
29  $resultPage->getConfig()->getTitle()->prepend(__('Stores'));
30  return $resultPage;
31  }
32 }
__()
Definition: __.php:13