LLMS_AJAX_Handler

LLMS_AJAX_Handler class


Source Source

File: includes/class.llms.ajax.handler.php

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
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
class LLMS_AJAX_Handler {
    /**
     * Queue all members of a membership to be enrolled into a specific course
     *
     * Triggered from the auto-enrollment tab of a membership.
     *
     * @since 3.4.0
     * @since 3.15.0 Unknown.
     *
     * @param array $request Array of request data.
     * @return array
     */
    public static function bulk_enroll_membership_into_course( $request ) {
 
        if ( empty( $request['post_id'] ) || empty( $request['course_id'] ) ) {
            return new WP_Error( 400, __( 'Missing required parameters', 'lifterlms' ) );
        }
 
        do_action( 'llms_membership_do_bulk_course_enrollment', $request['post_id'], $request['course_id'] );
 
        return array(
            'message' => __( 'Members are being enrolled in the background. You may leave this page.', 'lifterlms' ),
        );
 
    }
 
    /**
     * Add or remove a student from a course or membership
     *
     * @since 3.0.0
     * @since 3.4.0 Unknown.
     *
     * @param array $request $_REQUEST object.
     * @return (void|WP_Error)
     */
    public static function bulk_enroll_students( $request ) {
 
        if ( empty( $request['post_id'] ) || empty( $request['student_ids'] ) || ! is_array( $request['student_ids'] ) ) {
            return new WP_Error( 400, __( 'Missing required parameters', 'lifterlms' ) );
        }
 
        $post_id = intval( $request['post_id'] );
 
        foreach ( $request['student_ids'] as $id ) {
            llms_enroll_student( intval( $id ), $post_id, 'admin_' . get_current_user_id() );
        }
 
    }
 
    /**
     * Determines if voucher codes already exist.
     *
     * @since 5.9.0
     *
     * @return void
     */
    public static function check_voucher_duplicate() {
 
        $post_id = ! empty( $_REQUEST['postId'] ) ? absint( llms_filter_input( INPUT_POST, 'postId', FILTER_SANITIZE_NUMBER_INT ) ) : 0;
        $codes   = ! empty( $_REQUEST['codes'] ) ? llms_filter_input_sanitize_string( INPUT_POST, 'codes', array( FILTER_REQUIRE_ARRAY ) ) : array();
 
        if ( ! $post_id || ! $codes ) {
            return new WP_Error( 400, __( 'Missing required parameters', 'lifterlms' ) );
        } elseif ( ! current_user_can( 'edit_post', $post_id ) ) {
            return new WP_Error( 401, __( 'Missing required permissions to perform this action.', 'lifterlms' ) );
        }
 
        $codes = implode(
            ',',
            array_map(
                function( $code ) {
                    return sprintf( "'%s'", esc_sql( $code ) );
                },
                array_filter( $codes )
            )
        );
 
        global $wpdb;
        $table = $wpdb->prefix . 'lifterlms_vouchers_codes';
        $res   = $wpdb->get_results(
            $wpdb->prepare(
                "SELECT code FROM $table WHERE code IN( $codes ) AND voucher_id != %d", // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared
                array( $post_id )
            ),
            ARRAY_A
        );
 
        wp_send_json(
            array(
                'success'    => true,
                'duplicates' => $res,
            )
        );
        wp_die();
 
    }
 
    /**
     * Move a Product Access Plan to the trash
     *
     * @since 3.0.0
     *
     * @param array $request $_REQUEST object.
     * @return bool|WP_Error WP_Error on error, true if successful.
     */
    public static function delete_access_plan( $request ) {
 
        // shouldn't be possible.
        if ( empty( $request['plan_id'] ) ) {
            die();
        }
 
        if ( ! wp_trash_post( $request['plan_id'] ) ) {
 
            $err = new WP_Error();
            $err->add( 'error', __( 'There was a problem deleting your access plan, please try again.', 'lifterlms' ) );
            return $err;
 
        }
 
        return true;
 
    }
 
    /**
     * Retrieve a new instance of admin table class from a handler string.
     *
     * @since 3.37.15
     * @since 4.7.0 Don't require `LLMS_Admin_Reporting`, it's loaded automatically.
     *
     * @param string $handler Unprefixed handler class string. For example "Students" or "Course_Students".
     * @return object|false Instance of the admin table class or false if the class can't be found.
     */
    protected static function get_admin_table_instance( $handler ) {
 
        LLMS_Admin_Reporting::includes();
 
        $handler = 'LLMS_Table_' . $handler;
        if ( class_exists( $handler ) ) {
            return new $handler();
        }
 
        return false;
 
    }
 
    /**
     * Queue a table export event
     *
     * @since 3.15.0
     * @since 3.28.1 Unknown.
     * @since 3.37.15 Verify user permissions before processing request data.
     *
     * @param array $request Post data ($_REQUEST).
     * @return array
     */
    public static function export_admin_table( $request ) {
 
        if ( ! current_user_can( 'view_lifterlms_reports' ) || empty( $request['handler'] ) ) {
            return false;
        }
 
        $table = self::get_admin_table_instance( $request['handler'] );
        if ( ! $table ) {
            return false;
        }
 
        $file = isset( $request['filename'] ) ? $request['filename'] : null;
        return $table->generate_export_file( $request, $file );
 
    }
 
    /**
     * Reload admin tables
     *
     * @since 3.2.0
     * @since 3.37.15 Verify user permissions before processing request data.
     *                Use `wp_json_encode()` in favor of `json_encode()`.
     *
     * @param array $request Post data ($_REQUEST).
     * @return array
     */
    public static function get_admin_table_data( $request ) {
 
        if ( ! current_user_can( 'view_lifterlms_reports' ) || empty( $request['handler'] ) ) {
            return false;
        }
 
        $table = self::get_admin_table_instance( $request['handler'] );
        if ( ! $table ) {
            return false;
        }
 
        $table->get_results( $request );
        return array(
            'args'  => wp_json_encode( $table->get_args() ),
            'thead' => trim( $table->get_thead_html() ),
            'tbody' => trim( $table->get_tbody_html() ),
            'tfoot' => trim( $table->get_tfoot_html() ),
        );
 
    }
 
    /**
     * Store data for the instructors metabox
     *
     * @since 3.13.0
     * @since 3.30.3 Fixed typos.
     *
     * @param array $request $_REQUEST object.
     * @return array
     */
    public static function instructors_mb_store( $request ) {
 
        // validate required params.
        if ( ! isset( $request['store_action'] ) || ! isset( $request['post_id'] ) ) {
 
            return array(
                'data'    => array(),
                'message' => __( 'Missing required parameters', 'lifterlms' ),
                'success' => false,
            );
 
        }
 
        $post = llms_get_post( $request['post_id'] );
 
        switch ( $request['store_action'] ) {
 
            case 'load':
                $instructors = $post->get_instructors();
                break;
 
            case 'save':
                $instructors = array();
 
                foreach ( $request['rows'] as $instructor ) {
 
                    foreach ( $instructor as $key => $val ) {
 
                        $new_key                = str_replace( array( 'llms', '_' ), '', $key );
                        $new_key                = preg_replace( '/[0-9]+/', '', $new_key );
                        $instructor[ $new_key ] = $val;
                        unset( $instructor[ $key ] );
 
                    }
 
                    $instructors[] = $instructor;
 
                }
 
                $post->set_instructors( $instructors );
 
                break;
 
        }
 
        $data = array();
 
        foreach ( $instructors as $instructor ) {
 
            $new_instructor = array();
            foreach ( $instructor as $key => $val ) {
                if ( 'id' === $key ) {
                    $val = llms_make_select2_student_array( array( $instructor['id'] ) );
                }
                $new_instructor[ '_llms_' . $key ] = $val;
            }
            $data[] = $new_instructor;
        }
 
        wp_send_json(
            array(
                'data'    => $data,
                'message' => 'success',
                'success' => true,
            )
        );
 
    }
 
    /**
     * Handle notification display & dismissal.
     *
     * @since 3.8.0
     * @since 3.37.14 Use strict comparison.
     * @since 7.1.0 Improve notifications query performance by not calculating unneeded found rows.
     *
     * @param array $request $_POST data.
     * @return array
     */
    public static function notifications_heartbeart( $request ) {
 
        $ret = array(
            'new' => array(),
        );
 
        if ( ! empty( $request['dismissals'] ) ) {
            foreach ( $request['dismissals'] as $nid ) {
                $noti = new LLMS_Notification( $nid );
                if ( get_current_user_id() === absint( $noti->get( 'subscriber' ) ) ) {
                    $noti->set( 'status', 'read' );
                }
            }
        }
 
        // Get 5 most recent new notifications for the current user.
        $query = new LLMS_Notifications_Query(
            array(
                'per_page'      => 5,
                'statuses'      => 'new',
                'types'         => 'basic',
                'subscriber'    => get_current_user_id(),
                'no_found_rows' => true,
            )
        );
 
        $ret['new'] = $query->get_notifications();
 
        return $ret;
 
    }
 
    /**
     * Remove a course from the list of membership auto enrollment courses
     *
     * Called from "Auto Enrollment" tab of LLMS Membership Metaboxes.
     *
     * @since 3.0.0
     *
     * @param array $request $_POST data.
     * @return (void|WP_Error)
     */
    public static function membership_remove_auto_enroll_course( $request ) {
 
        if ( empty( $request['post_id'] ) || empty( $request['course_id'] ) ) {
            return new WP_Error( 'error', __( 'Missing required parameters.', 'lifterlms' ) );
        }
 
        $membership = new LLMS_Membership( $request['post_id'] );
 
        if ( ! $membership->remove_auto_enroll_course( intval( $request['course_id'] ) ) ) {
            return new WP_Error( 'error', __( 'There was an error removing the course, please try again.', 'lifterlms' ) );
        }
 
    }
 
    /**
     * Retrieve Students.
     *
     * Used by Select2 AJAX functions to load paginated student results.
     * Also allows querying by:
     *      first name
     *      last name
     *      email.
     *
     * @since Unknown
     * @since 3.14.2 Unknown.
     * @since 5.5.0 Do not encode quotes when sanitizing search term.
     * @since 5.9.0 Stop using deprecated `FILTER_SANITIZE_STRING`.
     * @deprecated 6.2.0 `LLMS_AJAX_Handler::query_students()` is deprecated in favor of the REST API list students endpoint.
     *
     * @return void
     */
    public static function query_students() {
 
        _deprecated_function( __METHOD__, '6.2.0', 'the REST API list students endpoint' );
 
        // Grab the search term if it exists.
        $term = array_key_exists( 'term', $_REQUEST ) ? llms_filter_input_sanitize_string( INPUT_POST, 'term', array( FILTER_FLAG_NO_ENCODE_QUOTES ) ) : '';
 
        $page = array_key_exists( 'page', $_REQUEST ) ? llms_filter_input( INPUT_POST, 'page', FILTER_SANITIZE_NUMBER_INT ) : 0;
 
        $enrolled_in     = array_key_exists( 'enrolled_in', $_REQUEST ) ? sanitize_text_field( wp_unslash( $_REQUEST['enrolled_in'] ) ) : null;
        $not_enrolled_in = array_key_exists( 'not_enrolled_in', $_REQUEST ) ? sanitize_text_field( wp_unslash( $_REQUEST['not_enrolled_in'] ) ) : null;
 
        $roles = array_key_exists( 'roles', $_REQUEST ) ? sanitize_text_field( wp_unslash( $_REQUEST['roles'] ) ) : null;
 
        global $wpdb;
 
        $limit = 30;
        $start = $limit * $page;
 
        $vars = array();
 
        $roles_sql = '';
        if ( $roles ) {
            $roles = explode( ',', $roles );
            $roles = array_map( 'trim', $roles );
            $total = count( $roles );
            foreach ( $roles as $i => $role ) {
                $roles_sql .= "roles.meta_value LIKE '%s'";
                $vars[]     = '%"' . $role . '"%';
                if ( $total > 1 && $i + 1 !== $total ) {
                    $roles_sql .= ' OR ';
                }
            }
 
            $roles_sql = "JOIN $wpdb->usermeta AS roles
                            ON $wpdb->users.ID = roles.user_id
                           AND roles.meta_key = '{$wpdb->prefix}capabilities'
                           AND ( $roles_sql )
                        ";
        }
 
        // there was a search query.
        if ( $term ) {
 
            // email only.
            if ( false !== strpos( $term, '@' ) ) {
 
                $query = "SELECT
                              ID AS id
                            , user_email AS email
                            , display_name AS name
                          FROM $wpdb->users
                          $roles_sql
                          WHERE user_email LIKE '%s'
                          ORDER BY display_name
                          LIMIT %d, %d;";
 
                $vars = array_merge(
                    $vars,
                    array(
                        '%' . $term . '%',
                        $start,
                        $limit,
                    )
                );
 
            } elseif ( false !== strpos( $term, ' ' ) ) {
 
                $term = explode( ' ', $term );
 
                $query = "SELECT
                              users.ID AS id
                            , users.user_email AS email
                            , users.display_name AS name
                          FROM $wpdb->users AS users
                          $roles_sql
                          LEFT JOIN wp_usermeta AS fname ON fname.user_id = users.ID
                          LEFT JOIN wp_usermeta AS lname ON lname.user_id = users.ID
                          WHERE ( fname.meta_key = 'first_name' AND fname.meta_value LIKE '%s' )
                            AND ( lname.meta_key = 'last_name' AND lname.meta_value LIKE '%s' )
                          ORDER BY users.display_name
                          LIMIT %d, %d;";
 
                $vars = array_merge(
                    $vars,
                    array(
                        '%' . $term[0] . '%', // first name.
                        '%' . $term[1] . '%', // last name.
                        $start,
                        $limit,
                    )
                );
 
                // search for login, display name, or email.
            } else {
 
                $query = "SELECT
                              ID AS id
                            , user_email AS email
                            , display_name AS name
                          FROM $wpdb->users
                          $roles_sql
                          WHERE
                            user_email LIKE '%s'
                            OR user_login LIKE '%s'
                            OR display_name LIKE '%s'
                          ORDER BY display_name
                          LIMIT %d, %d;";
 
                $vars = array_merge(
                    $vars,
                    array(
                        '%' . $term . '%',
                        '%' . $term . '%',
                        '%' . $term . '%',
                        $start,
                        $limit,
                    )
                );
 
            }
        } else {
 
            $query = "SELECT
                          ID AS id
                        , user_email AS email
                        , display_name AS name
                      FROM $wpdb->users
                      $roles_sql
                      ORDER BY display_name
                      LIMIT %d, %d;";
 
            $vars = array_merge(
                $vars,
                array(
                    $start,
                    $limit,
                )
            );
 
        }
 
        $res = $wpdb->get_results( $wpdb->prepare( $query, $vars ) ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
 
        if ( $enrolled_in ) {
 
            $checks = explode( ',', $enrolled_in );
            $checks = array_map( 'trim', $checks );
 
            // Loop through each user.
            foreach ( $res as $key => $user ) {
 
                // Loop through each check -- this is an OR relationship situation.
                foreach ( $checks as $id ) {
 
                    // If the user is enrolled break to the next user, they can stay.
                    if ( llms_is_user_enrolled( $user->id, $id ) ) {
 
                        continue 2;
 
                    }
                }
 
                // If we get here that means the user isn't enrolled in any of the check posts remove them from the results.
                unset( $res[ $key ] );
            }
        }
 
        if ( $not_enrolled_in ) {
 
            $checks = explode( ',', $enrolled_in );
            $checks = array_map( 'trim', $checks );
 
            // Loop through each user.
            foreach ( $res as $key => $user ) {
 
                // Loop through each check -- this is an OR relationship situation.
                // If the user is enrolled in any of the courses they need to be filtered out.
                foreach ( $checks as $id ) {
 
                    // If the user is enrolled break remove them and break to the next user.
                    if ( llms_is_user_enrolled( $user->id, $id ) ) {
 
                        unset( $res[ $key ] );
                        continue 2;
 
                    }
                }
            }
        }
 
        echo json_encode(
            array(
                'items'   => $res,
                'more'    => count( $res ) === $limit,
                'success' => true,
            )
        );
 
        wp_die();
 
    }
 
    /**
     * Start a Quiz Attempt.
     *
     * @since 3.9.0
     * @since 3.16.4 Unknown.
     * @since 6.4.0 Make sure attempts limit was not reached.
     *
     * @param array $request $_POST data.
     *                       required:
     *                           (string) attempt_key
     *                           or
     *                           (int) quiz_id
     *                           (int) lesson_id.
     *
     * @return WP_Error|array WP_Error on error or array containing html template of the first question.
     */
    public static function quiz_start( $request ) {
 
        $err = new WP_Error();
 
        $student = llms_get_student();
        if ( ! $student ) {
            $err->add( 400, __( 'You must be logged in to take quizzes.', 'lifterlms' ) );
            return $err;
        }
 
        // Limit reached?
        if ( isset( $request['quiz_id'] ) && ! ( new LLMS_Quiz( $request['quiz_id'] ) )->is_open() ) {
            $err->add( 400, __( "You've reached the maximum number of attempts for this quiz.", 'lifterlms' ) );
            return $err;
        }
 
        $attempt = false;
        if ( ! empty( $request['attempt_key'] ) ) {
            $attempt = $student->quizzes()->get_attempt_by_key( $request['attempt_key'] );
        }
 
        if ( ! $attempt || 'new' !== $attempt->get_status() ) {
 
            if ( ! isset( $request['quiz_id'] ) || ! isset( $request['lesson_id'] ) ) {
                $err->add( 400, __( 'There was an error starting the quiz. Please return to the lesson and begin again.', 'lifterlms' ) );
                return $err;
            }
 
            $attempt = LLMS_Quiz_Attempt::init( absint( $request['quiz_id'] ), absint( $request['lesson_id'] ), $student->get( 'id' ) );
 
        }
 
        $question_id = $attempt->get_first_question();
        if ( ! $question_id ) {
            $err->add( 404, __( 'Unable to start quiz because the quiz does not contain any questions.', 'lifterlms' ) );
            return $err;
        }
 
        $attempt->start();
        $html = llms_get_template_ajax(
            'content-single-question.php',
            array(
                'attempt'  => $attempt,
                'question' => llms_get_post( $question_id ),
            )
        );
 
        $quiz  = $attempt->get_quiz();
        $limit = $quiz->has_time_limit() ? $quiz->get( 'time_limit' ) : false;
 
        return array(
            'attempt_key' => $attempt->get_key(),
            'html'        => $html,
            'time_limit'  => $limit,
            'question_id' => $question_id,
            'total'       => $attempt->get_count( 'questions' ),
        );
 
    }
 
    /**
     * AJAX Quiz answer question.
     *
     * @since 3.9.0
     * @since 3.27.0 Unknown.
     * @since 6.4.0 Make sure attempts limit was not reached.
     *
     * @param array $request $_POST data.
     * @return WP_Error|string
     */
    public static function quiz_answer_question( $request ) {
 
        $err = new WP_Error();
 
        $student = llms_get_student();
        if ( ! $student ) {
            $err->add( 400, __( 'You must be logged in to take quizzes.', 'lifterlms' ) );
            return $err;
        }
 
        $required = array( 'attempt_key', 'question_id', 'question_type' );
        foreach ( $required as $key ) {
            if ( ! isset( $request[ $key ] ) ) {
                $err->add( 400, __( 'Missing required parameters. Could not proceed.', 'lifterlms' ) );
                return $err;
            }
        }
 
        $attempt_key = sanitize_text_field( $request['attempt_key'] );
        $question_id = absint( $request['question_id'] );
        $answer      = array_map( 'stripslashes_deep', isset( $request['answer'] ) ? $request['answer'] : array() );
 
        $student_quizzes = $student->quizzes();
        $attempt         = $student_quizzes->get_attempt_by_key( $attempt_key );
        if ( ! $attempt ) {
            $err->add( 500, __( 'There was an error recording your answer. Please return to the lesson and begin again.', 'lifterlms' ) );
            return $err;
        }
 
        /**
         * Check limit not reached.
         *
         * First check whether the quiz is open (so to leverage the `llms_quiz_is_open` filter ),
         * if not, check also for remaining attempts.
         *
         * At this point the current attempt has already been counted (maybe the last allowed),
         * so we check that the remaining attempt is just greater than -1.
         */
        $quiz_id = $attempt->get( 'quiz_id' );
        if ( ! ( new LLMS_Quiz( $quiz_id ) )->is_open() &&
                $student_quizzes->get_attempts_remaining_for_quiz( $quiz_id, true ) < 0 ) {
            $err->add( 400, __( "You've reached the maximum number of attempts for this quiz.", 'lifterlms' ) );
            return $err;
        }
 
        // record the answer.
        $attempt->answer_question( $question_id, $answer );
 
        // get the next question.
        $question_id = $attempt->get_next_question( $question_id );
 
        // return html for the next question.
        if ( $question_id ) {
 
            $html = llms_get_template_ajax(
                'content-single-question.php',
                array(
                    'attempt'  => $attempt,
                    'question' => llms_get_post( $question_id ),
                )
            );
 
            return array(
                'html'        => $html,
                'question_id' => $question_id,
            );
 
        } else {
 
            return self::quiz_end( $request, $attempt );
 
        }
 
    }
 
    /**
     * End a quiz attempt.
     *
     * @since 3.9.0
     * @since 3.16.0 Unknown.
     *
     * @param array                  $request $_POST data.
     * @param LLMS_Quiz_Attempt|null $attempt The quiz attempt.
     * @return array
     */
    public static function quiz_end( $request, $attempt = null ) {
 
        $err = new WP_Error();
 
        if ( ! $attempt ) {
 
            $student = llms_get_student();
            if ( ! $student ) {
                $err->add( 400, __( 'You must be logged in to take quizzes.', 'lifterlms' ) );
                return $err;
            }
 
            if ( ! isset( $request['attempt_key'] ) ) {
                $err->add( 400, __( 'Missing required parameters. Could not proceed.', 'lifterlms' ) );
                return $err;
            }
 
            $attempt = $student->quizzes()->get_attempt_by_key( sanitize_text_field( $request['attempt_key'] ) );
 
        }
 
        // Record the attempt's completion.
        $attempt->end();
 
        // Setup a redirect.
        $url = add_query_arg(
            array(
                'attempt_key' => $attempt->get_key(),
            ),
            get_permalink( $attempt->get( 'quiz_id' ) )
        );
 
        return array(
            /**
             * Filter the quiz redirect URL on completion.
             *
             * @since Unknown
             *
             * @param string            $url     The quiz redirect URL on completion.
             * @param LLMS_Quiz_Attempt $attempt The quiz attempt.
             */
            'redirect' => apply_filters( 'llms_quiz_complete_redirect', $url, $attempt ),
        );
 
    }
 
    /**
     * Remove a coupon from an order during checkout
     *
     * @since 3.0.0
     *
     * @param array $request $_POST data.
     * @return array
     */
    public static function remove_coupon_code( $request ) {
 
        llms()->session->set( 'llms_coupon', false );
 
        $plan = new LLMS_Access_Plan( $request['plan_id'] );
 
        ob_start();
        llms_get_template( 'checkout/form-coupon.php' );
        $coupon_html = ob_get_clean();
 
        ob_start();
        llms_get_template(
            'checkout/form-gateways.php',
            array(
                'coupon'           => false,
                'gateways'         => llms()->payment_gateways()->get_enabled_payment_gateways(),
                'selected_gateway' => llms()->payment_gateways()->get_default_gateway(),
                'plan'             => $plan,
            )
        );
        $gateways_html = ob_get_clean();
 
        ob_start();
        llms_get_template(
            'checkout/form-summary.php',
            array(
                'coupon'  => false,
                'plan'    => $plan,
                'product' => $plan->get_product(),
            )
        );
        $summary_html = ob_get_clean();
 
        return array(
            'coupon_html'   => $coupon_html,
            'gateways_html' => $gateways_html,
            'summary_html'  => $summary_html,
        );
 
    }
 
    /**
     * Handle Select2 Search boxes for WordPress Posts by Post Type and Post Status.
     *
     * @since 3.0.0
     * @since 3.32.0 Updated to use llms_filter_input().
     * @since 3.32.0 Posts can be queried by post status(es) via the `$_POST['post_statuses']`.
     *               By default only the published posts will be queried.
     * @since 3.37.2 Posts can be 'filtered' by instructor via the `$_POST['instructor_id']`.
     * @since 5.5.0 Do not encode quotes when sanitizing search term.
     * @since 5.9.0 Stop using deprecated `FILTER_SANITIZE_STRING`.
     *
     * @return void
     */
    public static function select2_query_posts() {
 
        global $wpdb;
 
        // Grab the search term if it exists.
        $term = llms_filter_input_sanitize_string( INPUT_POST, 'term', array( FILTER_FLAG_NO_ENCODE_QUOTES ) );
 
        // Get the page.
        $page = llms_filter_input( INPUT_POST, 'page', FILTER_SANITIZE_NUMBER_INT );
 
        // Get post type(s).
        $post_type        = sanitize_text_field( llms_filter_input_sanitize_string( INPUT_POST, 'post_type' ) );
        $post_types_array = explode( ',', $post_type );
        foreach ( $post_types_array as &$str ) {
            $str = "'" . esc_sql( trim( $str ) ) . "'";
        }
        $post_types = implode( ',', $post_types_array );
 
        // Get post status(es).
        $post_statuses       = llms_filter_input_sanitize_string( INPUT_POST, 'post_statuses' );
        $post_statuses       = empty( $post_statuses ) ? 'publish' : $post_statuses;
        $post_statuses_array = explode( ',', $post_statuses );
        foreach ( $post_statuses_array as &$str ) {
            $str = "'" . esc_sql( trim( $str ) ) . "'";
        }
        $post_statuses = implode( ',', $post_statuses_array );
 
        // Filter posts (llms posts) by instructor ID.
        $instructor_id = llms_filter_input( INPUT_POST, 'instructor_id', FILTER_SANITIZE_NUMBER_INT );
        if ( ! empty( $instructor_id ) ) {
            $serialized_iid = serialize(
                array(
                    'id' => absint( $instructor_id ),
                )
            );
            $serialized_iid = str_replace( array( 'a:1:{', '}' ), '', $serialized_iid );
 
            $join = $wpdb->prepare(
                " JOIN $wpdb->postmeta AS m ON p.ID = m.post_id AND m.meta_key = '_llms_instructors' AND m.meta_value LIKE %s",
                '%' . $wpdb->esc_like( $serialized_iid ) . '%'
            );
        } else {
            $join = '';
        }
 
        $limit = 30;
        $start = $limit * $page;
 
        if ( $term ) {
            $like = " AND post_title LIKE '%s'";
            $vars = array( '%' . $term . '%', $start, $limit );
        } else {
            $like = '';
            $vars = array( $start, $limit );
        }
 
        // phpcs:disable WordPress.DB.PreparedSQL.InterpolatedNotPrepared
        $posts = $wpdb->get_results(
            $wpdb->prepare(
                "SELECT p.ID as ID, p.post_title as post_title, p.post_type as post_type
             FROM $wpdb->posts as p
             $join
             WHERE p.post_type IN ( $post_types )
               AND p.post_status IN ( $post_statuses )
                   $like
             ORDER BY post_title
             LIMIT %d, %d
            ",
                $vars
            ) // phpcs:ignore -- The number of params is correct, $vars is an array of two elements.
        );// no-cache ok.
        // phpcs:enable WordPress.DB.PreparedSQL.InterpolatedNotPrepared
 
        $items = array();
 
        $grouping = ( count( $post_types_array ) > 1 );
 
        foreach ( $posts as $post ) {
 
            $item = array(
                'id'   => $post->ID,
                'name' => $post->post_title . ' (' . __( 'ID#', 'lifterlms' ) . ' ' . $post->ID . ')',
            );
 
            if ( $grouping ) {
 
                // Setup an object for the optgroup if it's not already set up.
                if ( ! isset( $items[ $post->post_type ] ) ) {
                    $obj                       = get_post_type_object( $post->post_type );
                    $items[ $post->post_type ] = array(
                        'label' => $obj->labels->name,
                        'items' => array(),
                    );
                }
 
                $items[ $post->post_type ]['items'][] = $item;
 
            } else {
 
                $items[] = $item;
 
            }
        }
 
        echo json_encode(
            array(
                'items'   => $items,
                'more'    => count( $items ) === $limit,
                'success' => true,
            )
        );
        wp_die();
 
    }
 
    /**
     * Add or remove a student from a course or membership.
     *
     * @since 3.0.0
     * @since 3.33.0 Handle the delete enrollment request and make sure the $request['post_id'] is not empty.
     *               Also always return either a WP_Error on failure or a "success" array on action performed.
     * @since 3.37.14 Use strict comparison.
     *
     * @param array $request $_POST data.
     * @return (WP_Error|array)
     */
    public static function update_student_enrollment( $request ) {
 
        if ( empty( $request['student_id'] ) || empty( $request['status'] ) || empty( $request['post_id'] ) ) {
            return new WP_Error( 400, __( 'Missing required parameters', 'lifterlms' ) );
        }
 
        if ( ! in_array( $request['status'], array( 'add', 'remove', 'delete' ), true ) ) {
            return new WP_Error( 400, __( 'Invalid status', 'lifterlms' ) );
        }
 
        $student_id = intval( $request['student_id'] );
        $post_id    = intval( $request['post_id'] );
 
        switch ( $request['status'] ) {
            case 'add':
                $res = llms_enroll_student( $student_id, $post_id, 'admin_' . get_current_user_id() );
                break;
 
            case 'remove':
                $res = llms_unenroll_student( $student_id, $post_id, 'cancelled', 'any' );
                break;
 
            case 'delete':
                $res = llms_delete_student_enrollment( $student_id, $post_id, 'any' );
                break;
        }
 
        if ( ! $res ) {
            // Translators: %s = action add|remove|delete.
            return new WP_Error( 400, sprintf( __( 'Action "%1$s" failed. Please try again', 'lifterlms' ), $request['status'] ) );
        }
 
        return array(
            'success' => true,
        );
 
    }
 
    /**
     * Validate a Coupon via the Checkout Form
     *
     * @since 3.0.0
     * @since 3.39.0 Minor changes to code for readability with no changes to function behavior.
     * @since 4.21.1 Sanitize user-submitted coupon code before outputting in error messages.
     *
     * @param array $request $_POST data.
     * @return array|WP_Error On success, returns an array containing HTML parts used to update the interface of the checkout screen.
     *                        On error, returns an error object with details of the encountered error.
     */
    public static function validate_coupon_code( $request ) {
 
        $error = new WP_Error();
 
        $request['code'] = ! empty( $request['code'] ) ? sanitize_text_field( $request['code'] ) : '';
 
        if ( empty( $request['code'] ) ) {
 
            $error->add( 'error', __( 'Please enter a coupon code.', 'lifterlms' ) );
 
        } elseif ( empty( $request['plan_id'] ) ) {
 
            $error->add( 'error', __( 'Please enter a plan ID.', 'lifterlms' ) );
 
        } else {
 
            $cid = llms_find_coupon( $request['code'] );
 
            if ( ! $cid ) {
 
                // Translators: %s = coupon code.
                $error->add( 'error', sprintf( __( 'Coupon code "%s" not found.', 'lifterlms' ), $request['code'] ) );
 
            } else {
 
                $coupon = new LLMS_Coupon( $cid );
                $valid  = $coupon->is_valid( $request['plan_id'] );
 
                if ( is_wp_error( $valid ) ) {
 
                    $error = $valid;
 
                } else {
 
                    llms()->session->set(
                        'llms_coupon',
                        array(
                            'plan_id'   => $request['plan_id'],
                            'coupon_id' => $coupon->get( 'id' ),
                        )
                    );
 
                    $plan = new LLMS_Access_Plan( $request['plan_id'] );
 
                    ob_start();
                    llms_get_template(
                        'checkout/form-coupon.php',
                        array(
                            'coupon' => $coupon,
                        )
                    );
                    $coupon_html = ob_get_clean();
 
                    ob_start();
                    llms_get_template(
                        'checkout/form-gateways.php',
                        array(
                            'coupon'           => $coupon,
                            'gateways'         => llms()->payment_gateways()->get_enabled_payment_gateways(),
                            'selected_gateway' => llms()->payment_gateways()->get_default_gateway(),
                            'plan'             => $plan,
                        )
                    );
                    $gateways_html = ob_get_clean();
 
                    ob_start();
                    llms_get_template(
                        'checkout/form-summary.php',
                        array(
                            'coupon'  => $coupon,
                            'plan'    => $plan,
                            'product' => $plan->get_product(),
                        )
                    );
                    $summary_html = ob_get_clean();
 
                    return array(
                        'code'          => $coupon->get( 'title' ),
                        'coupon_html'   => $coupon_html,
                        'gateways_html' => $gateways_html,
                        'summary_html'  => $summary_html,
                    );
 
                }
            }
        }
 
        return $error;
 
    }
 
    /**
     * Create course's section.
     *
     * @since Unknown
     * @deprecated 5.7.0 There is not a replacement.
     *
     * @param array $request $_POST data.
     * @return string
     */
    public static function create_section( $request ) {
 
        llms_deprecated_function( __METHOD__, '5.7.0' );
        $section_id = LLMS_Post_Handler::create_section( $request['post_id'], $request['title'] );
 
        $html = LLMS_Meta_Box_Course_Outline::section_tile( $section_id );
 
        return $html;
 
    }
 
    /**
     * Get course's sections
     *
     * @since Unknown
     *
     * @param array $request $_POST data.
     * @return LLMS_Section[]
     */
    public static function get_course_sections( $request ) {
 
        $course   = new LLMS_Course( $request['post_id'] );
        $sections = $course->get_sections( 'posts' );
 
        return $sections;
    }
 
    /**
     * Get a course's section
     *
     * @since Unknown
     *
     * @param array $request $_POST data.
     * @return LLMS_Section
     */
    public static function get_course_section( $request ) {
 
        return new LLMS_Section( $request['section_id'] );
    }
 
    /**
     * Update a course's section
     *
     * @since Unknown
     *
     * @param array $request $_POST data.
     * @return (array|void) If section updated returns an array of the type:
     *                      id    => {post id}
     *                      title => {new title}
     */
    public static function update_course_section( $request ) {
 
        $section = new LLMS_Section( $request['section_id'] );
        return $section->set_title( $request['title'] );
 
    }
 
    /**
     * Create course's lesson.
     *
     * @since Unknown
     * @deprecated 5.7.0 There is not a replacement.
     *
     * @param array $request $_POST data.
     * @return string
     */
    public static function create_lesson( $request ) {
 
        llms_deprecated_function( __METHOD__, '5.7.0' );
        $lesson_id = LLMS_Post_Handler::create_lesson(
            $request['post_id'],
            $request['section_id'],
            $request['title'],
            $request['excerpt']
        );
 
        $html = LLMS_Meta_Box_Course_Outline::lesson_tile( $lesson_id, $request['section_id'] );
 
        return $html;
 
    }
 
    /**
     * Get the list of options for the lesson's select
     *
     * @since Unknown
     *
     * @param array $request $_POST data.
     * @return array
     */
    public static function get_lesson_options_for_select( $request ) {
 
        return LLMS_Post_Handler::get_lesson_options_for_select_list();
 
    }
 
    /**
     * Add a lesson to a course
     *
     * @since Unknown
     * @deprecated 5.7.0 There is not a replacement.
     *
     * @param array $request $_POST data.
     * @return string
     */
    public static function add_lesson_to_course( $request ) {
 
        llms_deprecated_function( __METHOD__, '5.7.0' );
        $lesson_id = LLMS_Lesson_Handler::assign_to_course( $request['post_id'], $request['section_id'], $request['lesson_id'] );
 
        $html = LLMS_Meta_Box_Course_Outline::lesson_tile( $lesson_id, $request['section_id'] );
 
        return $html;
 
    }
 
    /**
     * Get a course's lesson
     *
     * @since Unknown
     *
     * @param array $request $_POST data.
     * @return array
     */
    public static function get_course_lesson( $request ) {
 
        $l = new LLMS_Lesson( $request['lesson_id'] );
 
        return array(
            'id'      => $l->get( 'id' ),
            'title'   => $l->get( 'title' ),
            'excerpt' => $l->get( 'excerpt' ),
        );
 
    }
 
    /**
     * Update course's lesson
     *
     * @since Unknown
     *
     * @param array $request $_POST data.
     * @return array
     */
    public static function update_course_lesson( $request ) {
 
        $post_data = array(
            'title'   => $request['title'],
            'excerpt' => $request['excerpt'],
        );
 
        $lesson = new LLMS_Lesson( $request['lesson_id'] );
 
        return $lesson->update( $post_data );
 
    }
 
    /**
     * Remove a lesson from a course
     *
     * @since Unknown
     *
     * @param array $request $_POST data.
     * @return array
     */
    public static function remove_course_lesson( $request ) {
 
        $post_data = array(
            'parent_course'  => '',
            'parent_section' => '',
            'order'          => '',
        );
 
        $lesson = new LLMS_Lesson( $request['lesson_id'] );
 
        return $lesson->update( $post_data );
 
    }
 
    /**
     * Delete a course's section
     *
     * @since Unknown
     *
     * @param array $request $_POST data.
     * @return (WP_Post|false|null) Post data on success, false or null on failure.
     */
    public static function delete_course_section( $request ) {
 
        $section = new LLMS_Section( $request['section_id'] );
        return $section->delete();
    }
 
    /**
     * Update course's sections order
     *
     * @since Unknown
     *
     * @param array $request $_POST data.
     * @return (array|null)
     */
    public static function update_section_order( $request ) {
 
        $updated_data;
 
        foreach ( $request['sections'] as $key => $value ) {
 
            $section              = new LLMS_Section( $key );
            $updated_data[ $key ] = $section->update(
                array(
                    'order' => $value,
                )
            );
 
        }
 
        return $updated_data;
 
    }
 
    /**
     * Update section's lessons order
     *
     * @since Unknown
     *
     * @param array $request $_POST data.
     * @return (array|null)
     */
    public static function update_lesson_order( $request ) {
 
        $updated_data;
 
        foreach ( $request['lessons'] as $key => $value ) {
 
            $lesson               = new LLMS_Lesson( $key );
            $updated_data[ $key ] = $lesson->update(
                array(
                    'parent_section' => $value['parent_section'],
                    'order'          => $value['order'],
                )
            );
 
        }
 
        return $updated_data;
 
    }
 
    /**
     * "API" for the Admin Builder.
     *
     * @since 3.13.0
     * @since 6.0.0 Removed loading of class files that don't instantiate their class in favor of autoloading.
     *
     * @param array $request $_POST data.
     * @return array
     */
    public static function llms_builder( $request ) {
 
        return LLMS_Admin_Builder::handle_ajax( $request );
    }
 
    /**
     * Save autoenroll courses list for a Membership
     *
     * @since 3.30.0
     *
     * @param array $request $_POST data.
     * @return null|true
     */
    public static function llms_save_membership_autoenroll_courses( $request ) {
 
        // Missing required fields.
        if ( empty( $request['post_id'] ) || ! isset( $request['courses'] ) ) {
            return;
        }
 
        // Not a membership.
        $membership = llms_get_post( $request['post_id'] );
        if ( ! $membership || ! is_a( $membership, 'LLMS_Membership' ) ) {
            return;
        }
 
        $courses = array_map( 'absint', (array) $request['courses'] );
        $membership->add_auto_enroll_courses( $courses, true );
 
        return true;
 
    }
 
    /**
     * AJAX handler for creating and updating access plans via the metabox on courses & memberships
     *
     * @since 3.29.0
     * @since 3.33.1 Use `wp_unslash()` before inserting access plan data.
     *
     * @param array $request $_POST data.
     * @return array
     */
    public static function llms_update_access_plans( $request ) {
 
        if ( empty( $request['plans'] ) || ! is_array( $request['plans'] ) || empty( $request['post_id'] ) ) {
            return new WP_Error( 'error', __( 'Missing Required Parameters.', 'lifterlms' ) );
        }
 
        $metabox       = new LLMS_Meta_Box_Product();
        $post_id       = absint( $request['post_id'] );
        $metabox->post = get_post( $post_id );
 
        $errors = array();
 
        foreach ( $request['plans'] as $raw_plan_data ) {
 
            if ( empty( $raw_plan_data ) ) {
                continue;
            }
 
            $raw_plan_data = wp_unslash( $raw_plan_data );
 
            // Ensure we can switch plans that used to be paid to free.
            if ( isset( $raw_plan_data['is_free'] ) && llms_parse_bool( $raw_plan_data['is_free'] ) && ! isset( $raw_plan_data['price'] ) ) {
                $raw_plan_data['price'] = 0;
            }
 
            $raw_plan_data['product_id'] = $post_id;
 
            // retained filter for backwards compat.
            $raw_plan_data = apply_filters( 'llms_access_before_save_plan', $raw_plan_data, $metabox );
 
            $plan = llms_insert_access_plan( $raw_plan_data );
            if ( is_wp_error( $plan ) ) {
                $errors[ $raw_plan_data['menu_order'] ] = $plan;
            } else {
                // retained hook for backwards compat.
                do_action( 'llms_access_plan_saved', $plan, $raw_plan_data, $metabox );
            }
        }
 
        return array(
            'errors' => $errors,
            'html'   => $metabox->get_html(),
        );
 
    }
 
    /**
     * AJAX handler for persisting tracking events.
     *
     * @since 3.37.14
     *
     * @param array $request $_POST data.
     * @return array|WP_Error
     */
    public static function persist_tracking_events( $request ) {
 
        if ( empty( $request['llms-tracking'] ) ) {
            return new WP_Error( 'error', __( 'Missing tracking data.', 'lifterlms' ) );
        }
 
        $success = llms()->events()->store_tracking_events( wp_unslash( $request['llms-tracking'] ) );
 
        if ( ! is_wp_error( $success ) ) {
            $success = array(
                'success' => true,
            );
        }
 
        return $success;
 
    }
 
}
 
new LLMS_AJAX_Handler();

Top ↑

Methods Methods


Top ↑

Changelog Changelog

Changelog
Version Description
5.7.0 Deprecated the LLMS_AJAX_Handler::add_lesson_to_course() method with no replacement. Deprecated the LLMS_AJAX_Handler::create_lesson() method with no replacement. Deprecated the LLMS_AJAX_Handler::create_section() method with no replacement.
3.4.0 Unknown.
3.39.0 Minor code readability updates to the validate_coupon_code() method.
3.37.2 Update select2_query_posts to allow filtering posts by instructor.
3.37.15 Update get_admin_table_data() and export_admin_table() to verify user permissions before processing data.
3.37.14 Added persist_tracking_events() handler. Used strict comparison where needed.
3.33.1 Update llms_update_access_plans to use wp_unslash() before inserting access plan data.
3.33.0 Update update_student_enrollment to handle enrollment deletion requests, make sure the input array param 'post_id' field is not empty. Also always return either a WP_Error on failure or a "success" array on requested action performed.
3.32.0 Update select2_query_posts to use llms_filter_input() and allows for querying posts by post status(es).
3.30.3 Fixed spelling errors.
3.30.0 Added llms_save_membership_autoenroll_courses method.
3.28.1 Unknown.
3.2.0 Added get_admin_table_data() handler.
3.15.0 Added export_admin_table() handler, and other unknown changes.
3.13.0 Added instructors_mb_store() handler.
3.0.0 Added bulk_enroll_students() handler.
1.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.