Rename in more places
This commit is contained in:
@ -45,7 +45,7 @@ abstract class Base_Gateway {
|
||||
* that share the same base code, or that have code that is applicable
|
||||
* to other gateways.
|
||||
*
|
||||
* A classical example is the way Stripe is setup on WP Ultimo now:
|
||||
* A classical example is the way Stripe is setup on WP Multisite WaaS now:
|
||||
* - We have two stripe gateways - stripe and stripe-checkout;
|
||||
* - Both of those gateways inherit from class-base-stripe-gateway.php,
|
||||
* which deals with appending the remote gateway links to the admin panel,
|
||||
@ -313,7 +313,7 @@ abstract class Base_Gateway {
|
||||
* Adds Settings.
|
||||
*
|
||||
* This method allows developers to use
|
||||
* WP Ultimo apis to add settings to the settings
|
||||
* WP Multisite WaaS apis to add settings to the settings
|
||||
* page.
|
||||
*
|
||||
* Gateways can use wu_register_settings_field
|
||||
@ -364,11 +364,11 @@ abstract class Base_Gateway {
|
||||
/**
|
||||
* Declares support for free trials.
|
||||
*
|
||||
* WP Ultimo offers to ways of dealing with free trials:
|
||||
* WP Multisite WaaS offers to ways of dealing with free trials:
|
||||
* (1) By asking for a payment method upfront; or
|
||||
* (2) By not asking for a payment method until the trial is over.
|
||||
*
|
||||
* If you go the second route, WP Ultimo uses
|
||||
* If you go the second route, WP Multisite WaaS uses
|
||||
* the free gateway to deal with the first payment (which will be 0)
|
||||
*
|
||||
* If you go the first route, though, the payment gateway
|
||||
@ -701,8 +701,8 @@ abstract class Base_Gateway {
|
||||
*
|
||||
* @param string $return_url the URL to redirect after process.
|
||||
* @param self $gateway the gateway instance.
|
||||
* @param \WP_Ultimo\Models\Payment $payment the WP Ultimo payment instance.
|
||||
* @param \WP_Ultimo\Checkout\Cart $cart the current WP Ultimo cart order.
|
||||
* @param \WP_Ultimo\Models\Payment $payment the WP Multisite WaaS payment instance.
|
||||
* @param \WP_Ultimo\Checkout\Cart $cart the current WP Multisite WaaS cart order.
|
||||
* @return string
|
||||
*/
|
||||
return apply_filters('wu_return_url', $return_url, $this, $this->payment, $this->order);
|
||||
|
Reference in New Issue
Block a user