LLMS_Settings_Checkout::__construct()
Constructor executes settings tab actions
Contents
Source Source
File: includes/admin/settings/class.llms.settings.checkout.php
public function __construct() { $this->id = 'checkout'; $this->label = __( 'Checkout', '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 |
---|---|
3.0.4 | Introduced. |