LLMS_Settings_General::__construct()
Constructor
Contents
Description Description
executes settings tab actions
Source Source
File: includes/admin/settings/class.llms.settings.general.php
public function __construct() { $this->id = 'general'; $this->label = __( 'General', 'lifterlms' ); add_filter( 'lifterlms_settings_tabs_array', array( $this, 'add_settings_page' ), 20 ); 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