PluginProbe
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses / 4.4.8
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses v4.4.8
4.4.8 4.4.7 4.4.6 4.4.5 4.4.4 4.4.3 4.4.2 4.4.1 4.4.0 4.3.9.1 4.3.9 4.3.8 4.3.7 4.1.6.9 4.1.6.9.1 4.1.6.9.2 4.1.6.9.3 4.1.6.9.4 4.1.7 4.1.7.1 4.1.7.2 4.1.7.3 4.1.7.3.1 4.1.7.3.2 4.2.0 All 139 releases
← All changes | inc/admin/settings/class-lp-settings-profile.php +3 -1 4.2.04.4.8 View file →
@@ -7,8 +7,10 @@
7 7 * @package LearnPress/Admin/Classes/Settings
8 8 * @version 1.0
9 9 */
10 10
11 +use LearnPress\Helpers\Config;
12 +
11 13 defined( 'ABSPATH' ) || exit;
12 14
13 15 if ( class_exists( 'LP_Settings_Profile', false ) ) {
14 16 return new LP_Settings_Profile();
@@ -32,9 +34,9 @@
32 34 *
33 35 * @return array
34 36 */
35 37 public function get_settings( $section = null, $tab = null ) {
36 - return require_once LP_PLUGIN_PATH . 'config/settings/profile.php';
38 + return Config::instance()->get( 'profile', 'settings' );
37 39 }
38 40 }
39 41
40 42 return new LP_Settings_Profile();