コード例 #1
0
ファイル: Proxy.php プロジェクト: Nosto/nosto-magento2
 /**
  * Action that acts as a proxy to the account/index page, when the frontend
  * oauth controller redirects the admin user back to the backend after
  * finishing the oauth authorization cycle.
  * This is a workaround as you cannot redirect directly to a protected
  * action in the backend end from the front end. The action also handles
  * passing along any error/success messages.
  * @return Redirect
  */
 public function execute()
 {
     $type = $this->_request->getParam('message_type');
     $code = $this->_request->getParam('message_code');
     $text = $this->_request->getParam('message_text');
     if (!is_null($type) && !is_null($code)) {
         $this->_backendAuthSession->setData('nosto_message', ['message_type' => $type, 'message_code' => $code, 'message_text' => $text]);
     }
     if (($storeId = (int) $this->_request->getParam('store')) !== 0) {
         return $this->resultRedirectFactory->create()->setPath('*/*/index', ['store' => $storeId]);
     } else {
         return $this->resultRedirectFactory->create()->setPath('*/*/index', []);
     }
 }