Tribe__Events__Community__Tickets__Gateway__PayPal::get_payment_url()

returns the appropriate Payment url based on whether or not sandbox is enabled


Source

File: src/Tribe/Gateway/PayPal.php

	public function get_payment_url() {
		if ( $this->sandbox ) {
			return $this->payment_sandbox_url;
		}

		return $this->payment_prod_url;
	}//end get_payment_url