LLMS_Payment_Gateways::__construct()

Constructor.


Return Return

(void)


Top ↑

Source Source

File: includes/class.llms.payment.gateways.php

39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
public function __construct() {
 
    add_filter( 'lifterlms_payment_gateways', array( $this, 'add_core_gateways' ) );
 
    /**
     * Filters the list of registered LifterLMS Payment Gateway classes.
     *
     * @since 3.0.0
     *
     * @param string[] $gateways Array of payment gateway class names.
     */
    $gateways = apply_filters( 'lifterlms_payment_gateways', $this->payment_gateways );
 
    foreach ( $gateways as $gateway ) {
 
        $load_gateway = new $gateway();
 
        $order = absint( $load_gateway->get_display_order() );
 
        // If the order already exists create a new order for it.
        if ( isset( $this->payment_gateways[ $order ] ) ) {
            $order = max( array_keys( $this->payment_gateways ) ) + 1;
        }
 
        $this->payment_gateways[ $order ] = $load_gateway;
    }
 
    ksort( $this->payment_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.