LLMS_Post_Types

LLMS_Post_Types class


Source Source

File: includes/class.llms.post-types.php

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
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
class LLMS_Post_Types {
 
    /**
     * Reference to the block templates list.
     *
     * @var array
     */
    private static $templates = array();
 
    /**
     * Constructor
     *
     * @since 1.0.0
     * @since 3.0.4 Unknown.
     * @since 4.3.2 Add filter to deregister protected post types.
     *
     * @return void
     */
    public static function init() {
 
        add_action( 'init', array( __CLASS__, 'add_membership_restriction_support' ) );
        add_action( 'init', array( __CLASS__, 'register_post_types' ), 5 );
        add_action( 'init', array( __CLASS__, 'register_post_statuses' ), 9 );
        add_action( 'init', array( __CLASS__, 'register_taxonomies' ), 5 );
 
        add_filter( 'wp_sitemaps_post_types', array( __CLASS__, 'deregister_sitemap_post_types' ) );
 
        add_action( 'after_setup_theme', array( __CLASS__, 'add_thumbnail_support' ), 777 );
 
    }
 
    /**
     * Add post type support for membership restrictions
     *
     * This enables the "Membership Access" metabox to display
     *
     * @since 3.0.0
     * @since 3.0.4 Unknown.
     *
     * @return void
     */
    public static function add_membership_restriction_support() {
 
        /**
         * Add llms-membership-restrictions support for the following post types.
         *
         * Adding support for a post type enables the display of the Membership Restriction metabox
         * for each specified post type.
         *
         * These post types can then be "restricted" to enrollment in the selected memberships.
         *
         * @since Unknown
         *
         * @param string[] $post_types Array of post type names.
         */
        $post_types = apply_filters( 'llms_membership_restricted_post_types', array( 'post', 'page' ) );
        foreach ( $post_types as $post_type ) {
            add_post_type_support( $post_type, 'llms-membership-restrictions' );
        }
 
    }
 
    /**
     * Ensure LifterLMS Post Types have thumbnail support
     *
     * @since 2.4.1
     * @since 3.8.0 Unknown.
     *
     * @return void
     */
    public static function add_thumbnail_support() {
 
        // Ensure theme support exists for LifterLMS post types.
        if ( ! current_theme_supports( 'post-thumbnails' ) ) {
            add_theme_support( 'post-thumbnails' );
        }
 
        $thumbnail_post_types = array(
            'course',
            'lesson',
            'llms_membership',
        );
 
        foreach ( $thumbnail_post_types as $p ) {
 
            add_post_type_support( $p, 'thumbnail' );
 
        }
 
        add_image_size( 'llms_notification_icon', 64, 64, true );
 
    }
 
    /**
     * De-register protected post types from wp-sitemap.xml
     *
     * @since 4.3.2
     *
     * @param WP_Post_Type[] $post_types Array of post types.
     * @return WP_Post_Type[]
     */
    public static function deregister_sitemap_post_types( $post_types ) {
 
        unset(
            $post_types['lesson'],
            $post_types['llms_quiz'],
            $post_types['llms_certificate'],
            $post_types['llms_my_certificate']
        );
 
        return $post_types;
 
    }
 
    /**
     * Retrieve all registered order statuses
     *
     * @since 3.19.0
     *
     * @return array
     */
    public static function get_order_statuses() {
 
        $statuses = array(
 
            // Single payment only.
            'llms-completed'      => array(
                'label'       => _x( 'Completed', 'Order status', 'lifterlms' ),
                'label_count' => _n_noop( 'Completed <span class="count">(%s)</span>', 'Completed <span class="count">(%s)</span>', 'lifterlms' ),
            ),
 
            // Recurring only.
            'llms-active'         => array(
                'label'       => _x( 'Active', 'Order status', 'lifterlms' ),
                'label_count' => _n_noop( 'Active <span class="count">(%s)</span>', 'Active <span class="count">(%s)</span>', 'lifterlms' ),
            ),
            'llms-expired'        => array(
                'label'       => _x( 'Expired', 'Order status', 'lifterlms' ),
                'label_count' => _n_noop( 'Expired <span class="count">(%s)</span>', 'Expired <span class="count">(%s)</span>', 'lifterlms' ),
            ),
            'llms-on-hold'        => array(
                'label'       => _x( 'On Hold', 'Order status', 'lifterlms' ),
                'label_count' => _n_noop( 'On Hold <span class="count">(%s)</span>', 'On Hold <span class="count">(%s)</span>', 'lifterlms' ),
            ),
            'llms-pending-cancel' => array(
                'label'       => _x( 'Pending Cancellation', 'Order status', 'lifterlms' ),
                'label_count' => _n_noop( 'Pending Cancellation <span class="count">(%s)</span>', 'Pending Cancellation <span class="count">(%s)</span>', 'lifterlms' ),
            ),
 
            // Shared.
            'llms-pending'        => array(
                'label'       => _x( 'Pending Payment', 'Order status', 'lifterlms' ),
                'label_count' => _n_noop( 'Pending Payment <span class="count">(%s)</span>', 'Pending Payment <span class="count">(%s)</span>', 'lifterlms' ),
            ),
            'llms-cancelled'      => array(
                'label'       => _x( 'Cancelled', 'Order status', 'lifterlms' ),
                'label_count' => _n_noop( 'Cancelled <span class="count">(%s)</span>', 'Cancelled <span class="count">(%s)</span>', 'lifterlms' ),
            ),
            'llms-refunded'       => array(
                'label'       => _x( 'Refunded', 'Order status', 'lifterlms' ),
                'label_count' => _n_noop( 'Refunded <span class="count">(%s)</span>', 'Refunded <span class="count">(%s)</span>', 'lifterlms' ),
            ),
            'llms-failed'         => array(
                'label'       => _x( 'Failed', 'Order status', 'lifterlms' ),
                'label_count' => _n_noop( 'Failed <span class="count">(%s)</span>', 'Failed <span class="count">(%s)</span>', 'lifterlms' ),
            ),
 
        );
 
        $defaults = array(
            'public'                    => true,
            'exclude_from_search'       => false,
            'show_in_admin_all_list'    => true,
            'show_in_admin_status_list' => true,
        );
 
        foreach ( $statuses as &$status ) {
            $status = array_merge( $status, $defaults );
        }
 
        /**
         * Filter the list of order statuses that will be registered with WordPress.
         *
         * @since 3.19.0
         *
         * @param array[] $statuses Array of post status arrays.
         */
        return apply_filters( 'lifterlms_register_order_post_statuses', $statuses );
 
    }
 
    /**
     * Get an array of capabilities for a custom post type
     *
     * Due to core bug does not allow us to use capability_type in post type registration.
     *
     * @since 3.13.0
     * @since 6.0.0 Add specific case for `llms_my_achievement`, `llms_my_certificate` post types.
     *
     * @param string $post_type Post type name.
     * @return array
     */
    public static function get_post_type_caps( $post_type ) {
 
        if ( ! is_array( $post_type ) ) {
            $singular = $post_type;
            $plural   = $post_type . 's';
        } else {
            $singular = $post_type[0];
            $plural   = $post_type[1];
        }
 
        if ( in_array( $singular, array( 'my_achievement', 'my_certificate' ), true ) ) {
            $caps = self::get_earned_engagements_post_type_caps();
        } else {
            $caps = array(
 
                'read_post'              => sprintf( 'read_%s', $singular ),
                'read_private_posts'     => sprintf( 'read_private_%s', $plural ),
 
                'edit_post'              => sprintf( 'edit_%s', $singular ),
                'edit_posts'             => sprintf( 'edit_%s', $plural ),
                'edit_others_posts'      => sprintf( 'edit_others_%s', $plural ),
                'edit_private_posts'     => sprintf( 'edit_private_%s', $plural ),
                'edit_published_posts'   => sprintf( 'edit_published_%s', $plural ),
 
                'publish_posts'          => sprintf( 'publish_%s', $plural ),
 
                'delete_post'            => sprintf( 'delete_%s', $singular ),
                'delete_posts'           => sprintf( 'delete_%s', $plural ), // This is the core bug issue here.
                'delete_private_posts'   => sprintf( 'delete_private_%s', $plural ),
                'delete_published_posts' => sprintf( 'delete_published_%s', $plural ),
                'delete_others_posts'    => sprintf( 'delete_others_%s', $plural ),
 
                'create_posts'           => sprintf( 'create_%s', $plural ),
 
            );
        }
 
        /**
         * Filter the list of post type capabilities for the given post type.
         *
         * The dynamic portion of this hook, `$singular` refers to the post type's
         * name, for example "course" or "llms_membership".
         *
         * @since 3.13.0
         *
         * @param array $caps Array of capabilities.
         */
        return apply_filters(
            "llms_get_{$singular}_post_type_caps",
            $caps
        );
 
    }
 
    /**
     * Get an array of capabilities for earned engagements post types.
     *
     * @since 6.0.0
     *
     * @return array
     */
    public static function get_earned_engagements_post_type_caps() {
 
        return array(
 
            'read_post'              => LLMS_Roles::MANAGE_EARNED_ENGAGEMENT_CAP,
            'read_private_posts'     => LLMS_Roles::MANAGE_EARNED_ENGAGEMENT_CAP,
 
            'edit_post'              => LLMS_Roles::MANAGE_EARNED_ENGAGEMENT_CAP,
            'edit_posts'             => LLMS_Roles::MANAGE_EARNED_ENGAGEMENT_CAP,
            'edit_others_posts'      => LLMS_Roles::MANAGE_EARNED_ENGAGEMENT_CAP,
            'edit_private_posts'     => LLMS_Roles::MANAGE_EARNED_ENGAGEMENT_CAP,
            'edit_published_posts'   => LLMS_Roles::MANAGE_EARNED_ENGAGEMENT_CAP,
 
            'publish_posts'          => LLMS_Roles::MANAGE_EARNED_ENGAGEMENT_CAP,
 
            'delete_post'            => LLMS_Roles::MANAGE_EARNED_ENGAGEMENT_CAP,
            'delete_posts'           => LLMS_Roles::MANAGE_EARNED_ENGAGEMENT_CAP,
            'delete_private_posts'   => LLMS_Roles::MANAGE_EARNED_ENGAGEMENT_CAP,
            'delete_published_posts' => LLMS_Roles::MANAGE_EARNED_ENGAGEMENT_CAP,
            'delete_others_posts'    => LLMS_Roles::MANAGE_EARNED_ENGAGEMENT_CAP,
 
            'create_posts'           => LLMS_Roles::MANAGE_EARNED_ENGAGEMENT_CAP,
 
        );
 
    }
 
    /**
     * Retrieve taxonomy capabilities for custom taxonomies
     *
     * @since 3.13.0
     *
     * @param string|array $tax Taxonomy name/names (pass array of singular, plural to customize plural spelling).
     * @return array
     */
    public static function get_tax_caps( $tax ) {
 
        if ( ! is_array( $tax ) ) {
            $singular = $tax;
            $plural   = $tax . 's';
        } else {
            $singular = $tax[0];
            $plural   = $tax[1];
        }
 
        /**
         * Customize the taxonomy capabilities for the given taxonomy.
         *
         * The dynamic portion of this hook, `$singular` refers to the taxonomy's
         * registered name.
         *
         * @since 3.13.0
         *
         * @param array $caps Array of capabilities.
         */
        return apply_filters(
            "llms_get_{$singular}_tax_caps",
            array(
                'manage_terms' => sprintf( 'manage_%s', $plural ),
                'edit_terms'   => sprintf( 'edit_%s', $plural ),
                'delete_terms' => sprintf( 'delete_%s', $plural ),
                'assign_terms' => sprintf( 'assign_%s', $plural ),
            )
        );
 
    }
 
    /**
     * Retrieves the block template for use in post type registration.
     *
     * @since 6.0.0
     *
     * @param string $post_type The post type.
     * @return array|null Returns the block template array or null if no template is defined for the post type.
     */
    private static function get_template( $post_type ) {
 
        if ( empty( self::$templates ) ) {
            self::$templates = require LLMS_PLUGIN_DIR . 'includes/schemas/llms-block-templates.php';
        }
 
        return self::$templates[ $post_type ] ?? null;
 
    }
 
    /**
     * Register a custom post type.
     *
     * Automatically checks for duplicates and filters data.
     *
     * @since 3.13.0
     * @since 5.5.0 Added `lifterlms_register_post_type_{$name}` filters deprecation
     *              where `$name` is the the post type name, if the unprefixed name (removing 'llms_')
     *              is different from `$name`. E.g. it'll be triggered when registering when using
     *              `lifterlms_register_post_type_llms_engagement` but not when using `lifterlms_register_post_type_course`,
     *              for the latter, both the name and the unprefixed name are the same.
     * @since 6.0.0 Automatically load templates from the `llms-block-templates` schema.
     *              Added return value.
     *
     * @param string $name Post type name.
     * @param array  $data Post type data.
     * @return WP_Post_Type|WP_Error
     */
    public static function register_post_type( $name, $data ) {
 
        if ( ! post_type_exists( $name ) ) {
 
            $unprefixed_name = str_replace( 'llms_', '', $name );
 
            if ( $unprefixed_name !== $name ) {
                $data = apply_filters_deprecated(
                    "lifterlms_register_post_type_{$name}",
                    array( $data ),
                    '5.5.0',
                    "lifterlms_register_post_type_{$unprefixed_name}"
                );
            }
 
            if ( empty( $data['template'] ) ) {
                $data['template'] = self::get_template( $name );
            }
 
            /**
             * Modify post type registration arguments of a LifterLMS custom post type.
             *
             * The dynamic portion of this hook refers to the post type's name with the `llms_` prefix
             * removed (if it exist). For example, to modify the arguments for the membership post type
             * (`llms_membership`) the full hook would be "lifterlms_register_post_type_membership".
             *
             * @since 3.13.0
             *
             * @param array $data Post type registration arguments passed to `register_post_type()`.
             */
            $data = apply_filters( "lifterlms_register_post_type_{$unprefixed_name}", $data );
            return register_post_type( $name, $data );
 
        }
 
        return get_post_type_object( $name );
 
    }
 
    /**
     * Register Post Types.
     *
     * @since 1.0.0
     * @since 3.0.4 Made 'llms_access_plan' post type hierarchical to prevent a conflict with the Redirection plugin.
     * @since 3.33.0 `llms_question` post type is not publicly queryable anymore.
     * @since 3.37.12 Added 'revisions' support to course, lesson, and llms_mebership post types.
     * @since 4.5.1 Removed "excerpt" support for the course post type.
     * @since 4.17.0 Add "llms-sales-page" feature to course and membership post types.
     * @since 5.5.0 Register all the post types using `self::register_post_type()`.
     * @since 5.8.0 Remove all post type descriptions.
     * @since 6.0.0 Show `llms_my_certificate` ui (edit) only to who can `manage_lifterlms`.
     *             Register `llms_my_achievement` post type.
     *             Add thumbnail support for achievement and certificates (earned and template)
     *             Renames `llms_certificate` slug from `certificate` to `certificate-template`.
     *             Rename `llms_my_certificate` slug from `my_certificate` to `certificate`.
     *             Replaced the use of the deprecated `get_page() function with `get_post()`.
     *
     * @return void
     */
    public static function register_post_types() {
 
        // Course.
        $catalog_id = llms_get_page_id( 'shop' );
        self::register_post_type(
            'course',
            array(
                'labels'              => array(
                    'name'               => __( 'Courses', 'lifterlms' ),
                    'singular_name'      => __( 'Course', 'lifterlms' ),
                    'menu_name'          => _x( 'Courses', 'Admin menu name', 'lifterlms' ),
                    'add_new'            => __( 'Add Course', 'lifterlms' ),
                    'add_new_item'       => __( 'Add New Course', 'lifterlms' ),
                    'edit'               => __( 'Edit', 'lifterlms' ),
                    'edit_item'          => __( 'Edit Course', 'lifterlms' ),
                    'new_item'           => __( 'New Course', 'lifterlms' ),
                    'view'               => __( 'View Course', 'lifterlms' ),
                    'view_item'          => __( 'View Course', 'lifterlms' ),
                    'search_items'       => __( 'Search Courses', 'lifterlms' ),
                    'not_found'          => __( 'No Courses found', 'lifterlms' ),
                    'not_found_in_trash' => __( 'No Courses found in trash', 'lifterlms' ),
                    'parent'             => __( 'Parent Course', 'lifterlms' ),
                ),
                'public'              => true,
                'show_ui'             => true,
                'menu_icon'           => 'dashicons-welcome-learn-more',
                'capabilities'        => self::get_post_type_caps( 'course' ),
                'map_meta_cap'        => true,
                'publicly_queryable'  => true,
                'exclude_from_search' => false,
                'hierarchical'        => false,
                'rewrite'             => array(
                    'slug'       => _x( 'course', 'course url slug', 'lifterlms' ),
                    'with_front' => false,
                    'feeds'      => true,
                ),
                'query_var'           => true,
                'supports'            => array( 'title', 'author', 'editor', 'thumbnail', 'comments', 'custom-fields', 'page-attributes', 'revisions', 'llms-clone-post', 'llms-export-post', 'llms-sales-page' ),
                'has_archive'         => ( $catalog_id && get_post( $catalog_id ) ) ? get_page_uri( $catalog_id ) : _x( 'courses', 'course archive url slug', 'lifterlms' ),
                'show_in_nav_menus'   => true,
                'menu_position'       => 52,
            )
        );
 
        // Section.
        self::register_post_type(
            'section',
            array(
                'labels'              => array(
                    'name'               => __( 'Sections', 'lifterlms' ),
                    'singular_name'      => __( 'Section', 'lifterlms' ),
                    'add_new'            => __( 'Add Section', 'lifterlms' ),
                    'add_new_item'       => __( 'Add New Section', 'lifterlms' ),
                    'edit'               => __( 'Edit', 'lifterlms' ),
                    'edit_item'          => __( 'Edit Section', 'lifterlms' ),
                    'new_item'           => __( 'New Section', 'lifterlms' ),
                    'view'               => __( 'View Section', 'lifterlms' ),
                    'view_item'          => __( 'View Section', 'lifterlms' ),
                    'search_items'       => __( 'Search Sections', 'lifterlms' ),
                    'not_found'          => __( 'No Sections found', 'lifterlms' ),
                    'not_found_in_trash' => __( 'No Sections found in trash', 'lifterlms' ),
                    'parent'             => __( 'Parent Sections', 'lifterlms' ),
                    'menu_name'          => _x( 'Sections', 'Admin menu name', 'lifterlms' ),
                ),
                'public'              => false,
                'show_ui'             => false,
                'map_meta_cap'        => true,
                'publicly_queryable'  => false,
                'exclude_from_search' => true,
                'hierarchical'        => false,
                'show_in_nav_menus'   => false,
                'rewrite'             => false,
                'query_var'           => false,
                'supports'            => array( 'title' ),
                'has_archive'         => false,
            )
        );
 
        // Lesson.
        self::register_post_type(
            'lesson',
            array(
                'labels'              => array(
                    'name'               => __( 'Lessons', 'lifterlms' ),
                    'singular_name'      => __( 'Lesson', 'lifterlms' ),
                    'add_new'            => __( 'Add Lesson', 'lifterlms' ),
                    'add_new_item'       => __( 'Add New Lesson', 'lifterlms' ),
                    'edit'               => __( 'Edit', 'lifterlms' ),
                    'edit_item'          => __( 'Edit Lesson', 'lifterlms' ),
                    'new_item'           => __( 'New Lesson', 'lifterlms' ),
                    'view'               => __( 'View Lesson', 'lifterlms' ),
                    'view_item'          => __( 'View Lesson', 'lifterlms' ),
                    'search_items'       => __( 'Search Lessons', 'lifterlms' ),
                    'not_found'          => __( 'No Lessons found', 'lifterlms' ),
                    'not_found_in_trash' => __( 'No Lessons found in trash', 'lifterlms' ),
                    'parent'             => __( 'Parent Lessons', 'lifterlms' ),
                    'menu_name'          => _x( 'Lessons', 'Admin menu name', 'lifterlms' ),
                ),
                'public'              => true,
                'show_ui'             => true,
                'capabilities'        => self::get_post_type_caps( 'lesson' ),
                'map_meta_cap'        => true,
                'publicly_queryable'  => true,
                'exclude_from_search' => true,
                'show_in_menu'        => 'edit.php?post_type=course',
                'hierarchical'        => false,
                'rewrite'             => array(
                    'slug'       => _x( 'lesson', 'lesson url slug', 'lifterlms' ),
                    'with_front' => false,
                    'feeds'      => true,
                ),
                'show_in_nav_menus'   => false,
                'query_var'           => true,
                'supports'            => array( 'title', 'editor', 'excerpt', 'thumbnail', 'comments', 'custom-fields', 'page-attributes', 'revisions', 'author', 'llms-clone-post' ),
            )
        );
 
        // Quiz.
        self::register_post_type(
            'llms_quiz',
            array(
                'labels'              => array(
                    'name'               => __( 'Quizzes', 'lifterlms' ),
                    'singular_name'      => __( 'Quiz', 'lifterlms' ),
                    'add_new'            => __( 'Add Quiz', 'lifterlms' ),
                    'add_new_item'       => __( 'Add New Quiz', 'lifterlms' ),
                    'edit'               => __( 'Edit', 'lifterlms' ),
                    'edit_item'          => __( 'Edit Quiz', 'lifterlms' ),
                    'new_item'           => __( 'New Quiz', 'lifterlms' ),
                    'view'               => __( 'View Quiz', 'lifterlms' ),
                    'view_item'          => __( 'View Quiz', 'lifterlms' ),
                    'search_items'       => __( 'Search Quiz', 'lifterlms' ),
                    'not_found'          => __( 'No Quizzes found', 'lifterlms' ),
                    'not_found_in_trash' => __( 'No Quizzes found in trash', 'lifterlms' ),
                    'parent'             => __( 'Parent Quizzes', 'lifterlms' ),
                    'menu_name'          => _x( 'Quizzes', 'Admin menu name', 'lifterlms' ),
                ),
                'public'              => true,
                'show_ui'             => false,
                'map_meta_cap'        => true,
                'capabilities'        => self::get_post_type_caps( array( 'quiz', 'quizzes' ) ),
                'publicly_queryable'  => true,
                'exclude_from_search' => true,
                'show_in_menu'        => 'edit.php?post_type=course',
                'hierarchical'        => false,
                'rewrite'             => array(
                    'slug'       => _x( 'quiz', 'quiz url slug', 'lifterlms' ),
                    'with_front' => false,
                    'feeds'      => true,
                ),
                'show_in_nav_menus'   => false,
                'query_var'           => true,
                'supports'            => array( 'title', 'editor', 'author', 'custom-fields' ),
            )
        );
 
        // Quiz Question.
        self::register_post_type(
            'llms_question',
            array(
                'labels'              => array(
                    'name'               => __( 'Questions', 'lifterlms' ),
                    'singular_name'      => __( 'Question', 'lifterlms' ),
                    'add_new'            => __( 'Add Question', 'lifterlms' ),
                    'add_new_item'       => __( 'Add New Question', 'lifterlms' ),
                    'edit'               => __( 'Edit', 'lifterlms' ),
                    'edit_item'          => __( 'Edit Question', 'lifterlms' ),
                    'new_item'           => __( 'New Question', 'lifterlms' ),
                    'view'               => __( 'View Question', 'lifterlms' ),
                    'view_item'          => __( 'View Question', 'lifterlms' ),
                    'search_items'       => __( 'Search Questions', 'lifterlms' ),
                    'not_found'          => __( 'No Questions found', 'lifterlms' ),
                    'not_found_in_trash' => __( 'No Questions found in trash', 'lifterlms' ),
                    'parent'             => __( 'Parent Questions', 'lifterlms' ),
                    'menu_name'          => _x( 'Quiz Questions', 'Admin menu name', 'lifterlms' ),
                ),
                'public'              => false,
                'show_ui'             => false,
                'map_meta_cap'        => true,
                'capabilities'        => self::get_post_type_caps( 'question' ),
                'publicly_queryable'  => false,
                'exclude_from_search' => true,
                'show_in_menu'        => 'edit.php?post_type=course',
                'hierarchical'        => false,
                'rewrite'             => false,
                'show_in_nav_menus'   => false,
                'query_var'           => false,
                'supports'            => array( 'title', 'editor' ),
            )
        );
 
        // Membership.
        $membership_page_id = llms_get_page_id( 'memberships' );
        self::register_post_type(
            'llms_membership',
            array(
                'labels'              => array(
                    'name'               => __( 'Memberships', 'lifterlms' ),
                    'singular_name'      => __( 'Membership', 'lifterlms' ),
                    'menu_name'          => _x( 'Memberships', 'Admin menu name', 'lifterlms' ),
                    'add_new'            => __( 'Add Membership', 'lifterlms' ),
                    'add_new_item'       => __( 'Add New Membership', 'lifterlms' ),
                    'edit'               => __( 'Edit', 'lifterlms' ),
                    'edit_item'          => __( 'Edit Membership', 'lifterlms' ),
                    'new_item'           => __( 'New Membership', 'lifterlms' ),
                    'view'               => __( 'View Membership', 'lifterlms' ),
                    'view_item'          => __( 'View Membership', 'lifterlms' ),
                    'search_items'       => __( 'Search Memberships', 'lifterlms' ),
                    'not_found'          => __( 'No Memberships found', 'lifterlms' ),
                    'not_found_in_trash' => __( 'No Memberships found in trash', 'lifterlms' ),
                    'parent'             => __( 'Parent Membership', 'lifterlms' ),
                ),
                'public'              => true,
                'show_ui'             => true,
                'capabilities'        => self::get_post_type_caps( 'membership' ),
                'map_meta_cap'        => true,
                'menu_icon'           => 'dashicons-groups',
                'publicly_queryable'  => true,
                'exclude_from_search' => false,
                'show_in_menu'        => true,
                'hierarchical'        => false,
                'rewrite'             => array(
                    'slug'       => _x( 'membership', 'membership url slug', 'lifterlms' ),
                    'with_front' => false,
                    'feeds'      => true,
                ),
                'query_var'           => true,
                'supports'            => array( 'title', 'editor', 'thumbnail', 'comments', 'custom-fields', 'page-attributes', 'revisions', 'llms-sales-page' ),
                'has_archive'         => ( $membership_page_id && get_post( $membership_page_id ) ) ? get_page_uri( $membership_page_id ) : _x( 'memberships', 'membership archive url slug', 'lifterlms' ),
                'show_in_nav_menus'   => true,
                'menu_position'       => 52,
            )
        );
 
        // Engagement.
        self::register_post_type(
            'llms_engagement',
            array(
                'labels'              => array(
                    'name'               => __( 'Engagements', 'lifterlms' ),
                    'singular_name'      => __( 'Engagement', 'lifterlms' ),
                    'add_new'            => __( 'Add Engagement', 'lifterlms' ),
                    'add_new_item'       => __( 'Add New Engagement', 'lifterlms' ),
                    'edit'               => __( 'Edit', 'lifterlms' ),
                    'edit_item'          => __( 'Edit Engagement', 'lifterlms' ),
                    'new_item'           => __( 'New Engagement', 'lifterlms' ),
                    'view'               => __( 'View Engagement', 'lifterlms' ),
                    'view_item'          => __( 'View Engagement', 'lifterlms' ),
                    'search_items'       => __( 'Search Engagement', 'lifterlms' ),
                    'not_found'          => __( 'No Engagement found', 'lifterlms' ),
                    'not_found_in_trash' => __( 'No Engagement found in trash', 'lifterlms' ),
                    'parent'             => __( 'Parent Engagement', 'lifterlms' ),
                    'menu_name'          => _x( 'Engagements', 'Admin menu name', 'lifterlms' ),
                ),
                'public'              => false,
                'show_ui'             => ( current_user_can( apply_filters( 'lifterlms_admin_engagements_access', 'manage_lifterlms' ) ) ) ? true : false,
                'map_meta_cap'        => true,
                'publicly_queryable'  => false,
                'exclude_from_search' => true,
                'menu_position'       => 52,
                'menu_icon'           => 'dashicons-awards',
                'hierarchical'        => false,
                'show_in_nav_menus'   => false,
                'rewrite'             => false,
                'query_var'           => false,
                'supports'            => array( 'title' ),
                'has_archive'         => false,
            )
        );
 
        // Order.
        self::register_post_type(
            'llms_order',
            array(
                'labels'              => array(
                    'name'               => __( 'Orders', 'lifterlms' ),
                    'singular_name'      => __( 'Order', 'lifterlms' ),
                    'add_new'            => __( 'Add Order', 'lifterlms' ),
                    'add_new_item'       => __( 'Add New Order', 'lifterlms' ),
                    'edit'               => __( 'Edit', 'lifterlms' ),
                    'edit_item'          => __( 'Edit Order', 'lifterlms' ),
                    'new_item'           => __( 'New Order', 'lifterlms' ),
                    'view'               => __( 'View Order', 'lifterlms' ),
                    'view_item'          => __( 'View Order', 'lifterlms' ),
                    'search_items'       => __( 'Search Orders', 'lifterlms' ),
                    'not_found'          => __( 'No Orders found', 'lifterlms' ),
                    'not_found_in_trash' => __( 'No Orders found in trash', 'lifterlms' ),
                    'parent'             => __( 'Parent Orders', 'lifterlms' ),
                    'menu_name'          => _x( 'Orders', 'Admin menu name', 'lifterlms' ),
                ),
                'public'              => false,
                'show_ui'             => ( current_user_can( apply_filters( 'lifterlms_admin_order_access', 'manage_lifterlms' ) ) ) ? true : false,
                'map_meta_cap'        => true,
                'publicly_queryable'  => false,
                'menu_icon'           => 'dashicons-cart',
                'menu_position'       => 52,
                'exclude_from_search' => true,
                'hierarchical'        => false,
                'show_in_nav_menus'   => false,
                'rewrite'             => false,
                'query_var'           => false,
                'supports'            => array( 'title', 'comments', 'custom-fields' ),
                'has_archive'         => false,
                'capabilities'        => array(
                    'create_posts' => 'do_not_allow',
                ),
            )
        );
 
        // Transaction.
        self::register_post_type(
            'llms_transaction',
            array(
                'labels'              => array(
                    'name'               => __( 'Transactions', 'lifterlms' ),
                    'singular_name'      => __( 'Transaction', 'lifterlms' ),
                    'add_new'            => __( 'Add Transaction', 'lifterlms' ),
                    'add_new_item'       => __( 'Add New Transaction', 'lifterlms' ),
                    'edit'               => __( 'Edit', 'lifterlms' ),
                    'edit_item'          => __( 'Edit Transaction', 'lifterlms' ),
                    'new_item'           => __( 'New Transaction', 'lifterlms' ),
                    'view'               => __( 'View Transaction', 'lifterlms' ),
                    'view_item'          => __( 'View Transaction', 'lifterlms' ),
                    'search_items'       => __( 'Search Transactions', 'lifterlms' ),
                    'not_found'          => __( 'No Transactions found', 'lifterlms' ),
                    'not_found_in_trash' => __( 'No Transactions found in trash', 'lifterlms' ),
                    'parent'             => __( 'Parent Transactions', 'lifterlms' ),
                    'menu_name'          => _x( 'Orders', 'Admin menu name', 'lifterlms' ),
                ),
                'public'              => false,
                'show_ui'             => false,
                'map_meta_cap'        => true,
                'publicly_queryable'  => false,
                'exclude_from_search' => true,
                'show_in_menu'        => false,
                'hierarchical'        => false,
                'show_in_nav_menus'   => false,
                'rewrite'             => false,
                'query_var'           => false,
                'supports'            => array( '' ),
                'has_archive'         => false,
                'capabilities'        => array(
                    'create_posts' => 'do_not_allow',
                ),
            )
        );
 
        // Achievement.
        self::register_post_type(
            'llms_achievement',
            array(
                'labels'              => array(
                    'name'                  => __( 'Achievement Templates', 'lifterlms' ),
                    'singular_name'         => __( 'Achievement Template', 'lifterlms' ),
                    'add_new'               => __( 'Add Achievement Template', 'lifterlms' ),
                    'add_new_item'          => __( 'Add New Achievement Template', 'lifterlms' ),
                    'edit'                  => __( 'Edit', 'lifterlms' ),
                    'edit_item'             => __( 'Edit Achievement Template', 'lifterlms' ),
                    'new_item'              => __( 'New Achievement Template', 'lifterlms' ),
                    'view'                  => __( 'View Achievement Template', 'lifterlms' ),
                    'view_item'             => __( 'View Achievement Template', 'lifterlms' ),
                    'search_items'          => __( 'Search Achievement Templates', 'lifterlms' ),
                    'not_found'             => __( 'No Achievement Templates found', 'lifterlms' ),
                    'not_found_in_trash'    => __( 'No Achievement Templates found in trash', 'lifterlms' ),
                    'parent'                => __( 'Parent Achievement Template', 'lifterlms' ),
                    'menu_name'             => _x( 'Achievements', 'Admin menu name', 'lifterlms' ),
                    'featured_image'        => __( 'Achievement Image', 'lifterlms' ),
                    'set_featured_image'    => __( 'Set achievement  image', 'lifterlms' ),
                    'remove_featured_image' => __( 'Remove achievement image', 'lifterlms' ),
                    'use_featured_image'    => __( 'Use achievement image', 'lifterlms' ),
                ),
                'public'              => false,
                'show_ui'             => ( current_user_can( apply_filters( 'lifterlms_admin_achievements_access', 'manage_lifterlms' ) ) ) ? true : false,
                'map_meta_cap'        => true,
                'publicly_queryable'  => false,
                'exclude_from_search' => true,
                'show_in_menu'        => 'edit.php?post_type=llms_engagement',
                'hierarchical'        => false,
                'show_in_nav_menus'   => false,
                'rewrite'             => false,
                'query_var'           => false,
                'supports'            => array( 'title', 'thumbnail' ),
                'has_archive'         => false,
            )
        );
 
        // Earned achievements.
        self::register_post_type(
            'llms_my_achievement',
            array(
                'labels'              => array(
                    'name'                  => __( 'Awarded Achievements', 'lifterlms' ),
                    'singular_name'         => __( 'Awarded Achievement', 'lifterlms' ),
                    'add_new'               => __( 'Award Achievement', 'lifterlms' ),
                    'add_new_item'          => __( 'Award New Achievement', 'lifterlms' ),
                    'edit'                  => __( 'Edit', 'lifterlms' ),
                    'edit_item'             => __( 'Edit Awarded Achievement', 'lifterlms' ),
                    'new_item'              => __( 'New Awarded Achievement', 'lifterlms' ),
                    'view'                  => __( 'View Awarded Achievement', 'lifterlms' ),
                    'view_item'             => __( 'View Awarded Achievement', 'lifterlms' ),
                    'search_items'          => __( 'Search Awarded Achievements', 'lifterlms' ),
                    'not_found'             => __( 'No Awarded Achievements found', 'lifterlms' ),
                    'not_found_in_trash'    => __( 'No Awarded Achievements found in trash', 'lifterlms' ),
                    'parent'                => __( 'Parent Awarded Achievements', 'lifterlms' ),
                    'menu_name'             => _x( 'Awarded Achievements', 'Admin menu name', 'lifterlms' ),
                    'featured_image'        => __( 'Achievement Image', 'lifterlms' ),
                    'set_featured_image'    => __( 'Set awarded achievement image', 'lifterlms' ),
                    'remove_featured_image' => __( 'Remove awarded achievement image', 'lifterlms' ),
                    'use_featured_image'    => __( 'Use awarded achievement image', 'lifterlms' ),
                ),
                'description'         => __( 'This is where you can view all of the awarded achievements.', 'lifterlms' ),
                'public'              => false,
                /**
                 * Filters the needed capability to generate and allow a UI for managing `llms_my_achievement` post type in the admin.
                 *
                 * @since 6.0.0
                 *
                 * @param bool $show_ui The needed capability to generate and allow a UI for managing `llms_my_achievement` post type in the admin.
                 *                      Default is `manage_earned_engagements`.
                 */
                'show_ui'             => ( current_user_can( apply_filters( 'lifterlms_admin_my_achievements_access', LLMS_Roles::MANAGE_EARNED_ENGAGEMENT_CAP ) ) ) ? true : false,
                'capabilities'        => self::get_post_type_caps( 'my_achievement' ),
                'map_meta_cap'        => false,
                'publicly_queryable'  => false,
                'exclude_from_search' => true,
                /** This filter is documented above. */
                'show_in_menu'        => ( current_user_can( apply_filters( 'lifterlms_admin_my_achievements_access', LLMS_Roles::MANAGE_EARNED_ENGAGEMENT_CAP ) ) ) ? 'edit.php?post_type=llms_engagement' : false,
                'hierarchical'        => false,
                'rewrite'             => false,
                'show_in_nav_menus'   => false,
                'has_archive'         => false,
                'query_var'           => false,
                'supports'            => array( 'title', 'thumbnail' ),
            )
        );
 
        // Certificate.
        self::register_certificate_post_type(
            'llms_certificate',
            array(
                'name'               => __( 'Certificate Templates', 'lifterlms' ),
                'singular_name'      => __( 'Certificate Template', 'lifterlms' ),
                'add_new'            => __( 'Add Certificate Template', 'lifterlms' ),
                'add_new_item'       => __( 'Add New Certificate Template', 'lifterlms' ),
                'edit_item'          => __( 'Edit Certificate Template', 'lifterlms' ),
                'new_item'           => __( 'New Certificate Template', 'lifterlms' ),
                'view'               => __( 'View Certificate Template', 'lifterlms' ),
                'view_item'          => __( 'View Certificate Template', 'lifterlms' ),
                'search_items'       => __( 'Search Certificate Templates', 'lifterlms' ),
                'not_found'          => __( 'No Certificate Templates found', 'lifterlms' ),
                'not_found_in_trash' => __( 'No Certificate Templates found in trash', 'lifterlms' ),
                'parent'             => __( 'Parent Certificate Templates', 'lifterlms' ),
                'menu_name'          => _x( 'Certificates', 'Admin menu name', 'lifterlms' ),
            ),
            array(
                'map_meta_cap' => true,
            ),
            _x( 'certificate-template', 'slug', 'lifterlms' ),
            /**
             * Filters the WordPress user capability required for a user to manage certificate templates on the admin panel.
             *
             * @since Unknown
             *
             * @param string $capability User capability. Default: `manage_lifterlms`.
             */
            apply_filters( 'lifterlms_admin_certificates_access', 'manage_lifterlms' )
        );
 
        // Earned certificate.
        self::register_certificate_post_type(
            'llms_my_certificate',
            array(
                'name'               => __( 'Awarded Certificates', 'lifterlms' ),
                'singular_name'      => __( 'Awarded Certificate', 'lifterlms' ),
                'add_new'            => __( 'Award Certificate', 'lifterlms' ),
                'add_new_item'       => __( 'Award New Certificate', 'lifterlms' ),
                'edit_item'          => __( 'Edit Awarded Certificate', 'lifterlms' ),
                'new_item'           => __( 'New Awarded Certificate', 'lifterlms' ),
                'view'               => __( 'View Awarded Certificate', 'lifterlms' ),
                'view_item'          => __( 'View Awarded Certificate', 'lifterlms' ),
                'search_items'       => __( 'Search Awarded Certificates', 'lifterlms' ),
                'not_found'          => __( 'No Awarded Certificates found', 'lifterlms' ),
                'not_found_in_trash' => __( 'No Awarded Certificates found in trash', 'lifterlms' ),
                'parent'             => __( 'Parent Awarded Certificates', 'lifterlms' ),
                'menu_name'          => _x( 'Awarded Certificates', 'Admin menu name', 'lifterlms' ),
            ),
            array(
                'capabilities' => self::get_post_type_caps( 'my_certificate' ),
                'map_meta_cap' => false,
            ),
            _x( 'certificate', 'slug', 'lifterlms' ),
            /**
             * Filters the needed capability to generate and allow a UI for managing `llms_my_certificate` post type in the admin.
             *
             * @since 6.0.0
             *
             * @param bool $show_ui The needed capability to generate and allow a UI for managing `llms_my_certificate` post type in the admin.
             *                      Default is `manage_earned_engagements`.
             */
            apply_filters( 'lifterlms_admin_my_certificates_access', LLMS_Roles::MANAGE_EARNED_ENGAGEMENT_CAP )
        );
 
        // Email.
        self::register_post_type(
            'llms_email',
            array(
                'labels'              => array(
                    'name'               => __( 'Email Templates', 'lifterlms' ),
                    'singular_name'      => __( 'Email Template', 'lifterlms' ),
                    'add_new'            => __( 'Add Email Template', 'lifterlms' ),
                    'add_new_item'       => __( 'Add New Email Template', 'lifterlms' ),
                    'edit'               => __( 'Edit', 'lifterlms' ),
                    'edit_item'          => __( 'Edit Email Template', 'lifterlms' ),
                    'new_item'           => __( 'New Email Template', 'lifterlms' ),
                    'view'               => __( 'View Email Template', 'lifterlms' ),
                    'view_item'          => __( 'View Email Template', 'lifterlms' ),
                    'search_items'       => __( 'Search Email Templates', 'lifterlms' ),
                    'not_found'          => __( 'No Emails found', 'lifterlms' ),
                    'not_found_in_trash' => __( 'No Emails found in trash', 'lifterlms' ),
                    'parent'             => __( 'Parent Email Templates', 'lifterlms' ),
                    'menu_name'          => _x( 'Emails', 'Admin menu name', 'lifterlms' ),
                ),
                'public'              => false,
                'show_ui'             => ( current_user_can( apply_filters( 'lifterlms_admin_emails_access', 'manage_lifterlms' ) ) ) ? true : false,
                'map_meta_cap'        => true,
                'publicly_queryable'  => false,
                'exclude_from_search' => true,
                'show_in_menu'        => 'edit.php?post_type=llms_engagement',
                'hierarchical'        => false,
                'show_in_nav_menus'   => false,
                'rewrite'             => false,
                'query_var'           => false,
                'supports'            => array( 'title', 'editor' ),
                'has_archive'         => false,
            )
        );
 
        // Coupon.
        self::register_post_type(
            'llms_coupon',
            array(
                'labels'              => array(
                    'name'               => __( 'Coupons', 'lifterlms' ),
                    'singular_name'      => __( 'Coupon', 'lifterlms' ),
                    'add_new'            => __( 'Add Coupon', 'lifterlms' ),
                    'add_new_item'       => __( 'Add New Coupon', 'lifterlms' ),
                    'edit'               => __( 'Edit', 'lifterlms' ),
                    'edit_item'          => __( 'Edit Coupon', 'lifterlms' ),
                    'new_item'           => __( 'New Coupon', 'lifterlms' ),
                    'view'               => __( 'View Coupon', 'lifterlms' ),
                    'view_item'          => __( 'View Coupon', 'lifterlms' ),
                    'search_items'       => __( 'Search Coupon', 'lifterlms' ),
                    'not_found'          => __( 'No Coupon found', 'lifterlms' ),
                    'not_found_in_trash' => __( 'No Coupon found in trash', 'lifterlms' ),
                    'parent'             => __( 'Parent Coupon', 'lifterlms' ),
                    'menu_name'          => _x( 'Coupons', 'Admin menu name', 'lifterlms' ),
                ),
                'public'              => false,
                'show_ui'             => ( current_user_can( apply_filters( 'lifterlms_admin_coupons_access', 'manage_lifterlms' ) ) ) ? true : false,
                'map_meta_cap'        => true,
                'publicly_queryable'  => false,
                'exclude_from_search' => true,
                'show_in_menu'        => 'edit.php?post_type=llms_order',
                'hierarchical'        => false,
                'show_in_nav_menus'   => false,
                'rewrite'             => false,
                'query_var'           => false,
                'supports'            => array( 'title' ),
                'has_archive'         => false,
            )
        );
 
        // Voucher.
        self::register_post_type(
            'llms_voucher',
            array(
                'labels'              => array(
                    'name'               => __( 'Vouchers', 'lifterlms' ),
                    'singular_name'      => __( 'Voucher', 'lifterlms' ),
                    'add_new'            => __( 'Add Voucher', 'lifterlms' ),
                    'add_new_item'       => __( 'Add New Voucher', 'lifterlms' ),
                    'edit'               => __( 'Edit', 'lifterlms' ),
                    'edit_item'          => __( 'Edit Voucher', 'lifterlms' ),
                    'new_item'           => __( 'New Voucher', 'lifterlms' ),
                    'view'               => __( 'View Voucher', 'lifterlms' ),
                    'view_item'          => __( 'View Voucher', 'lifterlms' ),
                    'search_items'       => __( 'Search Voucher', 'lifterlms' ),
                    'not_found'          => __( 'No Voucher found', 'lifterlms' ),
                    'not_found_in_trash' => __( 'No Voucher found in trash', 'lifterlms' ),
                    'parent'             => __( 'Parent Voucher', 'lifterlms' ),
                    'menu_name'          => _x( 'Vouchers', 'Admin menu name', 'lifterlms' ),
                ),
                'public'              => false,
                'show_ui'             => ( current_user_can( apply_filters( 'lifterlms_admin_vouchers_access', 'manage_lifterlms' ) ) ) ? true : false,
                'map_meta_cap'        => true,
                'publicly_queryable'  => false,
                'exclude_from_search' => true,
                'show_in_menu'        => 'edit.php?post_type=llms_order',
                'hierarchical'        => false,
                'show_in_nav_menus'   => false,
                'rewrite'             => false,
                'query_var'           => false,
                'supports'            => array( 'title' ),
                'has_archive'         => false,
            )
        );
 
        // Review.
        self::register_post_type(
            'llms_review',
            array(
                'labels'              => array(
                    'name'               => __( 'Reviews', 'lifterlms' ),
                    'singular_name'      => __( 'Review', 'lifterlms' ),
                    'menu_name'          => _x( 'Reviews', 'Admin menu name', 'lifterlms' ),
                    'add_new'            => __( 'Add Review', 'lifterlms' ),
                    'add_new_item'       => __( 'Add New Review', 'lifterlms' ),
                    'edit'               => __( 'Edit', 'lifterlms' ),
                    'edit_item'          => __( 'Edit Review', 'lifterlms' ),
                    'new_item'           => __( 'New Review', 'lifterlms' ),
                    'view'               => __( 'View Review', 'lifterlms' ),
                    'view_item'          => __( 'View Review', 'lifterlms' ),
                    'search_items'       => __( 'Search Reviews', 'lifterlms' ),
                    'not_found'          => __( 'No Reviews found', 'lifterlms' ),
                    'not_found_in_trash' => __( 'No Reviews found in trash', 'lifterlms' ),
                    'parent'             => __( 'Parent Review', 'lifterlms' ),
                ),
                'public'              => false,
                'show_ui'             => ( current_user_can( apply_filters( 'lifterlms_admin_reviews_access', 'manage_lifterlms' ) ) ) ? true : false,
                'map_meta_cap'        => true,
                'publicly_queryable'  => false,
                'exclude_from_search' => true,
                'show_in_menu'        => 'edit.php?post_type=course',
                'hierarchical'        => false,
                'show_in_nav_menus'   => false,
                'rewrite'             => false,
                'query_var'           => false,
                'has_archive'         => false,
                'supports'            => array( 'title', 'editor', 'excerpt', 'thumbnail', 'comments', 'custom-fields', 'page-attributes' ),
            )
        );
 
        // Access Plan.
        self::register_post_type(
            'llms_access_plan',
            array(
                'labels'              => array(
                    'name'               => __( 'Access Plans', 'lifterlms' ),
                    'singular_name'      => __( 'Access Plan', 'lifterlms' ),
                    'add_new'            => __( 'Add Access Plan', 'lifterlms' ),
                    'add_new_item'       => __( 'Add New Access Plan', 'lifterlms' ),
                    'edit'               => __( 'Edit', 'lifterlms' ),
                    'edit_item'          => __( 'Edit Access Plan', 'lifterlms' ),
                    'new_item'           => __( 'New Access Plan', 'lifterlms' ),
                    'view'               => __( 'View Access Plan', 'lifterlms' ),
                    'view_item'          => __( 'View Access Plan', 'lifterlms' ),
                    'search_items'       => __( 'Search Access Plans', 'lifterlms' ),
                    'not_found'          => __( 'No Access Plans found', 'lifterlms' ),
                    'not_found_in_trash' => __( 'No Access Plans found in trash', 'lifterlms' ),
                    'parent'             => __( 'Parent Access Plans', 'lifterlms' ),
                    'menu_name'          => _x( 'Access Plans', 'Admin menu name', 'lifterlms' ),
                ),
                'public'              => false,
                'show_ui'             => false,
                'map_meta_cap'        => true,
                'publicly_queryable'  => false,
                'exclude_from_search' => true,
                /**
                 * Making this post type hierarchical prevents a conflict
                 * with the Redirection plugin (https://wordpress.org/plugins/redirection/)
                 * When 301 monitoring is turned on, Redirection creates access plans
                 * for each access plan that redirect the course or membership
                 * to the site's home page.
                 */
                'hierarchical'        => true,
                'show_in_nav_menus'   => false,
                'rewrite'             => false,
                'query_var'           => false,
                'supports'            => array( 'title' ),
                'has_archive'         => false,
            )
        );
 
    }
 
    /**
     * Registers awarded and template certificate post types.
     *
     * @since 6.0.0
     *
     * @param string $post_type    Post type name.
     * @param array  $labels       Array of post type labels.
     * @param array  $args         Array of post type args.
     * @param string $rewrite_slug Post type rewrite slug.
     * @param string $admin_cap    User capability required to manage the post type on the admin panel.
     * @return void
     */
    private static function register_certificate_post_type( $post_type, $labels, $args, $rewrite_slug, $admin_cap ) {
 
        $user_can = current_user_can( $admin_cap );
        $supports = array( 'title', 'editor', 'thumbnail' );
 
        if ( 'llms_my_certificate' === $post_type ) {
            $supports[] = 'author';
        }
 
        $base_labels = array(
            'edit'                  => __( 'Edit', 'lifterlms' ),
            'featured_image'        => __( 'Background Image', 'lifterlms' ),
            'set_featured_image'    => __( 'Set background image', 'lifterlms' ),
            'remove_featured_image' => __( 'Remove background image', 'lifterlms' ),
            'use_featured_image'    => __( 'Use background image', 'lifterlms' ),
        );
 
        $base_args = array(
            'labels'              => wp_parse_args( $labels, $base_labels ),
            'show_ui'             => $user_can,
            'publicly_queryable'  => 'llms_certificate' === $post_type ? $user_can : true,
            'show_in_rest'        => llms_is_block_editor_supported_for_certificates() && $user_can,
            'public'              => true,
            'hierarchical'        => false,
            'exclude_from_search' => true,
            'show_in_menu'        => 'edit.php?post_type=llms_engagement',
            'show_in_nav_menus'   => false,
            'query_var'           => true,
            'supports'            => $supports,
            'rewrite'             => array(
                'slug'       => $rewrite_slug,
                'with_front' => false,
                'feeds'      => true,
            ),
        );
 
        self::register_post_type( $post_type, wp_parse_args( $args, $base_args ) );
 
    }
 
    /**
     * Register post statuses
     *
     * @since 3.0.0
     * @since 3.19.0 Unknwn.
     *
     * @return void
     */
    public static function register_post_statuses() {
 
        $order_statuses = self::get_order_statuses();
 
        $txn_statuses = apply_filters(
            'lifterlms_register_transaction_post_statuses',
            array(
                'llms-txn-failed'    => array(
                    'label'                     => _x( 'Failed', 'Transaction status', 'lifterlms' ),
                    'public'                    => true,
                    'exclude_from_search'       => false,
                    'show_in_admin_all_list'    => true,
                    'show_in_admin_status_list' => true,
                    'label_count'               => _n_noop( 'Failed <span class="count">(%s)</span>', 'Failed <span class="count">(%s)</span>', 'lifterlms' ),
                ),
                'llms-txn-pending'   => array(
                    'label'                     => _x( 'Pending', 'Transaction status', 'lifterlms' ),
                    'public'                    => true,
                    'exclude_from_search'       => false,
                    'show_in_admin_all_list'    => true,
                    'show_in_admin_status_list' => true,
                    'label_count'               => _n_noop( 'Pending <span class="count">(%s)</span>', 'Pending <span class="count">(%s)</span>', 'lifterlms' ),
                ),
                'llms-txn-refunded'  => array(
                    'label'                     => _x( 'Refunded', 'Transaction status', 'lifterlms' ),
                    'public'                    => true,
                    'exclude_from_search'       => false,
                    'show_in_admin_all_list'    => true,
                    'show_in_admin_status_list' => true,
                    'label_count'               => _n_noop( 'Refunded <span class="count">(%s)</span>', 'Refunded <span class="count">(%s)</span>', 'lifterlms' ),
                ),
                'llms-txn-succeeded' => array(
                    'label'                     => _x( 'Succeeded', 'Transaction status', 'lifterlms' ),
                    'public'                    => true,
                    'exclude_from_search'       => false,
                    'show_in_admin_all_list'    => true,
                    'show_in_admin_status_list' => true,
                    'label_count'               => _n_noop( 'Succeeded <span class="count">(%s)</span>', 'Succeeded <span class="count">(%s)</span>', 'lifterlms' ),
                ),
            )
        );
 
        foreach ( array_merge( $order_statuses, $txn_statuses ) as $status => $values ) {
 
            register_post_status( $status, $values );
 
        }
 
    }
 
    /**
     * Register a custom post type taxonomy
     * Automatically checks for duplicates and filters data
     *
     * @since 3.13.0
     *
     * @param string       $name   Taxonomy name.
     * @param string|array $object Post type object(s) to associate the taxonomy with.
     * @param array        $data   Taxonomy data.
     * @return void
     */
    public static function register_taxonomy( $name, $object, $data ) {
 
        if ( ! taxonomy_exists( $name ) ) {
            $filter_name = str_replace( 'llms_', '', $name );
            register_taxonomy(
                $name,
                apply_filters( 'lifterlms_register_taxonomy_objects_' . $filter_name, $object ),
                apply_filters( 'lifterlms_register_taxonomy_args_' . $filter_name, $data )
            );
        }
 
    }
 
    /**
     * Register Taxonomies
     *
     * @since 1.0.0
     * @since 3.30.3 Removed duplicate array keys when registering course_tag taxonomy.
     * @since 3.34.1 Add custom property `show_in_llms_rest` set to true by default to those taxonomies we want to show in LLMS REST api.
     *
     * @return void
     */
    public static function register_taxonomies() {
 
        // Course cat.
        self::register_taxonomy(
            'course_cat',
            array( 'course' ),
            array(
                'label'             => __( 'Course Categories', 'lifterlms' ),
                'labels'            => array(
                    'name'              => __( 'Course Categories', 'lifterlms' ),
                    'singular_name'     => __( 'Course Category', 'lifterlms' ),
                    'menu_name'         => _x( 'Categories', 'Admin menu name', 'lifterlms' ),
                    'search_items'      => __( 'Search Course Categories', 'lifterlms' ),
                    'all_items'         => __( 'All Course Categories', 'lifterlms' ),
                    'parent_item'       => __( 'Parent Course Category', 'lifterlms' ),
                    'parent_item_colon' => __( 'Parent Course Category:', 'lifterlms' ),
                    'edit_item'         => __( 'Edit Course Category', 'lifterlms' ),
                    'update_item'       => __( 'Update Course Category', 'lifterlms' ),
                    'add_new_item'      => __( 'Add New Course Category', 'lifterlms' ),
                    'new_item_name'     => __( 'New Course Category Name', 'lifterlms' ),
                ),
                'capabilities'      => self::get_tax_caps( 'course_cat' ),
                'hierarchical'      => true,
                'query_var'         => true,
                'show_admin_column' => true,
                'show_ui'           => true,
                'rewrite'           => array(
                    'slug'         => _x( 'course-category', 'slug', 'lifterlms' ),
                    'with_front'   => false,
                    'hierarchical' => true,
                ),
                'show_in_llms_rest' => true,
            )
        );
 
        // Course difficulty.
        self::register_taxonomy(
            'course_difficulty',
            array( 'course' ),
            array(
                'label'             => __( 'Course Difficulties', 'lifterlms' ),
                'labels'            => array(
                    'name'              => __( 'Course Difficulties', 'lifterlms' ),
                    'singular_name'     => __( 'Course Difficulty', 'lifterlms' ),
                    'menu_name'         => _x( 'Difficulties', 'Admin menu name', 'lifterlms' ),
                    'search_items'      => __( 'Search Course Difficulties', 'lifterlms' ),
                    'all_items'         => __( 'All Course Difficulties', 'lifterlms' ),
                    'parent_item'       => __( 'Parent Course Difficulty', 'lifterlms' ),
                    'parent_item_colon' => __( 'Parent Course Difficulty:', 'lifterlms' ),
                    'edit_item'         => __( 'Edit Course Difficulty', 'lifterlms' ),
                    'update_item'       => __( 'Update Course Difficulty', 'lifterlms' ),
                    'add_new_item'      => __( 'Add New Course Difficulty', 'lifterlms' ),
                    'new_item_name'     => __( 'New Course Difficulty Name', 'lifterlms' ),
                ),
                'capabilities'      => self::get_tax_caps( array( 'course_difficulty', 'course_difficulties' ) ),
                'hierarchical'      => false,
                'query_var'         => true,
                'show_admin_column' => true,
                'show_ui'           => true,
                'rewrite'           => array(
                    'slug'       => _x( 'course-difficulty', 'slug', 'lifterlms' ),
                    'with_front' => false,
                ),
                'show_in_llms_rest' => true,
            )
        );
 
        // Course tag.
        self::register_taxonomy(
            'course_tag',
            array( 'course' ),
            array(
                'label'             => __( 'Course Tags', 'lifterlms' ),
                'labels'            => array(
                    'name'              => __( 'Course Tags', 'lifterlms' ),
                    'singular_name'     => __( 'Course Tag', 'lifterlms' ),
                    'menu_name'         => _x( 'Tags', 'Admin menu name', 'lifterlms' ),
                    'search_items'      => __( 'Search Course Tags', 'lifterlms' ),
                    'all_items'         => __( 'All Course Tags', 'lifterlms' ),
                    'parent_item'       => __( 'Parent Course Tag', 'lifterlms' ),
                    'parent_item_colon' => __( 'Parent Course Tag:', 'lifterlms' ),
                    'edit_item'         => __( 'Edit Course Tag', 'lifterlms' ),
                    'update_item'       => __( 'Update Course Tag', 'lifterlms' ),
                    'add_new_item'      => __( 'Add New Course Tag', 'lifterlms' ),
                    'new_item_name'     => __( 'New Course Tag Name', 'lifterlms' ),
                ),
                'capabilities'      => self::get_tax_caps( 'course_tag' ),
                'hierarchical'      => false,
                'query_var'         => true,
                'show_admin_column' => true,
                'show_ui'           => true,
                'rewrite'           => array(
                    'slug'       => _x( 'course-tag', 'slug', 'lifterlms' ),
                    'with_front' => false,
                ),
                'show_in_llms_rest' => true,
            )
        );
 
        // Course track.
        self::register_taxonomy(
            'course_track',
            array( 'course' ),
            array(
                'label'             => __( 'Course Track', 'lifterlms' ),
                'labels'            => array(
                    'name'              => __( 'Course Tracks', 'lifterlms' ),
                    'singular_name'     => __( 'Course Track', 'lifterlms' ),
                    'menu_name'         => _x( 'Tracks', 'Admin menu name', 'lifterlms' ),
                    'search_items'      => __( 'Search Course Tracks', 'lifterlms' ),
                    'all_items'         => __( 'All Course Tracks', 'lifterlms' ),
                    'parent_item'       => __( 'Parent Course Track', 'lifterlms' ),
                    'parent_item_colon' => __( 'Parent Course Track:', 'lifterlms' ),
                    'edit_item'         => __( 'Edit Course Track', 'lifterlms' ),
                    'update_item'       => __( 'Update Course Track', 'lifterlms' ),
                    'add_new_item'      => __( 'Add New Course Track', 'lifterlms' ),
                    'new_item_name'     => __( 'New Course Track Name', 'lifterlms' ),
                ),
                'capabilities'      => self::get_tax_caps( 'course_track' ),
                'hierarchical'      => true,
                'query_var'         => true,
                'show_admin_column' => true,
                'show_ui'           => true,
                'rewrite'           => array(
                    'slug'         => _x( 'course-track', 'slug', 'lifterlms' ),
                    'with_front'   => false,
                    'hierarchical' => true,
                ),
                'show_in_llms_rest' => true,
            )
        );
 
        // Membership cat.
        self::register_taxonomy(
            'membership_cat',
            array( 'llms_membership' ),
            array(
                'hierarchical'      => true,
                'label'             => __( 'Membership Categories', 'lifterlms' ),
                'labels'            => array(
                    'name'              => __( 'Membership Categories', 'lifterlms' ),
                    'singular_name'     => __( 'Membership Category', 'lifterlms' ),
                    'menu_name'         => _x( 'Categories', 'Admin menu name', 'lifterlms' ),
                    'search_items'      => __( 'Search Membership Categories', 'lifterlms' ),
                    'all_items'         => __( 'All Membership Categories', 'lifterlms' ),
                    'parent_item'       => __( 'Parent Membership Category', 'lifterlms' ),
                    'parent_item_colon' => __( 'Parent Membership Category:', 'lifterlms' ),
                    'edit_item'         => __( 'Edit Membership Category', 'lifterlms' ),
                    'update_item'       => __( 'Update Membership Category', 'lifterlms' ),
                    'add_new_item'      => __( 'Add New Membership Category', 'lifterlms' ),
                    'new_item_name'     => __( 'New Membership Category Name', 'lifterlms' ),
                ),
                'capabilities'      => self::get_tax_caps( 'membership_cat' ),
                'show_ui'           => true,
                'show_in_menu'      => true,
                'query_var'         => true,
                'show_admin_column' => true,
                'rewrite'           => array(
                    'slug'         => _x( 'membership-category', 'slug', 'lifterlms' ),
                    'with_front'   => false,
                    'hierarchical' => true,
                ),
                'show_in_llms_rest' => true,
            )
        );
 
        // Membership tag.
        self::register_taxonomy(
            'membership_tag',
            array( 'llms_membership' ),
            array(
                'hierarchical'      => false,
                'label'             => __( 'Membership Tags', 'lifterlms' ),
                'labels'            => array(
                    'name'              => __( 'Membership Tags', 'lifterlms' ),
                    'singular_name'     => __( 'Membership Tag', 'lifterlms' ),
                    'menu_name'         => _x( 'Tags', 'Admin menu name', 'lifterlms' ),
                    'search_items'      => __( 'Search Membership Tags', 'lifterlms' ),
                    'all_items'         => __( 'All Membership Tags', 'lifterlms' ),
                    'parent_item'       => __( 'Parent Membership Tag', 'lifterlms' ),
                    'parent_item_colon' => __( 'Parent Membership Tag:', 'lifterlms' ),
                    'edit_item'         => __( 'Edit Membership Tag', 'lifterlms' ),
                    'update_item'       => __( 'Update Membership Tag', 'lifterlms' ),
                    'add_new_item'      => __( 'Add New Membership Tag', 'lifterlms' ),
                    'new_item_name'     => __( 'New Membership Tag Name', 'lifterlms' ),
                ),
                'capabilities'      => self::get_tax_caps( 'membership_tag' ),
                'show_ui'           => true,
                'show_in_menu'      => 'lifterlms',
                'query_var'         => true,
                'show_admin_column' => true,
                'rewrite'           => array(
                    'slug'       => _x( 'membership-tag', 'slug', 'lifterlms' ),
                    'with_front' => false,
                ),
                'show_in_llms_rest' => true,
            )
        );
 
        // Course/membership visibility.
        self::register_taxonomy(
            'llms_product_visibility',
            array( 'course', 'llms_membership' ),
            array(
                'hierarchical'      => false,
                'show_ui'           => false,
                'show_in_nav_menus' => false,
                'query_var'         => is_admin(),
                'rewrite'           => false,
                'public'            => false,
            )
        );
 
        // Access plan visibility.
        self::register_taxonomy(
            'llms_access_plan_visibility',
            array( 'llms_access_plan' ),
            array(
                'hierarchical'      => false,
                'show_ui'           => false,
                'show_in_nav_menus' => false,
                'query_var'         => is_admin(),
                'rewrite'           => false,
                'public'            => false,
            )
        );
 
    }
 
}

Top ↑

Methods Methods


Top ↑

Changelog Changelog

Changelog
Version Description
3.37.12 Added 'revisions' support to course, lesson, and llms_mebership post types.
3.34.1 Add the custom property show_in_llms_rest set to true by default, to those taxonomies we want to be shown in LLMS REST api.
3.33.0 llms_question post type is not publicly queryable anymore.
3.30.3 Removed duplicate array keys when registering course_tag taxonomy.
1.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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