_checkoutSession = $checkoutSession; parent::__construct($context, $data); $this->_isScopePrivate = true; } /** * @return mixed */ public function getRealOrderId() { return $this->_checkoutSession->getLastRealOrderId(); } /** * Payment custom error message * * @return string */ public function getErrorMessage() { $error = $this->_checkoutSession->getErrorMessage(); return $error; } /** * Continue shopping URL * * @return string */ public function getContinueShoppingUrl() { return $this->getUrl('checkout/cart'); } }