-
Notifications
You must be signed in to change notification settings - Fork 135
/
class-lifterlms.php
603 lines (546 loc) · 15.5 KB
/
class-lifterlms.php
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
<?php
/**
* Main LifterLMS class
*
* @package LifterLMS/Main
*
* @since 1.0.0
* @version 7.2.0
*/
defined( 'ABSPATH' ) || exit;
/**
* Main LifterLMS Class
*
* @since 1.0.0
* @since 3.32.0 Update action-scheduler to latest version; load staging class on the admin panel.
* @since 3.34.0 Include the LLMS_Admin_Users_Table class.
* @since 3.36.0 Added events classes and methods.
* @since 3.36.1 Include SendWP Connector.
* @since 3.37.0 Move theme support methods to LLMS_Theme_Support.
* @since 3.38.1 Include LLMS_Mime_Type_Extractor class.
* @since 4.0.0 Update session management.
* Remove deprecated class files and variables.
* Move includes (file loading) into the LLMS_Loader class.
* @since 5.3.0 Replace singleton code with `LLMS_Trait_Singleton`.
*/
final class LifterLMS {
use LLMS_Trait_Singleton;
/**
* LifterLMS Plugin Version.
*
* @var string
*/
public $version = '7.8.3';
/**
* LLMS_Assets instance
*
* @var LLMS_Assets
*/
public $assets = null;
/**
* LLMS_Query instance
*
* @var LLMS_Query
*/
public $query = null;
/**
* Session instance
*
* @var LLMS_Session
*/
public $session = null;
/**
* LifterLMS Constructor.
*
* @since 1.0.0
* @since 3.21.1 Unknown
* @since 4.0.0 Load `$this->session` at `plugins_loaded` in favor of during class construction.
* Remove deprecated `__autoload()` & initialize new file loader class.
* @since 4.13.0 Check site duplicate status on `admin_init`.
* @since 5.3.0 Move the loading of the LifterLMS autoloader to the main `lifterlms.php` file.
* @since 6.1.0 Automatically load payment gateways.
* @since 6.4.0 Moved registration of `LLMS_Shortcodes::init()` with the 'init' hook to `LLMS_Shortcodes::__construct()`.
* @since 7.6.0 Lood locale textdomain on `init` instead of immediately
*
* @return void
*/
private function __construct() {
$this->define_constants();
$this->init_assets();
$this->query = new LLMS_Query();
// Hooks.
add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), array( $this, 'add_action_links' ), 10, 1 );
add_action( 'init', array( $this, 'localize' ), 0 );
add_action( 'init', array( $this, 'init' ), 0 );
add_action( 'init', array( $this, 'integrations' ), 1 );
add_action( 'init', array( $this, 'processors' ), 5 );
add_action( 'init', array( $this, 'events' ), 5 );
add_action( 'init', array( $this, 'init_session' ), 6 ); // After table installation which happens at init 5.
add_action( 'init', array( $this, 'payment_gateways' ) );
add_action( 'init', array( $this, 'include_template_functions' ) );
add_action( 'admin_init', array( 'LLMS_Site', 'check_status' ) );
// Tracking.
if ( defined( 'DOING_CRON' ) && DOING_CRON && 'yes' === get_option( 'llms_allow_tracking', 'no' ) ) {
LLMS_Tracker::init();
}
/**
* Action fired after LifterLMS is fully loaded.
*
* @since Unknown
*/
do_action( 'lifterlms_loaded' );
}
/**
* Define LifterLMS Constants
*
* @since 1.0.0
* @since 3.17.8 Added `LLMS_PLUGIN_URL` && `LLMS_ASSETS_SUFFIX`.
* @since 4.0.0 Moved definitions of `LLMS_PLUGIN_FILE` and `LLMS_PLUGIN_DIR` to the main `lifterlms.php` file.
* Use `llms_maybe_define_constant()` to reduce code complexity.
* @since 7.2.0 Added `LLMS_ASSETS_VERSION` constant.
* @since 7.7.0 Added `LLMS_ALLOWED_HTML_PRICES` constant.
*
* @return void
*/
private function define_constants() {
llms_maybe_define_constant( 'LLMS_VERSION', $this->version );
llms_maybe_define_constant( 'LLMS_TEMPLATE_PATH', $this->template_path() );
llms_maybe_define_constant( 'LLMS_PLUGIN_URL', plugin_dir_url( LLMS_PLUGIN_FILE ) );
$upload_dir = wp_upload_dir();
llms_maybe_define_constant( 'LLMS_LOG_DIR', $upload_dir['basedir'] . '/llms-logs/' );
llms_maybe_define_constant( 'LLMS_TMP_DIR', $upload_dir['basedir'] . '/llms-tmp/' );
// If we're loading in debug mode.
$script_debug = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG;
$wp_debug = defined( 'WP_DEBUG' ) && WP_DEBUG;
// If debugging, load the unminified version otherwise load minified.
if ( ! defined( 'LLMS_ASSETS_SUFFIX' ) ) {
define( 'LLMS_ASSETS_SUFFIX', $script_debug ? '' : '.min' );
}
// If debugging, use time for asset version otherwise use plugin version.
if ( ! defined( 'LLMS_ASSETS_VERSION' ) ) {
define( 'LLMS_ASSETS_VERSION', ( $script_debug || $wp_debug ) ? time() : $this->version );
}
$allowed_atts = array(
'label' => true,
'align' => true,
'checked' => true,
'border' => true,
'decoding' => true,
'disabled' => true,
'required' => true,
'allowfullscreen' => true,
'allow' => true,
'frameborder' => true,
'class' => true,
'type' => true,
'id' => true,
'dir' => true,
'lang' => true,
'style' => true,
'xml:lang' => true,
'src' => true,
'alt' => true,
'href' => true,
'rel' => true,
'rev' => true,
'onclick' => true,
'target' => true,
'novalidate' => true,
'value' => true,
'name' => true,
'tabindex' => true,
'action' => true,
'method' => true,
'for' => true,
'width' => true,
'height' => true,
'data-*' => true,
'aria-live' => true,
'aria-hidden' => true,
'aria-*' => true,
'title' => true,
'placeholder' => true,
'readonly' => true,
'rows' => true,
'cols' => true,
'minlength' => true,
'maxlength' => true,
'pattern' => true,
'enctype' => true,
'role' => true,
'selected' => true,
'srcset' => true,
'accept' => true,
'accept-charset' => true,
'accesskey' => true,
'autocomplete' => true,
'autofocus' => true,
'colspan' => true,
'contenteditable' => true,
'contextmenu' => true,
'controls' => true,
'coords' => true,
'datetime' => true,
'dirname' => true,
'download' => true,
'draggable' => true,
'dropzone' => true,
'form' => true,
'formaction' => true,
'formenctype' => true,
'formmethod' => true,
'formnovalidate' => true,
'formtarget' => true,
'headers' => true,
'hidden' => true,
'high' => true,
'hreflang' => true,
'http-equiv' => true,
'ismap' => true,
'list' => true,
'loop' => true,
'low' => true,
'max' => true,
'media' => true,
'min' => true,
'multiple' => true,
'muted' => true,
'open' => true,
'optimum' => true,
'poster' => true,
'preload' => true,
'reversed' => true,
'rowspan' => true,
'scope' => true,
'shape' => true,
'size' => true,
'span' => true,
'spellcheck' => true,
'srcdoc' => true,
'srclang' => true,
'start' => true,
'step' => true,
'translate' => true,
'usemap' => true,
'wrap' => true,
'ping' => true,
'referrerpolicy' => true,
'sandbox' => true,
'sizes' => true,
);
// For use in escaping and sanitizing.
llms_maybe_define_constant(
'LLMS_ALLOWED_HTML_PRICES',
array(
'div' => $allowed_atts,
'span' => $allowed_atts,
'strong' => $allowed_atts,
'sup' => $allowed_atts,
'del' => $allowed_atts,
'ins' => $allowed_atts,
'em' => $allowed_atts,
'bdi' => $allowed_atts,
)
);
llms_maybe_define_constant(
'LLMS_ALLOWED_HTML_FORM_FIELDS',
array(
'a' => $allowed_atts,
'abbr' => $allowed_atts,
'acronym' => $allowed_atts,
'article' => $allowed_atts,
'b' => $allowed_atts,
'bdo' => $allowed_atts,
'bdi' => $allowed_atts,
'blockquote' => $allowed_atts,
'br' => $allowed_atts,
'cite' => $allowed_atts,
'code' => $allowed_atts,
'del' => $allowed_atts,
'dfn' => $allowed_atts,
'em' => $allowed_atts,
'hr' => $allowed_atts,
'ins' => $allowed_atts,
'kbd' => $allowed_atts,
'q' => $allowed_atts,
's' => $allowed_atts,
'iframe' => $allowed_atts,
'header' => $allowed_atts,
'footer' => $allowed_atts,
'strike' => $allowed_atts,
'strong' => $allowed_atts,
'sub' => $allowed_atts,
'sup' => $allowed_atts,
'ul' => $allowed_atts,
'ol' => $allowed_atts,
'li' => $allowed_atts,
'p' => $allowed_atts,
'pre' => $allowed_atts,
'address' => $allowed_atts,
'aside' => $allowed_atts,
'nav' => $allowed_atts,
'form' => $allowed_atts,
'input' => $allowed_atts,
'textarea' => $allowed_atts,
'button' => $allowed_atts,
'select' => $allowed_atts,
'option' => $allowed_atts,
'checkbox' => $allowed_atts,
'radio' => $allowed_atts,
'optgroup' => $allowed_atts,
'div' => $allowed_atts,
'label' => $allowed_atts,
'span' => $allowed_atts,
'img' => $allowed_atts,
'i' => $allowed_atts,
'h1' => $allowed_atts,
'h2' => $allowed_atts,
'h3' => $allowed_atts,
'h4' => $allowed_atts,
'h5' => $allowed_atts,
'h6' => $allowed_atts,
'section' => $allowed_atts,
'fieldset' => $allowed_atts,
'legend' => $allowed_atts,
'datalist' => $allowed_atts,
'output' => $allowed_atts,
'progress' => $allowed_atts,
'meter' => $allowed_atts,
)
);
}
/**
* Load Hooks
*
* @since Unknown
*
* @return void
*/
public function include_template_functions() {
include_once 'includes/llms.template.functions.php';
}
/**
* Init LifterLMS when WordPress Initialises.
*
* @since 1.0.0
* @since 3.21.1 Unknown.
* @since 4.0.0 Don't initialize removed `LLMS_Person()` class.
* @since 4.12.0 Check site staging/duplicate status & trigger associated actions.
* @since 4.13.0 Remove site staging/duplicate check and run only on `admin_init`.
* @since 5.8.0 Initialize block templates.
* @since 7.7.0 Initialize Elementor migration.
*
* @return void
*/
public function init() {
do_action( 'before_lifterlms_init' );
$this->block_templates();
$this->engagements();
$this->notifications();
( new LLMS_Media_Protector() )->register_callbacks();
include_once 'includes/class-llms-elementor-migrate.php';
do_action( 'lifterlms_init' );
}
/**
* Initialize the core asset handler class.
*
* @since 4.4.0
*
* @return LLMS_Assets
*/
private function init_assets() {
$this->assets = new LLMS_Assets( 'llms-core' );
$this->assets->define( 'scripts', require LLMS_PLUGIN_DIR . 'includes/assets/llms-assets-scripts.php' );
$this->assets->define( 'styles', require LLMS_PLUGIN_DIR . 'includes/assets/llms-assets-styles.php' );
return $this->assets;
}
/**
* Initializes an LLMS_Session() into the $session variable
*
* @since 4.0.0
*
* @return LLMS_Session
*/
public function init_session() {
if ( is_null( $this->session ) ) {
$this->session = new LLMS_Session();
}
return $this->session;
}
/**
* Get the plugin url.
*
* @return string
*/
public function plugin_url() {
return untrailingslashit( plugins_url( '/', __FILE__ ) );
}
/**
* Get the plugin path.
*
* @return string
*/
public function plugin_path() {
return untrailingslashit( plugin_dir_path( __FILE__ ) );
}
/**
* Get the template path.
*
* @return string
*/
public function template_path() {
return apply_filters( 'llms_template_path', 'lifterlms/' );
}
/**
* Retrieve the LLMS_Emails singleton.
*
* @since Unknown
*
* @return LLMS_Emails
*/
public function mailer() {
return LLMS_Emails::instance();
}
/**
* Retrieve the LLMS_Achievements singleton.
*
* @since Unknown
*
* @return LLMS_Achievements
*/
public function achievements() {
return LLMS_Achievements::instance();
}
/**
* Retrieve the LLMS_Certificates singleton.
*
* @since Unknown
*
* @return LLMS_Certificates
*/
public function certificates() {
return LLMS_Certificates::instance();
}
/**
* Retrieve the LLMS_Engagements singleton.
*
* @since Unknown
*
* @return LLMS_Engagements
*/
public function engagements() {
return LLMS_Engagements::instance();
}
/**
* Block templates instance.
*
* @since 5.8.0
*
* @return LLMS_Block_Templates
*/
public function block_templates() {
return LLMS_Block_Templates::instance();
}
/**
* Events instance.
*
* @since 3.36.0
*
* @return LLMS_Events
*/
public function events() {
return LLMS_Events::instance();
}
/**
* Grading instance
*
* @since 3.24.0
*
* @return LLMS_Grades
*/
public function grades() {
return LLMS_Grades::instance();
}
/**
* Get integrations
*
* @return LLMS_Integrations instance
*/
public function integrations() {
return LLMS_Integrations::instance();
}
/**
* Retrieve an instance of the notifications class
*
* @return LLMS_Notifications
* @since 3.8.0
* @version 3.8.0
*/
public function notifications() {
return LLMS_Notifications::instance();
}
/**
* Get payment gateways.
*
* @return LLMS_Payment_Gateways
*/
public function payment_gateways() {
return LLMS_Payment_Gateways::instance();
}
/**
* Load all background processors.
*
* @since 3.15.0
*
* @return LLMS_Processors
*/
public function processors() {
return LLMS_Processors::instance();
}
/**
* Add plugin settings Action Links
*
* @since Unknown
*
* @param string[] $links Existing action links.
* @return string[]
*/
public function add_action_links( $links ) {
$lifter_links = array(
'<a href="' . admin_url( 'admin.php?page=llms-settings' ) . '">' . __( 'Settings', 'lifterlms' ) . '</a>',
);
if ( 3 === count( $links ) ) {
return $links;
}
return array_merge( $links, $lifter_links );
}
/**
* Localize the plugin
*
* Language files can be found in the following locations (The first loaded file takes priority):
*
* 1. wp-content/languages/lifterlms/lifterlms-{LOCALE}.mo
*
* This is recommended "safe" location where custom language files can be stored. A file
* stored in this directory will never be automatically overwritten.
*
* 2. wp-content/languages/plugins/lifterlms-{LOCALE}.mo
*
* This is the default directory where WordPress will download language files from the
* WordPress GlotPress server during updates. If you store a custom language file in this
* directory it will be overwritten during updates.
*
* 3. wp-content/plugins/lifterlms/languages/lifterlms-{LOCALE}.mo
*
* This is the the LifterLMS plugin directory. A language file stored in this directory will
* be removed from the server during a LifterLMS plugin update.
*
* @since Unknown
* @since 4.9.0 Use `llms_load_textdomain()`.
*
* @return void
*/
public function localize() {
llms_load_textdomain( 'lifterlms' );
}
}