/**
  * go the express checkout
  */
 public function redirect()
 {
     $this->controller->redirect(Configure::read('Paysafecard.Paysafecard_URL') . Router::querystring(array('cmd' => '_express-checkout')), '302');
 }
 /**
  * Go the express checkout
  *
  * @oparam token $sId from setExpressCheckout
  * @see http://www.moneybookers.com/merchant/de/moneybookers_gateway_manual.pdf
  */
 public function redirect($token)
 {
     $this->controller->redirect($this->_url() . Router::querystring(array('sid' => $token)), '302');
 }
 /**
  * go the express checkout
  * @see https://www.paypal.com/en_US/ebook/PP_NVPAPI_DeveloperGuide/Appx_fieldreference.html#2830886
  */
 public function redirect($token)
 {
     $this->Controller->redirect($this->_url() . Router::querystring(array('cmd' => '_express-checkout', 'token' => $token)), '302');
 }