Abstract_REST_Endpoint::get_return_url( $hash = null )
Gets the Return URL pointing to this on boarding route.
Return
(string)
Source
File: src/Tickets/Commerce/Gateways/Contracts/Abstract_REST_Endpoint.php
public function get_return_url( $hash = null ) {
$arguments = [
'hash' => $hash,
];
return add_query_arg( $arguments, $this->get_route_url() );
}
Changelog
| Version | Description |
|---|---|
| 5.3.0 | moved to Abstract_REST_Endpoint |
| 5.1.9 | Introduced. |