LLMS_Payment_Gateways::get_payment_gateways()
Retrieves all registered payment gateways.
Return Return
Source Source
File: includes/class.llms.payment.gateways.php
154 155 156 157 158 159 160 161 162 | public function get_payment_gateways() { $gateways = array (); foreach ( $this ->payment_gateways as $gateway ) { $gateways [ $gateway ->id ] = $gateway ; } return $gateways ; } |
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |