@@ -7,29 +7,29 @@ |
||
7 | 7 | * @package lsx |
8 | 8 | */ |
9 | 9 | |
10 | -if ( ! defined( 'ABSPATH' ) ) { |
|
10 | +if ( ! defined('ABSPATH')) { |
|
11 | 11 | exit; |
12 | 12 | } |
13 | 13 | |
14 | -define( 'LSX_VERSION', '2.8' ); |
|
14 | +define('LSX_VERSION', '2.8'); |
|
15 | 15 | |
16 | -if ( class_exists( 'WooCommerce' ) ) { |
|
16 | +if (class_exists('WooCommerce')) { |
|
17 | 17 | require get_template_directory() . '/includes/woocommerce/woocommerce.php'; |
18 | 18 | } |
19 | 19 | |
20 | -if ( class_exists( 'Tribe__Events__Main' ) ) { |
|
20 | +if (class_exists('Tribe__Events__Main')) { |
|
21 | 21 | require get_template_directory() . '/includes/the-events-calendar/the-events-calendar.php'; |
22 | 22 | } |
23 | 23 | |
24 | -if ( class_exists( 'Sensei_Main' ) || class_exists( 'Sensei_WC' ) ) { |
|
24 | +if (class_exists('Sensei_Main') || class_exists('Sensei_WC')) { |
|
25 | 25 | require get_template_directory() . '/includes/sensei/class-lsx-sensei.php'; |
26 | 26 | } |
27 | 27 | |
28 | -if ( class_exists( 'Popup_Maker' ) ) { |
|
28 | +if (class_exists('Popup_Maker')) { |
|
29 | 29 | require get_template_directory() . '/includes/popup-maker/class-lsx-popup-maker.php'; |
30 | 30 | } |
31 | 31 | |
32 | -if ( class_exists( 'bbPress' ) ) { |
|
32 | +if (class_exists('bbPress')) { |
|
33 | 33 | require get_template_directory() . '/includes/bbpress/bbpress.php'; |
34 | 34 | } |
35 | 35 |
@@ -6,7 +6,7 @@ discard block |
||
6 | 6 | * @subpackage sensei |
7 | 7 | */ |
8 | 8 | |
9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
9 | +if ( ! defined('ABSPATH')) { |
|
10 | 10 | exit; // Exit if accessed directly. |
11 | 11 | } |
12 | 12 | |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | * Constructor. |
27 | 27 | */ |
28 | 28 | public function __construct() { |
29 | - add_action( 'init', array( $this, 'init' ) ); |
|
29 | + add_action('init', array($this, 'init')); |
|
30 | 30 | } // End __construct() |
31 | 31 | |
32 | 32 | /** |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | * @return self |
36 | 36 | */ |
37 | 37 | public static function instance() { |
38 | - if ( ! self::$instance ) { |
|
38 | + if ( ! self::$instance) { |
|
39 | 39 | self::$instance = new self(); |
40 | 40 | } |
41 | 41 | return self::$instance; |
@@ -49,32 +49,32 @@ discard block |
||
49 | 49 | global $woothemes_sensei; |
50 | 50 | |
51 | 51 | // Switching the course filters and the headers around. |
52 | - remove_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'archive_header' ), 10, 0 ); |
|
53 | - remove_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'course_archive_sorting' ) ); |
|
54 | - remove_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'course_archive_filters' ) ); |
|
55 | - add_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'archive_header' ), 11, 0 ); |
|
56 | - add_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'course_archive_sorting' ), 12 ); |
|
57 | - add_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'course_archive_filters' ), 12 ); |
|
52 | + remove_action('sensei_archive_before_course_loop', array('Sensei_Course', 'archive_header'), 10, 0); |
|
53 | + remove_action('sensei_archive_before_course_loop', array('Sensei_Course', 'course_archive_sorting')); |
|
54 | + remove_action('sensei_archive_before_course_loop', array('Sensei_Course', 'course_archive_filters')); |
|
55 | + add_action('sensei_archive_before_course_loop', array('Sensei_Course', 'archive_header'), 11, 0); |
|
56 | + add_action('sensei_archive_before_course_loop', array('Sensei_Course', 'course_archive_sorting'), 12); |
|
57 | + add_action('sensei_archive_before_course_loop', array('Sensei_Course', 'course_archive_filters'), 12); |
|
58 | 58 | |
59 | 59 | // First add the thumbnail. |
60 | - add_action( 'sensei_course_content_inside_before', array( $this, 'get_course_thumbnail' ), 1 ); |
|
60 | + add_action('sensei_course_content_inside_before', array($this, 'get_course_thumbnail'), 1); |
|
61 | 61 | |
62 | 62 | // This is for our wrapper, we run it on 2, after the thumbnail we added. |
63 | - add_action( 'sensei_course_content_inside_before', array( $this, 'course_body_div_open' ), 1 ); |
|
64 | - add_action( 'sensei_course_content_inside_after', array( $this, 'course_body_div_close' ), 50 ); |
|
63 | + add_action('sensei_course_content_inside_before', array($this, 'course_body_div_open'), 1); |
|
64 | + add_action('sensei_course_content_inside_after', array($this, 'course_body_div_close'), 50); |
|
65 | 65 | |
66 | 66 | // This is for our wrapper, we run it on 2, after the thumbnail we added. |
67 | - add_action( 'sensei_course_content_inside_before', array( $this, 'course_body_div_results_open' ), 20 ); |
|
68 | - add_action( 'sensei_course_content_inside_after', array( $this, 'course_body_div_results_close' ), 49 ); |
|
67 | + add_action('sensei_course_content_inside_before', array($this, 'course_body_div_results_open'), 20); |
|
68 | + add_action('sensei_course_content_inside_after', array($this, 'course_body_div_results_close'), 49); |
|
69 | 69 | |
70 | - add_action( 'sensei_single_course_content_inside_before', array( $this, 'display_course_amount' ), 20 ); |
|
70 | + add_action('sensei_single_course_content_inside_before', array($this, 'display_course_amount'), 20); |
|
71 | 71 | |
72 | 72 | // removes the course image above the content. |
73 | - remove_action( 'sensei_course_content_inside_before', array( $woothemes_sensei->course, 'course_image' ), 30, 1 ); |
|
73 | + remove_action('sensei_course_content_inside_before', array($woothemes_sensei->course, 'course_image'), 30, 1); |
|
74 | 74 | // add the course image to the left of the content. |
75 | - add_action( 'lsx_sensei_course_content_inside_before', array( $woothemes_sensei->course, 'course_image' ), 30, 1 ); |
|
75 | + add_action('lsx_sensei_course_content_inside_before', array($woothemes_sensei->course, 'course_image'), 30, 1); |
|
76 | 76 | |
77 | - add_filter( 'attach_shortcode_hooks', 'lsx_attach_shortcode_hooks', 10, 1 ); |
|
77 | + add_filter('attach_shortcode_hooks', 'lsx_attach_shortcode_hooks', 10, 1); |
|
78 | 78 | |
79 | 79 | } |
80 | 80 | |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | public function get_course_thumbnail() { |
87 | 87 | ?> |
88 | 88 | <div class="course-thumbnail"> |
89 | - <?php do_action( 'lsx_sensei_course_content_inside_before', get_the_ID() ); ?> |
|
89 | + <?php do_action('lsx_sensei_course_content_inside_before', get_the_ID()); ?> |
|
90 | 90 | </div> |
91 | 91 | <?php |
92 | 92 | } |
@@ -98,13 +98,13 @@ discard block |
||
98 | 98 | */ |
99 | 99 | public function course_body_div_open() { |
100 | 100 | global $post, $current_user; |
101 | - $is_user_taking_course = Sensei_Utils::has_started_course( $post->ID, $current_user->ID ); |
|
101 | + $is_user_taking_course = Sensei_Utils::has_started_course($post->ID, $current_user->ID); |
|
102 | 102 | $user_taking_course_class = ''; |
103 | - if ( ! empty( $is_user_taking_course ) ) { |
|
103 | + if ( ! empty($is_user_taking_course)) { |
|
104 | 104 | $user_taking_course_class = 'currently-in-course'; |
105 | 105 | } |
106 | 106 | ?> |
107 | - <div class="course-body <?php echo esc_html( $user_taking_course_class ); ?>"> |
|
107 | + <div class="course-body <?php echo esc_html($user_taking_course_class); ?>"> |
|
108 | 108 | <?php |
109 | 109 | } |
110 | 110 | |
@@ -148,18 +148,18 @@ discard block |
||
148 | 148 | */ |
149 | 149 | public function display_course_amount() { |
150 | 150 | global $post, $current_user; |
151 | - $is_user_taking_course = Sensei_Course::is_user_enrolled( $post->ID, $current_user->ID ); |
|
152 | - $is_user_starting_course = Sensei_Utils::has_started_course( $post->ID, $current_user->ID ); |
|
153 | - $wc_post_id = absint( get_post_meta( $post->ID, '_course_woocommerce_product', true ) ); |
|
151 | + $is_user_taking_course = Sensei_Course::is_user_enrolled($post->ID, $current_user->ID); |
|
152 | + $is_user_starting_course = Sensei_Utils::has_started_course($post->ID, $current_user->ID); |
|
153 | + $wc_post_id = absint(get_post_meta($post->ID, '_course_woocommerce_product', true)); |
|
154 | 154 | $course_purchasable = ''; |
155 | - if ( class_exists( 'Sensei_WC' ) ) { |
|
156 | - $course_purchasable = Sensei_WC::is_course_purchasable( $post->ID ); |
|
155 | + if (class_exists('Sensei_WC')) { |
|
156 | + $course_purchasable = Sensei_WC::is_course_purchasable($post->ID); |
|
157 | 157 | $currency = get_woocommerce_currency_symbol(); |
158 | - $product = new WC_Product( $wc_post_id ); |
|
159 | - if ( ( ! empty( $product->get_price() ) ) && ( ( ! $is_user_taking_course ) || ( ! $is_user_starting_course ) ) ) { |
|
160 | - echo '<span class="course-product-price price"><span>' . esc_html( $currency ) . ' </span>' . sprintf( '%0.2f', esc_html( $product->get_price() ) ) . '</span>'; |
|
161 | - } elseif ( ( '' === $product->get_price() || 0 == $product->get_price() ) && $course_purchasable && ( ( ! $is_user_taking_course ) || ( ! $is_user_starting_course ) ) ) { |
|
162 | - echo '<span class="course-product-price price">' . wp_kses_post( 'Free!', 'lsx' ) . '</span>'; |
|
158 | + $product = new WC_Product($wc_post_id); |
|
159 | + if (( ! empty($product->get_price())) && (( ! $is_user_taking_course) || ( ! $is_user_starting_course))) { |
|
160 | + echo '<span class="course-product-price price"><span>' . esc_html($currency) . ' </span>' . sprintf('%0.2f', esc_html($product->get_price())) . '</span>'; |
|
161 | + } elseif (('' === $product->get_price() || 0 == $product->get_price()) && $course_purchasable && (( ! $is_user_taking_course) || ( ! $is_user_starting_course))) { |
|
162 | + echo '<span class="course-product-price price">' . wp_kses_post('Free!', 'lsx') . '</span>'; |
|
163 | 163 | } |
164 | 164 | } |
165 | 165 | } |