LLMS_Order::get_gateway()
Retrieve the payment gateway instance for the order’s selected payment gateway
Description Description
Return Return
(instance) of an LLMS_Gateway
Source Source
File: includes/models/model.llms.order.php
public function get_gateway() { $gateways = LLMS()->payment_gateways(); $gateway = $gateways->get_gateway_by_id( $this->get( 'payment_gateway' ) ); if ( $gateway && ( $gateway->is_enabled() || is_admin() ) ) { return $gateway; } else { return new WP_Error( 'error', sprintf( __( 'Payment gateway %s could not be located or is no longer enabled', 'lifterlms' ), $this->get( 'payment_gateway' ) ) ); } }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
1.0.0 | Introduced. |
User Contributed Notes User Contributed Notes
Permalink: