LLMS_Payment_Gateways::get_payment_gateways()

Retrieves all registered payment gateways.


Return Return

(LLMS_Payment_Gateway[])


Top ↑

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;
 
}


Top ↑

Changelog Changelog

Changelog
Version Description
3.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.