LLMS_Settings_Engagements::get_settings()
Get settings array
Return Return
(array)
Source Source
File: includes/admin/settings/class.llms.settings.engagements.php
public function get_settings() { /** * Modify LifterLMS Admin Settings on the "Engagements" tab, * * @since 1.0.0 * * @param array[] $settings Array of settings fields arrays. */ return apply_filters( 'lifterlms_engagements_settings', array_merge( $this->get_settings_group_email(), $this->get_settings_group_email_delivery(), $this->get_settings_group_achievements(), $this->get_settings_group_certs() ) ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
6.0.0 | Include achievements section. |
3.8.0 | Unknown. |
3.40.0 | Include an email delivery section. |
3.37.3 | Refactor to pull each settings group from its own method. |
1.0.0 | Introduced. |