sfwd_lms.php
3.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<?php
/**
* Plugin Name: LearnDash LMS
* Plugin URI: http://www.learndash.com
* Description: LearnDash LMS Plugin - Turn your WordPress site into a learning management system.
* Version: 4.5.2.1
* Author: LearnDash
* Author URI: http://www.learndash.com
* Text Domain: learndash
* Domain Path: /languages/
*
* @since 2.1.0
*
* @package LearnDash
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
require_once plugin_dir_path( __FILE__ ) . 'vendor/autoload.php';
require_once plugin_dir_path( __FILE__ ) . 'vendor-prefixed/autoload.php';
use LearnDash\Core\Container;
use StellarWP\Learndash\StellarWP\Telemetry\Config;
use StellarWP\Learndash\StellarWP\Telemetry\Core as Telemetry;
use StellarWP\Learndash\StellarWP\DB\DB;
// CONSTANTS.
/**
* Define LearnDash LMS - Set the current version constant.
*
* @since 2.1.0
*
* @internal Will be set by LearnDash LMS. Semantic versioning is used.
*/
define( 'LEARNDASH_VERSION', '4.5.2.1' );
if ( ! defined( 'LEARNDASH_LMS_PLUGIN_DIR' ) ) {
/**
* Define LearnDash LMS - Set the plugin install path.
*
* Will be set based on the WordPress define `WP_PLUGIN_DIR`.
*
* @since 2.1.4
* @uses WP_PLUGIN_DIR
*
* Directory path to plugin install directory.
*/
define( 'LEARNDASH_LMS_PLUGIN_DIR', trailingslashit( str_replace( '\\', '/', WP_PLUGIN_DIR ) . '/' . basename( dirname( __FILE__ ) ) ) );
}
if ( ! defined( 'LEARNDASH_LMS_PLUGIN_URL' ) ) {
$learndash_plugin_url = trailingslashit( WP_PLUGIN_URL . '/' . basename( dirname( __FILE__ ) ) );
$learndash_plugin_url = str_replace( array( 'https://', 'http://' ), array( '//', '//' ), $learndash_plugin_url );
/**
* Define LearnDash LMS - Set the plugin relative URL.
*
* Will be set based on the WordPress define `WP_PLUGIN_URL`.
*
* @since 2.1.4
* @uses WP_PLUGIN_URL
*
* URL to plugin install directory.
*/
define( 'LEARNDASH_LMS_PLUGIN_URL', $learndash_plugin_url );
}
if ( ! defined( 'LEARNDASH_LMS_PLUGIN_KEY' ) ) {
$learndash_plugin_dir = LEARNDASH_LMS_PLUGIN_DIR;
$learndash_plugin_dir = basename( $learndash_plugin_dir ) . '/' . basename( __FILE__ );
/**
* Define LearnDash LMS - Set the plugin key.
*
* This define is the plugin directory and filename.
* directory.
*
* @since 2.3.1
*
* Default value is `sfwd-lms/sfwd_lms.php`.
*/
define( 'LEARNDASH_LMS_PLUGIN_KEY', $learndash_plugin_dir );
}
// Defining other scalar constants.
require_once __DIR__ . '/learndash-scalar-constants.php';
/**
* Configures packages.
*
* @since 4.5.0
*/
add_action(
'plugins_loaded',
function () {
// Telemetry.
$telemetry_server_url = defined( 'LEARNDASH_TELEMETRY_URL' ) && ! empty( LEARNDASH_TELEMETRY_URL )
? LEARNDASH_TELEMETRY_URL
: 'https://telemetry.stellarwp.com/api/v1';
Config::set_container( new Container() );
Config::set_server_url( $telemetry_server_url );
Config::set_hook_prefix( 'learndash' );
Config::set_stellar_slug( 'learndash' );
Telemetry::instance()->init( __FILE__ );
// DB.
DB::init();
},
0
);
/**
* Action Scheduler
*/
add_action(
'plugins_loaded',
static function () {
require_once __DIR__ . '/includes/lib/action-scheduler/action-scheduler.php';
},
-10
);
add_action(
'plugins_loaded',
static function() {
require_once __DIR__ . '/learndash-includes.php';
require_once __DIR__ . '/learndash-constants.php';
require_once __DIR__ . '/learndash-globals.php';
},
0
);
// Activation and deactivation hooks.
register_activation_hook(
__FILE__,
function () {
// Save a flag in the DB to allow later activation tasks (legacy stuff).
update_option( 'learndash_activation', true );
}
);
register_deactivation_hook( __FILE__, 'learndash_deactivated' );
/**
* Deactivate LearnDash LMS.
*
* @since 4.5.0
*
* @return void
*/
function learndash_deactivated() {
if ( ! current_user_can( 'activate_plugins' ) ) {
return;
}
/**
* Fires on LearnDash plugin deactivation.
*
* @since 2.1.0
*/
do_action( 'learndash_deactivated' );
}