PluginProbe
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses / 4.4.8
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses v4.4.8
4.4.8 4.4.7 4.4.6 4.4.5 4.4.4 4.4.3 4.4.2 4.4.1 4.4.0 4.3.9.1 4.3.9 4.3.8 4.3.7 4.1.6.9 4.1.6.9.1 4.1.6.9.2 4.1.6.9.3 4.1.6.9.4 4.1.7 4.1.7.1 4.1.7.2 4.1.7.3 4.1.7.3.1 4.1.7.3.2 4.2.0 All 139 releases
learnpress / inc / Shortcodes / class-lp-shortcode-course-curriculum.php

class-lp-shortcode-course-curriculum.php in LearnPress – WordPress LMS Plugin for Create and Sell Online Courses 4.4.8, at inc/Shortcodes/class-lp-shortcode-course-curriculum.php

60 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Register Form Shortcode.
4 *
5 * @author ThimPress
6 * @category Shortcodes
7 * @package Learnpress/Shortcodes
8 * @version 3.0.0
9 * @extends LP_Abstract_Shortcode
10 */
11
12 /**
13 * Prevent loading this file directly
14 */
15 defined( 'ABSPATH' ) || exit();
16
17 if ( ! class_exists( 'LP_Shortcode_Course_Curriculum' ) ) {
18
19 /**
20 * Class LP_Shortcode_Course_Curriculum
21 */
22 class LP_Shortcode_Course_Curriculum extends LP_Abstract_Shortcode {
23 /**
24 * LP_Shortcode_Course_Curriculum constructor.
25 *
26 * @param mixed $atts
27 */
28 public function __construct( $atts = '' ) {
29 parent::__construct( $atts );
30 }
31
32 /**
33 * Shortcode content.
34 *
35 * @return string
36 */
37 public function output() {
38 wp_enqueue_style( 'learnpress' );
39 ob_start();
40 global $post;
41 $post = get_post( $this->_atts['id'] );
42
43 require_once realpath( LP_PLUGIN_PATH . '/inc/course/class-model-user-can-view-course-item.php' );
44
45 if ( ! $post || ( LP_COURSE_CPT !== get_post_type( $post->ID ) ) ) {
46 learn_press_display_message( __( 'Invalid course.', 'learnpress' ), 'error' );
47 } else {
48 setup_postdata( $post );
49 learn_press_get_template( 'single-course/tabs/curriculum.php' );
50 wp_reset_postdata();
51 }
52
53 $output = ob_get_clean();
54
55 return $output;
56 }
57
58 }
59 }
60