LLMS_Settings_Page::__construct()
Constructor.
Return Return
(void)
Source Source
File: includes/admin/settings/class.llms.settings.page.php
public function __construct() {
$this->label = $this->set_label();
add_filter( 'lifterlms_settings_tabs_array', array( $this, 'add_settings_page' ), $this->tab_priority );
if ( $this->id ) {
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 |
|---|---|
| 3.37.3 | Introduced. |