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
7 
8 use Magento\Framework\App\Action\HttpGetActionInterface as HttpGetActionInterface;
9 
10 class Index extends \Magento\Sales\Controller\Adminhtml\Order\Create implements HttpGetActionInterface
11 {
17  public function execute()
18  {
19  $this->_initSession();
20 
22  $resultPage = $this->resultPageFactory->create();
23  $resultPage->setActiveMenu('Magento_Sales::sales_order');
24  $resultPage->getConfig()->getTitle()->prepend(__('Orders'));
25  $resultPage->getConfig()->getTitle()->prepend(__('New Order'));
26  return $resultPage;
27  }
28 }
__()
Definition: __.php:13