WC_Payment_Gateway::get_transaction_url()publicWC 1.0

Get a link to the transaction on the 3rd party gateway site (if applicable).

Метод класса: WC_Payment_Gateway{}

Хуки из метода

Возвращает

Строку. transaction URL, or empty string.

Использование

$WC_Payment_Gateway = new WC_Payment_Gateway();
$WC_Payment_Gateway->get_transaction_url( $order );
$order(WC_Order) (обязательный)
the order object.

Код WC_Payment_Gateway::get_transaction_url() WC 8.7.0

public function get_transaction_url( $order ) {

	$return_url     = '';
	$transaction_id = $order->get_transaction_id();

	if ( ! empty( $this->view_transaction_url ) && ! empty( $transaction_id ) ) {
		$return_url = sprintf( $this->view_transaction_url, $transaction_id );
	}

	return apply_filters( 'woocommerce_get_transaction_url', $return_url, $order, $this );
}