LLMS_Payment_Gateways::get_payment_gateways()
Get all registered payment gateways
Description Description
Return Return
(array)
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