ProcessData.php 544 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Sales\Controller\Adminhtml\Order\Create;
  7. class ProcessData extends \Magento\Sales\Controller\Adminhtml\Order\Create
  8. {
  9. /**
  10. * Process data and display index page
  11. *
  12. * @return \Magento\Backend\Model\View\Result\Forward
  13. */
  14. public function execute()
  15. {
  16. $this->_initSession();
  17. $this->_processData();
  18. return $this->resultForwardFactory->create()->forward('index');
  19. }
  20. }