LLMS_Settings_Integrations::__construct()
Constructor executes settings tab actions
Contents
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' ) ); } |
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
1.0.0 | Introduced. |