LLMS_Payment_Gateways::get_payment_gateways()
Retrieves all registered payment gateways.
Return Return
Source Source
File: includes/class.llms.payment.gateways.php
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. |