* @copyright PayPal * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ /** * Manage errors. */ class PaypalErrorModuleFrontController extends ModuleFrontController { /** * @see ModuleFrontController::init() */ public function init() { parent::init(); $this->values['error_msg'] = Tools::getvalue('error_msg'); $this->values['msg_long'] = Tools::getvalue('msg_long'); $this->values['error_code'] = Tools::getvalue('error_code'); $this->values['no_retry'] = Tools::getvalue('no_retry'); } /** * @see FrontController::initContent() */ public function initContent() { parent::initContent(); Context::getContext()->smarty->assign(array( 'error_msg' => $this->values['error_msg'], 'msg_long' => $this->values['msg_long'], 'error_code' => $this->values['error_code'], 'show_retry' => (Context::getContext()->cart->nbProducts() > 0 && !$this->values['no_retry']) ? true : false, )); $this->setTemplate('module:paypal/views/templates/front/payment_error.tpl'); } }