BP_Learndash_Integration

Setup the bp learndash class.

Description

Source

File: bp-integrations/learndash/bp-learndash-integration.php

17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
class BP_Learndash_Integration extends BP_Integration {
 
    public function __construct() {
        $this->start(
            'learndash',
            __('LearnDash', 'buddyboss'),
            'learndash',
            [
                'required_plugin' => 'sfwd-lms/sfwd_lms.php',
            ]
        );
    }
 
    /**
     * Register admin setting tab
     *
     * @since BuddyBoss 1.0.0
     */
    public function setup_admin_integration_tab() {
        require_once trailingslashit($this->path) . 'bp-admin-learndash-tab.php';
 
        new BP_Learndash_Admin_Integration_Tab(
            "bp-{$this->id}",
            $this->name,
            [
                'root_path' => $this->path,
                'root_url' => $this->url,
                'required_plugin' => $this->required_plugin,
            ]
        );
    }
 
    /**
     * Load function files
     *
     * @since BuddyBoss 1.0.0
     */
    public function includes($includes = array()) {
        parent::includes([
            'functions',
            'groups-sync/loader.php',
            'core/Core.php',
        ]);
    }
}

Changelog

Changelog
Version Description
BuddyBoss 1.0.0 Introduced.

Methods

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.