get_return_url() public method

Get the return url (thank you page).
public get_return_url ( WC_Order $order = null ) : string
$order WC_Order
return string
Exemplo n.º 1
0
 /**
  * Get normal return URL
  * @see https://github.com/woothemes/woocommerce/blob/v2.1.3/includes/abstracts/abstract-wc-payment-gateway.php#L52
  * @return string
  */
 public function get_normal_return_url()
 {
     return $this->gateway->get_return_url($this->order);
 }