LLMS_Settings_Integrations::__construct()

Constructor executes settings tab actions


Source Source

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

30
31
32
33
34
35
36
37
38
39
40
public function __construct() {
 
    $this->id    = 'integrations';
    $this->label = __( 'Integrations', 'lifterlms' );
 
    add_filter( 'lifterlms_settings_tabs_array', array( $this, 'add_settings_page' ), 20 );
    add_action( 'lifterlms_sections_' . $this->id, array( $this, 'output_sections_nav' ) );
    add_action( 'lifterlms_settings_' . $this->id, array( $this, 'output' ) );
    add_action( 'lifterlms_settings_save_' . $this->id, array( $this, 'save' ) );
 
}

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.