LLMS_Settings_Checkout::get_settings()

Get settings array


Return Return

(array)


Top ↑

Source Source

File: includes/admin/settings/class.llms.settings.checkout.php

141
142
143
144
145
146
147
148
149
150
151
152
153
public function get_settings() {
 
    $curr_section = $this->get_current_section();
 
    if ( 'main' === $curr_section ) {
 
        return apply_filters( 'lifterlms_checkout_settings', $this->get_settings_default() );
 
    }
 
    return apply_filters( 'lifterlms_gateway_settings_' . $curr_section, $this->get_settings_gateway( $curr_section ) );
 
}


Top ↑

Changelog Changelog

Changelog
Version Description
3.0.4 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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