LLMS_Settings_Integrations::get_settings()

Get settings array


Return Return

(array)


Top ↑

Source Source

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

110
111
112
113
114
115
116
117
118
119
120
121
122
public function get_settings() {
 
    $curr_section = $this->get_current_section();
 
    if ( 'main' === $curr_section ) {
 
        return apply_filters( 'lifterlms_integrations_settings', $this->get_default_settings() );
 
    }
 
    return apply_filters( 'lifterlms_integrations_settings_' . $curr_section, array() );
 
}


Top ↑

Changelog Changelog

Changelog
Version Description
1.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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