@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if ( ! defined( 'ABSPATH' ) ) exit; // security check, don't load file outside WP |
|
| 2 | +if ( ! defined('ABSPATH')) exit; // security check, don't load file outside WP |
|
| 3 | 3 | |
| 4 | 4 | /** |
| 5 | 5 | * Sensei WooCommerce class |
@@ -11,15 +11,15 @@ discard block |
||
| 11 | 11 | * @since 1.9.0 |
| 12 | 12 | */ |
| 13 | 13 | |
| 14 | -Class Sensei_WC{ |
|
| 14 | +Class Sensei_WC { |
|
| 15 | 15 | /** |
| 16 | 16 | * Load the files needed for the woocommerce integration. |
| 17 | 17 | * |
| 18 | 18 | * @since 1.9.0 |
| 19 | 19 | */ |
| 20 | - public static function load_woocommerce_integration_hooks(){ |
|
| 20 | + public static function load_woocommerce_integration_hooks() { |
|
| 21 | 21 | |
| 22 | - require_once( __DIR__ . '/hooks/woocommerce.php' ); |
|
| 22 | + require_once(__DIR__.'/hooks/woocommerce.php'); |
|
| 23 | 23 | |
| 24 | 24 | } |
| 25 | 25 | /** |
@@ -28,9 +28,9 @@ discard block |
||
| 28 | 28 | * @since 1.9.0 |
| 29 | 29 | * @return bool |
| 30 | 30 | */ |
| 31 | - public static function is_woocommerce_active(){ |
|
| 31 | + public static function is_woocommerce_active() { |
|
| 32 | 32 | |
| 33 | - $is_woocommerce_enabled_in_settings = isset( Sensei()->settings->settings['woocommerce_enabled'] ) && Sensei()->settings->settings['woocommerce_enabled']; |
|
| 33 | + $is_woocommerce_enabled_in_settings = isset(Sensei()->settings->settings['woocommerce_enabled']) && Sensei()->settings->settings['woocommerce_enabled']; |
|
| 34 | 34 | return self::is_woocommerce_present() && $is_woocommerce_enabled_in_settings; |
| 35 | 35 | |
| 36 | 36 | } // end is_woocommerce_active |
@@ -45,19 +45,19 @@ discard block |
||
| 45 | 45 | * |
| 46 | 46 | * @return bool |
| 47 | 47 | */ |
| 48 | - public static function is_woocommerce_present(){ |
|
| 48 | + public static function is_woocommerce_present() { |
|
| 49 | 49 | |
| 50 | - $active_plugins = (array) get_option( 'active_plugins', array() ); |
|
| 50 | + $active_plugins = (array) get_option('active_plugins', array()); |
|
| 51 | 51 | |
| 52 | - if ( is_multisite() ){ |
|
| 52 | + if (is_multisite()) { |
|
| 53 | 53 | |
| 54 | - $active_plugins = array_merge( $active_plugins, get_site_option( 'active_sitewide_plugins', array() ) ); |
|
| 54 | + $active_plugins = array_merge($active_plugins, get_site_option('active_sitewide_plugins', array())); |
|
| 55 | 55 | |
| 56 | 56 | } |
| 57 | 57 | |
| 58 | - $is_woocommerce_plugin_present_and_activated = in_array( 'woocommerce/woocommerce.php', $active_plugins ) || array_key_exists( 'woocommerce/woocommerce.php', $active_plugins ); |
|
| 58 | + $is_woocommerce_plugin_present_and_activated = in_array('woocommerce/woocommerce.php', $active_plugins) || array_key_exists('woocommerce/woocommerce.php', $active_plugins); |
|
| 59 | 59 | |
| 60 | - return class_exists( 'Woocommerce' ) || $is_woocommerce_plugin_present_and_activated; |
|
| 60 | + return class_exists('Woocommerce') || $is_woocommerce_plugin_present_and_activated; |
|
| 61 | 61 | |
| 62 | 62 | }// end is_woocommerce_present |
| 63 | 63 | |
@@ -70,48 +70,48 @@ discard block |
||
| 70 | 70 | * @param $course_id |
| 71 | 71 | * @return array $user_course_orders |
| 72 | 72 | */ |
| 73 | - public static function get_learner_course_active_order_id( $user_id, $course_id ){ |
|
| 73 | + public static function get_learner_course_active_order_id($user_id, $course_id) { |
|
| 74 | 74 | |
| 75 | - $course_product_id = get_post_meta( $course_id, '_course_woocommerce_product', true ); |
|
| 75 | + $course_product_id = get_post_meta($course_id, '_course_woocommerce_product', true); |
|
| 76 | 76 | |
| 77 | - $orders_query = new WP_Query( array( |
|
| 77 | + $orders_query = new WP_Query(array( |
|
| 78 | 78 | 'post_type' => 'shop_order', |
| 79 | 79 | 'posts_per_page' => -1, |
| 80 | - 'post_status' => array( 'wc-processing', 'wc-completed' ), |
|
| 80 | + 'post_status' => array('wc-processing', 'wc-completed'), |
|
| 81 | 81 | 'meta_key'=> '_customer_user', |
| 82 | 82 | 'meta_value'=> $user_id, |
| 83 | - ) ); |
|
| 83 | + )); |
|
| 84 | 84 | |
| 85 | - if( $orders_query->post_count == 0 ){ |
|
| 85 | + if ($orders_query->post_count == 0) { |
|
| 86 | 86 | |
| 87 | 87 | return false; |
| 88 | 88 | |
| 89 | 89 | } |
| 90 | 90 | |
| 91 | - foreach( $orders_query->get_posts() as $order ){ |
|
| 91 | + foreach ($orders_query->get_posts() as $order) { |
|
| 92 | 92 | |
| 93 | - $order = new WC_Order( $order->ID ); |
|
| 93 | + $order = new WC_Order($order->ID); |
|
| 94 | 94 | $items = $order->get_items(); |
| 95 | 95 | |
| 96 | - $user_orders = array(); |
|
| 96 | + $user_orders = array(); |
|
| 97 | 97 | |
| 98 | - foreach( $items as $item ){ |
|
| 98 | + foreach ($items as $item) { |
|
| 99 | 99 | |
| 100 | 100 | // if the product id on the order and the one given to this function |
| 101 | 101 | // this order has been placed by the given user on the given course. |
| 102 | - $product = wc_get_product( $item['product_id'] ); |
|
| 102 | + $product = wc_get_product($item['product_id']); |
|
| 103 | 103 | |
| 104 | - if ( $product->is_type( 'variable' )) { |
|
| 104 | + if ($product->is_type('variable')) { |
|
| 105 | 105 | |
| 106 | 106 | $item_product_id = $item['variation_id']; |
| 107 | 107 | |
| 108 | 108 | } else { |
| 109 | 109 | |
| 110 | - $item_product_id = $item['product_id']; |
|
| 110 | + $item_product_id = $item['product_id']; |
|
| 111 | 111 | |
| 112 | 112 | } |
| 113 | 113 | |
| 114 | - if( $course_product_id == $item_product_id ){ |
|
| 114 | + if ($course_product_id == $item_product_id) { |
|
| 115 | 115 | |
| 116 | 116 | return $order->id; |
| 117 | 117 | |
@@ -135,12 +135,12 @@ discard block |
||
| 135 | 135 | * @param $filter_links |
| 136 | 136 | * @return mixed |
| 137 | 137 | */ |
| 138 | - public static function add_course_archive_wc_filter_links( $filter_links ){ |
|
| 138 | + public static function add_course_archive_wc_filter_links($filter_links) { |
|
| 139 | 139 | |
| 140 | 140 | $free_courses = self::get_free_courses(); |
| 141 | 141 | $paid_courses = self::get_paid_courses(); |
| 142 | 142 | |
| 143 | - if ( empty( $free_courses ) || empty( $paid_courses ) ){ |
|
| 143 | + if (empty($free_courses) || empty($paid_courses)) { |
|
| 144 | 144 | // do not show any WooCommerce filters if all courses are |
| 145 | 145 | // free or if all courses are paid |
| 146 | 146 | return $filter_links; |
@@ -148,15 +148,15 @@ discard block |
||
| 148 | 148 | } |
| 149 | 149 | |
| 150 | 150 | $filter_links[] = array( |
| 151 | - 'id'=>'paid' , |
|
| 152 | - 'url'=> add_query_arg( array( 'course_filter'=>'paid'), Sensei_Course::get_courses_page_url() ), |
|
| 153 | - 'title'=>__( 'Paid', 'woothemes-sensei' ) |
|
| 151 | + 'id'=>'paid', |
|
| 152 | + 'url'=> add_query_arg(array('course_filter'=>'paid'), Sensei_Course::get_courses_page_url()), |
|
| 153 | + 'title'=>__('Paid', 'woothemes-sensei') |
|
| 154 | 154 | ); |
| 155 | 155 | |
| 156 | 156 | $filter_links[] = array( |
| 157 | 157 | 'id'=>'free', |
| 158 | - 'url'=> add_query_arg( array( 'course_filter'=>'free'), Sensei_Course::get_courses_page_url() ), |
|
| 159 | - 'title'=>__( 'Free', 'woothemes-sensei' ) |
|
| 158 | + 'url'=> add_query_arg(array('course_filter'=>'free'), Sensei_Course::get_courses_page_url()), |
|
| 159 | + 'title'=>__('Free', 'woothemes-sensei') |
|
| 160 | 160 | ); |
| 161 | 161 | |
| 162 | 162 | return $filter_links; |
@@ -173,24 +173,24 @@ discard block |
||
| 173 | 173 | * @param WP_Query $query |
| 174 | 174 | * @return WP_Query $query |
| 175 | 175 | */ |
| 176 | - public static function course_archive_wc_filter_free( $query ){ |
|
| 176 | + public static function course_archive_wc_filter_free($query) { |
|
| 177 | 177 | |
| 178 | - if( isset( $_GET['course_filter'] ) && 'free' == $_GET['course_filter'] |
|
| 179 | - && 'course' == $query->get( 'post_type') && $query->is_main_query() ){ |
|
| 178 | + if (isset($_GET['course_filter']) && 'free' == $_GET['course_filter'] |
|
| 179 | + && 'course' == $query->get('post_type') && $query->is_main_query()) { |
|
| 180 | 180 | |
| 181 | 181 | // setup the course meta query |
| 182 | 182 | $meta_query = self::get_free_courses_meta_query_args(); |
| 183 | 183 | |
| 184 | 184 | // manipulate the query to return free courses |
| 185 | - $query->set('meta_query', $meta_query ); |
|
| 185 | + $query->set('meta_query', $meta_query); |
|
| 186 | 186 | |
| 187 | 187 | // don't show any paid courses |
| 188 | 188 | $courses = self::get_paid_courses(); |
| 189 | 189 | $ids = array(); |
| 190 | - foreach( $courses as $course ){ |
|
| 190 | + foreach ($courses as $course) { |
|
| 191 | 191 | $ids[] = $course->ID; |
| 192 | 192 | } |
| 193 | - $query->set( 'post__not_in', $ids ); |
|
| 193 | + $query->set('post__not_in', $ids); |
|
| 194 | 194 | |
| 195 | 195 | }// end if course_filter |
| 196 | 196 | |
@@ -209,16 +209,16 @@ discard block |
||
| 209 | 209 | * @param WP_Query $query |
| 210 | 210 | * @return WP_Query $query |
| 211 | 211 | */ |
| 212 | - public static function course_archive_wc_filter_paid( $query ){ |
|
| 212 | + public static function course_archive_wc_filter_paid($query) { |
|
| 213 | 213 | |
| 214 | - if( isset( $_GET['course_filter'] ) && 'paid' == $_GET['course_filter'] |
|
| 215 | - && 'course' == $query->get( 'post_type') && $query->is_main_query() ){ |
|
| 214 | + if (isset($_GET['course_filter']) && 'paid' == $_GET['course_filter'] |
|
| 215 | + && 'course' == $query->get('post_type') && $query->is_main_query()) { |
|
| 216 | 216 | |
| 217 | 217 | // setup the course meta query |
| 218 | 218 | $meta_query = self::get_paid_courses_meta_query_args(); |
| 219 | 219 | |
| 220 | 220 | // manipulate the query to return free courses |
| 221 | - $query->set('meta_query', $meta_query ); |
|
| 221 | + $query->set('meta_query', $meta_query); |
|
| 222 | 222 | |
| 223 | 223 | } |
| 224 | 224 | |
@@ -231,14 +231,14 @@ discard block |
||
| 231 | 231 | * single courses if woocommerce is active allowing purchase |
| 232 | 232 | * information and actions to be hooked from WooCommerce. |
| 233 | 233 | */ |
| 234 | - public static function do_single_course_wc_single_product_action(){ |
|
| 234 | + public static function do_single_course_wc_single_product_action() { |
|
| 235 | 235 | |
| 236 | 236 | /** |
| 237 | 237 | * this hooks is documented within the WooCommerce plugin. |
| 238 | 238 | */ |
| 239 | - if ( Sensei_WC::is_woocommerce_active() ) { |
|
| 239 | + if (Sensei_WC::is_woocommerce_active()) { |
|
| 240 | 240 | |
| 241 | - do_action( 'woocommerce_before_single_product' ); |
|
| 241 | + do_action('woocommerce_before_single_product'); |
|
| 242 | 242 | |
| 243 | 243 | } // End If Statement |
| 244 | 244 | |
@@ -259,23 +259,23 @@ discard block |
||
| 259 | 259 | * @param $user_id |
| 260 | 260 | * @return bool |
| 261 | 261 | */ |
| 262 | - public static function alter_can_user_view_lesson ( $can_user_view_lesson, $lesson_id, $user_id ){ |
|
| 262 | + public static function alter_can_user_view_lesson($can_user_view_lesson, $lesson_id, $user_id) { |
|
| 263 | 263 | |
| 264 | 264 | // check if the course has a valid product attached to it |
| 265 | 265 | // which the user should have purchased if they want to access |
| 266 | 266 | // the current lesson |
| 267 | - $course_id = get_post_meta( $lesson_id , '_lesson_course', true); |
|
| 268 | - $wc_post_id = get_post_meta( $course_id, '_course_woocommerce_product', true ); |
|
| 267 | + $course_id = get_post_meta($lesson_id, '_lesson_course', true); |
|
| 268 | + $wc_post_id = get_post_meta($course_id, '_course_woocommerce_product', true); |
|
| 269 | 269 | $product = Sensei()->sensei_get_woocommerce_product_object($wc_post_id); |
| 270 | - if( isset ($product) && is_object($product) ){ |
|
| 270 | + if (isset ($product) && is_object($product)) { |
|
| 271 | 271 | |
| 272 | 272 | // valid product found |
| 273 | - $order_id = self::get_learner_course_active_order_id( $user_id, $course_id ); |
|
| 273 | + $order_id = self::get_learner_course_active_order_id($user_id, $course_id); |
|
| 274 | 274 | |
| 275 | 275 | // product has a successful order so this user may access the content |
| 276 | 276 | // this function may only return false or the default |
| 277 | 277 | // returning true may override other negatives which we don't want |
| 278 | - if( ! $order_id ){ |
|
| 278 | + if ( ! $order_id) { |
|
| 279 | 279 | |
| 280 | 280 | return false; |
| 281 | 281 | |
@@ -298,23 +298,23 @@ discard block |
||
| 298 | 298 | */ |
| 299 | 299 | public static function course_link_from_order( ) { |
| 300 | 300 | |
| 301 | - if( ! is_order_received_page() ){ |
|
| 301 | + if ( ! is_order_received_page()) { |
|
| 302 | 302 | return; |
| 303 | 303 | } |
| 304 | 304 | |
| 305 | - $order_id = get_query_var( 'order-received' ); |
|
| 306 | - $order = new WC_Order( $order_id ); |
|
| 305 | + $order_id = get_query_var('order-received'); |
|
| 306 | + $order = new WC_Order($order_id); |
|
| 307 | 307 | |
| 308 | 308 | // exit early if not wc-completed or wc-processing |
| 309 | - if( 'wc-completed' != $order->post_status |
|
| 310 | - && 'wc-processing' != $order->post_status ) { |
|
| 309 | + if ('wc-completed' != $order->post_status |
|
| 310 | + && 'wc-processing' != $order->post_status) { |
|
| 311 | 311 | return; |
| 312 | 312 | } |
| 313 | 313 | |
| 314 | 314 | $course_links = array(); // store the for links for courses purchased |
| 315 | - foreach ( $order->get_items() as $item ) { |
|
| 315 | + foreach ($order->get_items() as $item) { |
|
| 316 | 316 | |
| 317 | - if ( isset( $item['variation_id'] ) && ( 0 < $item['variation_id'] ) ) { |
|
| 317 | + if (isset($item['variation_id']) && (0 < $item['variation_id'])) { |
|
| 318 | 318 | |
| 319 | 319 | // If item has variation_id then its a variation of the product |
| 320 | 320 | $item_id = $item['variation_id']; |
@@ -326,28 +326,28 @@ discard block |
||
| 326 | 326 | |
| 327 | 327 | } // End If Statement |
| 328 | 328 | |
| 329 | - $user_id = get_post_meta( $order->id, '_customer_user', true ); |
|
| 329 | + $user_id = get_post_meta($order->id, '_customer_user', true); |
|
| 330 | 330 | |
| 331 | - if( $user_id ) { |
|
| 331 | + if ($user_id) { |
|
| 332 | 332 | |
| 333 | 333 | // Get all courses for product |
| 334 | 334 | $args = Sensei_Course::get_default_query_args(); |
| 335 | - $args['meta_query'] = array( array( |
|
| 335 | + $args['meta_query'] = array(array( |
|
| 336 | 336 | 'key' => '_course_woocommerce_product', |
| 337 | 337 | 'value' => $item_id |
| 338 | - ) ); |
|
| 338 | + )); |
|
| 339 | 339 | $args['orderby'] = 'menu_order date'; |
| 340 | 340 | $args['order'] = 'ASC'; |
| 341 | 341 | |
| 342 | 342 | // loop through courses |
| 343 | - $courses = get_posts( $args ); |
|
| 344 | - if( $courses && count( $courses ) > 0 ) { |
|
| 343 | + $courses = get_posts($args); |
|
| 344 | + if ($courses && count($courses) > 0) { |
|
| 345 | 345 | |
| 346 | - foreach( $courses as $course ) { |
|
| 346 | + foreach ($courses as $course) { |
|
| 347 | 347 | |
| 348 | 348 | $title = $course->post_title; |
| 349 | - $permalink = get_permalink( $course->ID ); |
|
| 350 | - $course_links[] .= '<a href="' . esc_url( $permalink ) . '" >' . $title . '</a> '; |
|
| 349 | + $permalink = get_permalink($course->ID); |
|
| 350 | + $course_links[] .= '<a href="'.esc_url($permalink).'" >'.$title.'</a> '; |
|
| 351 | 351 | |
| 352 | 352 | } // end for each |
| 353 | 353 | |
@@ -358,24 +358,24 @@ discard block |
||
| 358 | 358 | }// end loop through orders |
| 359 | 359 | |
| 360 | 360 | // add the courses to the WooCommerce notice |
| 361 | - if( ! empty( $course_links) ){ |
|
| 361 | + if ( ! empty($course_links)) { |
|
| 362 | 362 | |
| 363 | 363 | $courses_html = _nx( |
| 364 | 364 | 'You have purchased the following course:', |
| 365 | 365 | 'You have purchased the following courses:', |
| 366 | - count( $course_links ), |
|
| 366 | + count($course_links), |
|
| 367 | 367 | 'Purchase thank you note on Checkout page. The course link(s) will be show', 'woothemes-sensei' |
| 368 | 368 | ); |
| 369 | 369 | |
| 370 | - foreach( $course_links as $link ){ |
|
| 370 | + foreach ($course_links as $link) { |
|
| 371 | 371 | |
| 372 | - $courses_html .= '<li>' . $link . '</li>'; |
|
| 372 | + $courses_html .= '<li>'.$link.'</li>'; |
|
| 373 | 373 | |
| 374 | 374 | } |
| 375 | 375 | |
| 376 | 376 | $courses_html .= ' </ul>'; |
| 377 | 377 | |
| 378 | - wc_add_notice( $courses_html, 'success' ); |
|
| 378 | + wc_add_notice($courses_html, 'success'); |
|
| 379 | 379 | } |
| 380 | 380 | |
| 381 | 381 | } // end course_link_order_form |
@@ -388,20 +388,20 @@ discard block |
||
| 388 | 388 | * |
| 389 | 389 | * @since 1.9.0 |
| 390 | 390 | */ |
| 391 | - public static function course_in_cart_message(){ |
|
| 391 | + public static function course_in_cart_message() { |
|
| 392 | 392 | |
| 393 | 393 | global $post; |
| 394 | 394 | |
| 395 | - if( self::is_course_in_cart( $post->ID ) ){ ?> |
|
| 395 | + if (self::is_course_in_cart($post->ID)) { ?> |
|
| 396 | 396 | |
| 397 | 397 | <div class="sensei-message info"> |
| 398 | 398 | <?php |
| 399 | 399 | |
| 400 | - $cart_link = '<a class="cart-complete" href="' . WC()->cart->get_checkout_url() |
|
| 401 | - . '" title="' . __('complete purchase', 'woothemes-sensei') . '">' |
|
| 402 | - . __('complete the purchase', 'woothemes-sensei') . '</a>'; |
|
| 400 | + $cart_link = '<a class="cart-complete" href="'.WC()->cart->get_checkout_url() |
|
| 401 | + . '" title="'.__('complete purchase', 'woothemes-sensei').'">' |
|
| 402 | + . __('complete the purchase', 'woothemes-sensei').'</a>'; |
|
| 403 | 403 | |
| 404 | - echo sprintf( __('You have already added this Course to your cart. Please %1$s to access the course.', 'woothemes-sensei'), $cart_link ); |
|
| 404 | + echo sprintf(__('You have already added this Course to your cart. Please %1$s to access the course.', 'woothemes-sensei'), $cart_link); |
|
| 405 | 405 | |
| 406 | 406 | ?> |
| 407 | 407 | </div> |
@@ -415,14 +415,14 @@ discard block |
||
| 415 | 415 | * @param $course_id |
| 416 | 416 | * @return bool |
| 417 | 417 | */ |
| 418 | - public static function is_course_in_cart( $course_id ){ |
|
| 418 | + public static function is_course_in_cart($course_id) { |
|
| 419 | 419 | |
| 420 | - $wc_post_id = absint( get_post_meta( $course_id, '_course_woocommerce_product', true ) ); |
|
| 421 | - $user_course_status_id = Sensei_Utils::user_started_course( $course_id , get_current_user_id() ); |
|
| 420 | + $wc_post_id = absint(get_post_meta($course_id, '_course_woocommerce_product', true)); |
|
| 421 | + $user_course_status_id = Sensei_Utils::user_started_course($course_id, get_current_user_id()); |
|
| 422 | 422 | |
| 423 | - if ( 0 < intval( $wc_post_id ) && ! $user_course_status_id ) { |
|
| 423 | + if (0 < intval($wc_post_id) && ! $user_course_status_id) { |
|
| 424 | 424 | |
| 425 | - if ( self::is_product_in_cart( $wc_post_id ) ) { |
|
| 425 | + if (self::is_product_in_cart($wc_post_id)) { |
|
| 426 | 426 | |
| 427 | 427 | return true; |
| 428 | 428 | |
@@ -440,20 +440,20 @@ discard block |
||
| 440 | 440 | * @param $product_id |
| 441 | 441 | * @return bool |
| 442 | 442 | */ |
| 443 | - public static function is_product_in_cart( $product_id ){ |
|
| 443 | + public static function is_product_in_cart($product_id) { |
|
| 444 | 444 | |
| 445 | - if ( 0 < $product_id ) { |
|
| 445 | + if (0 < $product_id) { |
|
| 446 | 446 | |
| 447 | - $product = wc_get_product( $product_id ); |
|
| 447 | + $product = wc_get_product($product_id); |
|
| 448 | 448 | |
| 449 | 449 | $parent_id = ''; |
| 450 | - if( isset( $product->variation_id ) && 0 < intval( $product->variation_id ) ) { |
|
| 450 | + if (isset($product->variation_id) && 0 < intval($product->variation_id)) { |
|
| 451 | 451 | $wc_product_id = $product->parent->id; |
| 452 | 452 | } |
| 453 | - foreach( WC()->cart->get_cart() as $cart_item_key => $values ) { |
|
| 453 | + foreach (WC()->cart->get_cart() as $cart_item_key => $values) { |
|
| 454 | 454 | |
| 455 | 455 | $cart_product = $values['data']; |
| 456 | - if( $product_id == $cart_product->id ) { |
|
| 456 | + if ($product_id == $cart_product->id) { |
|
| 457 | 457 | |
| 458 | 458 | return true; |
| 459 | 459 | |
@@ -475,9 +475,9 @@ discard block |
||
| 475 | 475 | * @type int $wp_post_id |
| 476 | 476 | * } |
| 477 | 477 | */ |
| 478 | - public static function get_free_product_ids(){ |
|
| 478 | + public static function get_free_product_ids() { |
|
| 479 | 479 | |
| 480 | - return get_posts( array( |
|
| 480 | + return get_posts(array( |
|
| 481 | 481 | 'post_type' => 'product', |
| 482 | 482 | 'posts_per_page' => '1000', |
| 483 | 483 | 'fields' => 'ids', |
@@ -502,7 +502,7 @@ discard block |
||
| 502 | 502 | * @since 1.9.0 |
| 503 | 503 | * @return array $wp_meta_query_param |
| 504 | 504 | */ |
| 505 | - public static function get_free_courses_meta_query_args(){ |
|
| 505 | + public static function get_free_courses_meta_query_args() { |
|
| 506 | 506 | |
| 507 | 507 | return array( |
| 508 | 508 | 'relation' => 'OR', |
@@ -526,7 +526,7 @@ discard block |
||
| 526 | 526 | * @since 1.9.0 |
| 527 | 527 | * @return array $wp_query_meta_query_args_param |
| 528 | 528 | */ |
| 529 | - public static function get_paid_courses_meta_query_args(){ |
|
| 529 | + public static function get_paid_courses_meta_query_args() { |
|
| 530 | 530 | |
| 531 | 531 | $paid_product_ids = self::get_paid_product_ids(); |
| 532 | 532 | |
@@ -535,7 +535,7 @@ discard block |
||
| 535 | 535 | 'key' => '_course_woocommerce_product', |
| 536 | 536 | // when empty we give a false post_id to ensure the caller doesn't get any courses for their |
| 537 | 537 | // query |
| 538 | - 'value' => empty( $paid_product_ids )? '-1000' : $paid_product_ids, |
|
| 538 | + 'value' => empty($paid_product_ids) ? '-1000' : $paid_product_ids, |
|
| 539 | 539 | 'compare' => 'IN', |
| 540 | 540 | ), |
| 541 | 541 | ); |
@@ -549,7 +549,7 @@ discard block |
||
| 549 | 549 | * @since 1.9.0 |
| 550 | 550 | * @return array $product_query_args |
| 551 | 551 | */ |
| 552 | - public static function get_paid_products_on_sale_query_args(){ |
|
| 552 | + public static function get_paid_products_on_sale_query_args() { |
|
| 553 | 553 | |
| 554 | 554 | $args = array( |
| 555 | 555 | 'post_type' => 'product', |
@@ -559,9 +559,9 @@ discard block |
||
| 559 | 559 | 'suppress_filters' => 0 |
| 560 | 560 | ); |
| 561 | 561 | |
| 562 | - $args[ 'fields' ] = 'ids'; |
|
| 562 | + $args['fields'] = 'ids'; |
|
| 563 | 563 | |
| 564 | - $args[ 'meta_query' ] = array( |
|
| 564 | + $args['meta_query'] = array( |
|
| 565 | 565 | 'relation' => 'AND', |
| 566 | 566 | array( |
| 567 | 567 | 'key'=> '_regular_price', |
@@ -588,7 +588,7 @@ discard block |
||
| 588 | 588 | * |
| 589 | 589 | * @return array |
| 590 | 590 | */ |
| 591 | - public static function get_paid_products_not_on_sale_query_args(){ |
|
| 591 | + public static function get_paid_products_not_on_sale_query_args() { |
|
| 592 | 592 | |
| 593 | 593 | $args = array( |
| 594 | 594 | 'post_type' => 'product', |
@@ -598,8 +598,8 @@ discard block |
||
| 598 | 598 | 'suppress_filters' => 0 |
| 599 | 599 | ); |
| 600 | 600 | |
| 601 | - $args[ 'fields' ] = 'ids'; |
|
| 602 | - $args[ 'meta_query' ] = array( |
|
| 601 | + $args['fields'] = 'ids'; |
|
| 602 | + $args['meta_query'] = array( |
|
| 603 | 603 | 'relation' => 'AND', |
| 604 | 604 | array( |
| 605 | 605 | 'key'=> '_regular_price', |
@@ -625,24 +625,24 @@ discard block |
||
| 625 | 625 | * |
| 626 | 626 | * @return array $woocommerce_paid_product_ids |
| 627 | 627 | */ |
| 628 | - public static function get_paid_product_ids(){ |
|
| 628 | + public static function get_paid_product_ids() { |
|
| 629 | 629 | |
| 630 | 630 | // get all the paid WooCommerce products that has regular |
| 631 | 631 | // and sale price greater than 0 |
| 632 | 632 | // will be used later to check for course with the id as meta |
| 633 | - $paid_product_ids_with_sale = get_posts( self::get_paid_products_on_sale_query_args() ); |
|
| 633 | + $paid_product_ids_with_sale = get_posts(self::get_paid_products_on_sale_query_args()); |
|
| 634 | 634 | |
| 635 | 635 | // get all the paid WooCommerce products that has regular price |
| 636 | 636 | // greater than 0 without a sale price |
| 637 | 637 | // will be used later to check for course with the id as meta |
| 638 | - $paid_product_ids_without_sale = get_posts( self::get_paid_products_not_on_sale_query_args() ); |
|
| 638 | + $paid_product_ids_without_sale = get_posts(self::get_paid_products_not_on_sale_query_args()); |
|
| 639 | 639 | |
| 640 | 640 | // combine products ID's with regular and sale price grater than zero and those without |
| 641 | 641 | // sale but regular price greater than zero |
| 642 | - $woocommerce_paid_product_ids = array_merge( $paid_product_ids_with_sale, $paid_product_ids_without_sale ); |
|
| 642 | + $woocommerce_paid_product_ids = array_merge($paid_product_ids_with_sale, $paid_product_ids_without_sale); |
|
| 643 | 643 | |
| 644 | 644 | // if |
| 645 | - if( empty($woocommerce_paid_product_ids) ){ |
|
| 645 | + if (empty($woocommerce_paid_product_ids)) { |
|
| 646 | 646 | return array( ); |
| 647 | 647 | } |
| 648 | 648 | return $woocommerce_paid_product_ids; |
@@ -661,20 +661,20 @@ discard block |
||
| 661 | 661 | * |
| 662 | 662 | * @return array |
| 663 | 663 | */ |
| 664 | - public static function get_free_courses(){ |
|
| 664 | + public static function get_free_courses() { |
|
| 665 | 665 | |
| 666 | 666 | $free_course_query_args = Sensei_Course::get_default_query_args(); |
| 667 | - $free_course_query_args[ 'meta_query' ] = self::get_free_courses_meta_query_args(); |
|
| 667 | + $free_course_query_args['meta_query'] = self::get_free_courses_meta_query_args(); |
|
| 668 | 668 | |
| 669 | 669 | // don't show any paid courses |
| 670 | 670 | $courses = self::get_paid_courses(); |
| 671 | 671 | $ids = array(); |
| 672 | - foreach( $courses as $course ){ |
|
| 672 | + foreach ($courses as $course) { |
|
| 673 | 673 | $ids[] = $course->ID; |
| 674 | 674 | } |
| 675 | - $free_course_query_args[ 'post__not_in' ] = $ids; |
|
| 675 | + $free_course_query_args['post__not_in'] = $ids; |
|
| 676 | 676 | |
| 677 | - return get_posts( $free_course_query_args ); |
|
| 677 | + return get_posts($free_course_query_args); |
|
| 678 | 678 | |
| 679 | 679 | } |
| 680 | 680 | |
@@ -684,13 +684,13 @@ discard block |
||
| 684 | 684 | * @since 1.9.0 |
| 685 | 685 | * @return array |
| 686 | 686 | */ |
| 687 | - public static function get_paid_courses(){ |
|
| 687 | + public static function get_paid_courses() { |
|
| 688 | 688 | |
| 689 | 689 | $paid_course_query_args = Sensei_Course::get_default_query_args(); |
| 690 | 690 | |
| 691 | - $paid_course_query_args[ 'meta_query' ] = self::get_paid_courses_meta_query_args(); |
|
| 691 | + $paid_course_query_args['meta_query'] = self::get_paid_courses_meta_query_args(); |
|
| 692 | 692 | |
| 693 | - return get_posts( $paid_course_query_args ); |
|
| 693 | + return get_posts($paid_course_query_args); |
|
| 694 | 694 | } |
| 695 | 695 | |
| 696 | 696 | /** |
@@ -705,17 +705,17 @@ discard block |
||
| 705 | 705 | * @param int $course_id |
| 706 | 706 | * @return string $html markup for the button or nothing if user not allowed to buy |
| 707 | 707 | */ |
| 708 | - public static function the_add_to_cart_button_html( $course_id ){ |
|
| 708 | + public static function the_add_to_cart_button_html($course_id) { |
|
| 709 | 709 | |
| 710 | - if ( ! Sensei_Course::is_prerequisite_complete( $course_id )) { |
|
| 710 | + if ( ! Sensei_Course::is_prerequisite_complete($course_id)) { |
|
| 711 | 711 | return ''; |
| 712 | 712 | } |
| 713 | 713 | |
| 714 | - $wc_post_id = self::get_course_product_id( $course_id ); |
|
| 714 | + $wc_post_id = self::get_course_product_id($course_id); |
|
| 715 | 715 | |
| 716 | 716 | // Check if customer purchased the product |
| 717 | - if ( self::has_customer_bought_product( get_current_user_id(), $wc_post_id ) |
|
| 718 | - || empty( $wc_post_id ) ) { |
|
| 717 | + if (self::has_customer_bought_product(get_current_user_id(), $wc_post_id) |
|
| 718 | + || empty($wc_post_id)) { |
|
| 719 | 719 | |
| 720 | 720 | return ''; |
| 721 | 721 | |
@@ -723,15 +723,15 @@ discard block |
||
| 723 | 723 | |
| 724 | 724 | // based on simple.php in WC templates/single-product/add-to-cart/ |
| 725 | 725 | // Get the product |
| 726 | - $product = Sensei()->sensei_get_woocommerce_product_object( $wc_post_id ); |
|
| 726 | + $product = Sensei()->sensei_get_woocommerce_product_object($wc_post_id); |
|
| 727 | 727 | |
| 728 | 728 | // do not show the button for invalid products, non purchasable products, out |
| 729 | 729 | // of stock product or if course is already in cart |
| 730 | - if ( ! isset ( $product ) |
|
| 731 | - || ! is_object( $product ) |
|
| 730 | + if ( ! isset ($product) |
|
| 731 | + || ! is_object($product) |
|
| 732 | 732 | || ! $product->is_purchasable() |
| 733 | 733 | || ! $product->is_in_stock() |
| 734 | - || self::is_course_in_cart( $wc_post_id ) ) { |
|
| 734 | + || self::is_course_in_cart($wc_post_id)) { |
|
| 735 | 735 | |
| 736 | 736 | return ''; |
| 737 | 737 | |
@@ -742,23 +742,23 @@ discard block |
||
| 742 | 742 | // |
| 743 | 743 | ?> |
| 744 | 744 | |
| 745 | - <form action="<?php echo esc_url( $product->add_to_cart_url() ); ?>" |
|
| 745 | + <form action="<?php echo esc_url($product->add_to_cart_url()); ?>" |
|
| 746 | 746 | class="cart" |
| 747 | 747 | method="post" |
| 748 | 748 | enctype="multipart/form-data"> |
| 749 | 749 | |
| 750 | - <input type="hidden" name="product_id" value="<?php echo esc_attr( $product->id ); ?>" /> |
|
| 750 | + <input type="hidden" name="product_id" value="<?php echo esc_attr($product->id); ?>" /> |
|
| 751 | 751 | |
| 752 | 752 | <input type="hidden" name="quantity" value="1" /> |
| 753 | 753 | |
| 754 | - <?php if ( isset( $product->variation_id ) && 0 < intval( $product->variation_id ) ) { ?> |
|
| 754 | + <?php if (isset($product->variation_id) && 0 < intval($product->variation_id)) { ?> |
|
| 755 | 755 | |
| 756 | 756 | <input type="hidden" name="variation_id" value="<?php echo $product->variation_id; ?>" /> |
| 757 | - <?php if( isset( $product->variation_data ) && is_array( $product->variation_data ) && count( $product->variation_data ) > 0 ) { ?> |
|
| 757 | + <?php if (isset($product->variation_data) && is_array($product->variation_data) && count($product->variation_data) > 0) { ?> |
|
| 758 | 758 | |
| 759 | - <?php foreach( $product->variation_data as $att => $val ) { ?> |
|
| 759 | + <?php foreach ($product->variation_data as $att => $val) { ?> |
|
| 760 | 760 | |
| 761 | - <input type="hidden" name="<?php echo esc_attr( $att ); ?>" id="<?php echo esc_attr( str_replace( 'attribute_', '', $att ) ); ?>" value="<?php echo esc_attr( $val ); ?>" /> |
|
| 761 | + <input type="hidden" name="<?php echo esc_attr($att); ?>" id="<?php echo esc_attr(str_replace('attribute_', '', $att)); ?>" value="<?php echo esc_attr($val); ?>" /> |
|
| 762 | 762 | |
| 763 | 763 | <?php } ?> |
| 764 | 764 | |
@@ -786,26 +786,26 @@ discard block |
||
| 786 | 786 | * |
| 787 | 787 | * @return string $message |
| 788 | 788 | */ |
| 789 | - public static function alter_no_permissions_message( $message, $post_id ){ |
|
| 789 | + public static function alter_no_permissions_message($message, $post_id) { |
|
| 790 | 790 | |
| 791 | - if( empty( $post_id ) || 'course'!=get_post_type( $post_id ) ){ |
|
| 791 | + if (empty($post_id) || 'course' != get_post_type($post_id)) { |
|
| 792 | 792 | return $message; |
| 793 | 793 | } |
| 794 | 794 | |
| 795 | - $product_id = self::get_course_product_id( $post_id ); |
|
| 795 | + $product_id = self::get_course_product_id($post_id); |
|
| 796 | 796 | |
| 797 | - if( ! $product_id |
|
| 798 | - || self::has_customer_bought_product( get_current_user_id(),$product_id ) ){ |
|
| 797 | + if ( ! $product_id |
|
| 798 | + || self::has_customer_bought_product(get_current_user_id(), $product_id)) { |
|
| 799 | 799 | |
| 800 | 800 | return $message; |
| 801 | 801 | |
| 802 | 802 | } |
| 803 | 803 | |
| 804 | 804 | ob_start(); |
| 805 | - self::the_course_no_permissions_message( $post_id ); |
|
| 805 | + self::the_course_no_permissions_message($post_id); |
|
| 806 | 806 | $woocommerce_course_no_permissions_message = ob_get_clean(); |
| 807 | 807 | |
| 808 | - return $woocommerce_course_no_permissions_message ; |
|
| 808 | + return $woocommerce_course_no_permissions_message; |
|
| 809 | 809 | |
| 810 | 810 | } |
| 811 | 811 | /** |
@@ -814,16 +814,16 @@ discard block |
||
| 814 | 814 | * |
| 815 | 815 | * @since 1.9.0 |
| 816 | 816 | */ |
| 817 | - public static function the_course_no_permissions_message( $course_id ){ |
|
| 817 | + public static function the_course_no_permissions_message($course_id) { |
|
| 818 | 818 | |
| 819 | 819 | // login link |
| 820 | - $my_courses_page_id = intval( Sensei()->settings->settings[ 'my_course_page' ] ); |
|
| 821 | - $login_link = '<a href="' . esc_url( get_permalink( $my_courses_page_id ) ) . '">' . __( 'log in', 'woothemes-sensei' ) . '</a>'; |
|
| 820 | + $my_courses_page_id = intval(Sensei()->settings->settings['my_course_page']); |
|
| 821 | + $login_link = '<a href="'.esc_url(get_permalink($my_courses_page_id)).'">'.__('log in', 'woothemes-sensei').'</a>'; |
|
| 822 | 822 | |
| 823 | 823 | ?> |
| 824 | 824 | |
| 825 | 825 | <span class="add-to-cart-login"> |
| 826 | - <?php echo sprintf( __( 'Or %1$s to access your purchased courses', 'woothemes-sensei' ), $login_link ); ?> |
|
| 826 | + <?php echo sprintf(__('Or %1$s to access your purchased courses', 'woothemes-sensei'), $login_link); ?> |
|
| 827 | 827 | </span> |
| 828 | 828 | |
| 829 | 829 | <?php } |
@@ -838,45 +838,45 @@ discard block |
||
| 838 | 838 | * |
| 839 | 839 | * @return bool |
| 840 | 840 | */ |
| 841 | - public static function has_customer_bought_product ( $user_id, $product_id ){ |
|
| 841 | + public static function has_customer_bought_product($user_id, $product_id) { |
|
| 842 | 842 | |
| 843 | - $orders = get_posts( array( |
|
| 843 | + $orders = get_posts(array( |
|
| 844 | 844 | 'numberposts' => -1, |
| 845 | 845 | 'post_type' => 'shope_order', |
| 846 | 846 | 'meta_key' => '_customer_user', |
| 847 | - 'meta_value' => intval( $user_id ), |
|
| 848 | - 'post_status' => array( 'wc-complete','wc-processing' ), |
|
| 849 | - ) ); |
|
| 847 | + 'meta_value' => intval($user_id), |
|
| 848 | + 'post_status' => array('wc-complete', 'wc-processing'), |
|
| 849 | + )); |
|
| 850 | 850 | |
| 851 | - foreach ( $orders as $order_id ) { |
|
| 851 | + foreach ($orders as $order_id) { |
|
| 852 | 852 | |
| 853 | - $order = new WC_Order( $order_id->ID ); |
|
| 853 | + $order = new WC_Order($order_id->ID); |
|
| 854 | 854 | |
| 855 | 855 | // wc-active is the subscriptions complete status |
| 856 | - if ( ! in_array( $order->post_status, array( 'wc-complete','wc-processing' ) ) ){ |
|
| 856 | + if ( ! in_array($order->post_status, array('wc-complete', 'wc-processing'))) { |
|
| 857 | 857 | |
| 858 | 858 | continue; |
| 859 | 859 | |
| 860 | 860 | } |
| 861 | 861 | |
| 862 | - if ( ! ( 0 < sizeof( $order->get_items() ) ) ) { |
|
| 862 | + if ( ! (0 < sizeof($order->get_items()))) { |
|
| 863 | 863 | |
| 864 | 864 | continue; |
| 865 | 865 | |
| 866 | 866 | } |
| 867 | 867 | |
| 868 | - foreach( $order->get_items() as $item ) { |
|
| 868 | + foreach ($order->get_items() as $item) { |
|
| 869 | 869 | |
| 870 | 870 | // Check if user has bought product |
| 871 | - if ( $item['product_id'] == $product_id || $item['variation_id'] == $product_id ) { |
|
| 871 | + if ($item['product_id'] == $product_id || $item['variation_id'] == $product_id) { |
|
| 872 | 872 | |
| 873 | 873 | // Check if user has an active subscription for product |
| 874 | - if( class_exists( 'WC_Subscriptions_Manager' ) ) { |
|
| 875 | - $sub_key = wcs_get_subscription( $order ); |
|
| 876 | - if( $sub_key ) { |
|
| 877 | - $sub = wcs_get_subscription( $sub_key ); |
|
| 878 | - if( $sub && isset( $sub['status'] ) ) { |
|
| 879 | - if( 'active' == $sub['status'] ) { |
|
| 874 | + if (class_exists('WC_Subscriptions_Manager')) { |
|
| 875 | + $sub_key = wcs_get_subscription($order); |
|
| 876 | + if ($sub_key) { |
|
| 877 | + $sub = wcs_get_subscription($sub_key); |
|
| 878 | + if ($sub && isset($sub['status'])) { |
|
| 879 | + if ('active' == $sub['status']) { |
|
| 880 | 880 | return true; |
| 881 | 881 | } else { |
| 882 | 882 | return false; |
@@ -905,11 +905,11 @@ discard block |
||
| 905 | 905 | * @return string $woocommerce_product_id or false if none exist |
| 906 | 906 | * |
| 907 | 907 | */ |
| 908 | - public static function get_course_product_id( $course_id ){ |
|
| 908 | + public static function get_course_product_id($course_id) { |
|
| 909 | 909 | |
| 910 | - $product_id = get_post_meta( $course_id, '_course_woocommerce_product', true ); |
|
| 910 | + $product_id = get_post_meta($course_id, '_course_woocommerce_product', true); |
|
| 911 | 911 | |
| 912 | - if( empty( $product_id ) || 'product' != get_post_type( $product_id ) ){ |
|
| 912 | + if (empty($product_id) || 'product' != get_post_type($product_id)) { |
|
| 913 | 913 | return false; |
| 914 | 914 | } |
| 915 | 915 | |
@@ -923,11 +923,11 @@ discard block |
||
| 923 | 923 | * @param array $classes |
| 924 | 924 | * @return array |
| 925 | 925 | */ |
| 926 | - public static function add_woocommerce_body_class( $classes ){ |
|
| 926 | + public static function add_woocommerce_body_class($classes) { |
|
| 927 | 927 | |
| 928 | - if( ! in_array( 'woocommerce', $classes ) ){ |
|
| 928 | + if ( ! in_array('woocommerce', $classes)) { |
|
| 929 | 929 | |
| 930 | - $classes[] ='woocommerce'; |
|
| 930 | + $classes[] = 'woocommerce'; |
|
| 931 | 931 | |
| 932 | 932 | } |
| 933 | 933 | |
@@ -945,7 +945,7 @@ discard block |
||
| 945 | 945 | * |
| 946 | 946 | * @return void |
| 947 | 947 | */ |
| 948 | - public static function activate_subscription( $order ) { |
|
| 948 | + public static function activate_subscription($order) { |
|
| 949 | 949 | |
| 950 | 950 | $order_user = get_user_by('id', $order->user_id); |
| 951 | 951 | $user['ID'] = $order_user->ID; |
@@ -954,13 +954,13 @@ discard block |
||
| 954 | 954 | $user['user_url'] = $order_user->user_url; |
| 955 | 955 | |
| 956 | 956 | // Run through each product ordered |
| 957 | - if ( ! sizeof($order->get_items() )>0 ) { |
|
| 957 | + if ( ! sizeof($order->get_items()) > 0) { |
|
| 958 | 958 | |
| 959 | 959 | return; |
| 960 | 960 | |
| 961 | 961 | } |
| 962 | 962 | |
| 963 | - foreach($order->get_items() as $item) { |
|
| 963 | + foreach ($order->get_items() as $item) { |
|
| 964 | 964 | |
| 965 | 965 | $product_type = ''; |
| 966 | 966 | |
@@ -975,21 +975,21 @@ discard block |
||
| 975 | 975 | |
| 976 | 976 | } // End If Statement |
| 977 | 977 | |
| 978 | - $_product = self::get_product_object( $item_id, $product_type ); |
|
| 978 | + $_product = self::get_product_object($item_id, $product_type); |
|
| 979 | 979 | |
| 980 | 980 | // Get courses that use the WC product |
| 981 | 981 | $courses = array(); |
| 982 | 982 | |
| 983 | - if ( ! in_array( $product_type, self::get_subscription_types() ) ) { |
|
| 983 | + if ( ! in_array($product_type, self::get_subscription_types())) { |
|
| 984 | 984 | |
| 985 | - $courses = Sensei()->course->get_product_courses( $item_id ); |
|
| 985 | + $courses = Sensei()->course->get_product_courses($item_id); |
|
| 986 | 986 | |
| 987 | 987 | } // End If Statement |
| 988 | 988 | |
| 989 | 989 | // Loop and add the user to the course. |
| 990 | - foreach ( $courses as $course_item ){ |
|
| 990 | + foreach ($courses as $course_item) { |
|
| 991 | 991 | |
| 992 | - Sensei_Utils::user_start_course( intval( $user['ID'] ), $course_item->ID ); |
|
| 992 | + Sensei_Utils::user_start_course(intval($user['ID']), $course_item->ID); |
|
| 993 | 993 | |
| 994 | 994 | } // End For Loop |
| 995 | 995 | |
@@ -1007,13 +1007,13 @@ discard block |
||
| 1007 | 1007 | * |
| 1008 | 1008 | * @return void |
| 1009 | 1009 | */ |
| 1010 | - public static function email_course_details( $order ){ |
|
| 1010 | + public static function email_course_details($order) { |
|
| 1011 | 1011 | |
| 1012 | 1012 | global $woocommerce; |
| 1013 | 1013 | |
| 1014 | 1014 | // exit early if not wc-completed or wc-processing |
| 1015 | - if( 'wc-completed' != $order->post_status |
|
| 1016 | - && 'wc-processing' != $order->post_status ) { |
|
| 1015 | + if ('wc-completed' != $order->post_status |
|
| 1016 | + && 'wc-processing' != $order->post_status) { |
|
| 1017 | 1017 | return; |
| 1018 | 1018 | } |
| 1019 | 1019 | |
@@ -1021,16 +1021,16 @@ discard block |
||
| 1021 | 1021 | $order_id = $order->id; |
| 1022 | 1022 | |
| 1023 | 1023 | //If object have items go through them all to find course |
| 1024 | - if ( 0 < sizeof( $order_items ) ) { |
|
| 1024 | + if (0 < sizeof($order_items)) { |
|
| 1025 | 1025 | |
| 1026 | - $course_details_html = '<h2>' . __( 'Course details', 'woothemes-sensei' ) . '</h2>'; |
|
| 1026 | + $course_details_html = '<h2>'.__('Course details', 'woothemes-sensei').'</h2>'; |
|
| 1027 | 1027 | $order_contains_courses = false; |
| 1028 | 1028 | |
| 1029 | 1029 | |
| 1030 | - foreach ( $order_items as $item ) { |
|
| 1030 | + foreach ($order_items as $item) { |
|
| 1031 | 1031 | |
| 1032 | 1032 | $product_type = ''; |
| 1033 | - if ( isset( $item['variation_id'] ) && ( 0 < $item['variation_id'] ) ) { |
|
| 1033 | + if (isset($item['variation_id']) && (0 < $item['variation_id'])) { |
|
| 1034 | 1034 | // If item has variation_id then its from variation |
| 1035 | 1035 | $item_id = $item['variation_id']; |
| 1036 | 1036 | $product_type = 'variation'; |
@@ -1039,9 +1039,9 @@ discard block |
||
| 1039 | 1039 | $item_id = $item['product_id']; |
| 1040 | 1040 | } // End If Statement |
| 1041 | 1041 | |
| 1042 | - $user_id = get_post_meta( $order_id, '_customer_user', true ); |
|
| 1042 | + $user_id = get_post_meta($order_id, '_customer_user', true); |
|
| 1043 | 1043 | |
| 1044 | - if( $user_id ) { |
|
| 1044 | + if ($user_id) { |
|
| 1045 | 1045 | |
| 1046 | 1046 | // Get all courses for product |
| 1047 | 1047 | $args = array( |
@@ -1056,16 +1056,16 @@ discard block |
||
| 1056 | 1056 | 'orderby' => 'menu_order date', |
| 1057 | 1057 | 'order' => 'ASC', |
| 1058 | 1058 | ); |
| 1059 | - $courses = get_posts( $args ); |
|
| 1059 | + $courses = get_posts($args); |
|
| 1060 | 1060 | |
| 1061 | - if( $courses && count( $courses ) > 0 ) { |
|
| 1061 | + if ($courses && count($courses) > 0) { |
|
| 1062 | 1062 | |
| 1063 | - foreach( $courses as $course ) { |
|
| 1063 | + foreach ($courses as $course) { |
|
| 1064 | 1064 | |
| 1065 | 1065 | $title = $course->post_title; |
| 1066 | - $permalink = get_permalink( $course->ID ); |
|
| 1066 | + $permalink = get_permalink($course->ID); |
|
| 1067 | 1067 | $order_contains_courses = true; |
| 1068 | - $course_details_html .= '<p><strong>' . sprintf( __( 'View course: %1$s', 'woothemes-sensei' ), '</strong><a href="' . esc_url( $permalink ) . '">' . $title . '</a>' ) . '</p>'; |
|
| 1068 | + $course_details_html .= '<p><strong>'.sprintf(__('View course: %1$s', 'woothemes-sensei'), '</strong><a href="'.esc_url($permalink).'">'.$title.'</a>').'</p>'; |
|
| 1069 | 1069 | } |
| 1070 | 1070 | |
| 1071 | 1071 | |
@@ -1076,7 +1076,7 @@ discard block |
||
| 1076 | 1076 | } // end for each order item |
| 1077 | 1077 | |
| 1078 | 1078 | // Output Course details |
| 1079 | - if( $order_contains_courses ){ |
|
| 1079 | + if ($order_contains_courses) { |
|
| 1080 | 1080 | |
| 1081 | 1081 | echo $course_details_html; |
| 1082 | 1082 | |
@@ -1094,26 +1094,26 @@ discard block |
||
| 1094 | 1094 | * @param int $order_id WC order ID |
| 1095 | 1095 | * @return void |
| 1096 | 1096 | */ |
| 1097 | - public static function complete_order ( $order_id = 0 ) { |
|
| 1097 | + public static function complete_order($order_id = 0) { |
|
| 1098 | 1098 | |
| 1099 | 1099 | $order_user = array(); |
| 1100 | 1100 | |
| 1101 | 1101 | // Check for WooCommerce |
| 1102 | - if ( Sensei_WC::is_woocommerce_active() && ( 0 < $order_id ) ) { |
|
| 1102 | + if (Sensei_WC::is_woocommerce_active() && (0 < $order_id)) { |
|
| 1103 | 1103 | // Get order object |
| 1104 | - $order = new WC_Order( $order_id ); |
|
| 1105 | - $user = get_user_by( 'id', $order->get_user_id() ); |
|
| 1104 | + $order = new WC_Order($order_id); |
|
| 1105 | + $user = get_user_by('id', $order->get_user_id()); |
|
| 1106 | 1106 | $order_user['ID'] = $user->ID; |
| 1107 | 1107 | $order_user['user_login'] = $user->user_login; |
| 1108 | 1108 | $order_user['user_email'] = $user->user_email; |
| 1109 | 1109 | $order_user['user_url'] = $user->user_url; |
| 1110 | 1110 | // Run through each product ordered |
| 1111 | - if ( 0 < sizeof( $order->get_items() ) ) { |
|
| 1111 | + if (0 < sizeof($order->get_items())) { |
|
| 1112 | 1112 | |
| 1113 | - foreach( $order->get_items() as $item ) { |
|
| 1113 | + foreach ($order->get_items() as $item) { |
|
| 1114 | 1114 | |
| 1115 | 1115 | $product_type = ''; |
| 1116 | - if ( isset( $item['variation_id'] ) && ( 0 < $item['variation_id'] ) ) { |
|
| 1116 | + if (isset($item['variation_id']) && (0 < $item['variation_id'])) { |
|
| 1117 | 1117 | |
| 1118 | 1118 | $item_id = $item['variation_id']; |
| 1119 | 1119 | $product_type = 'variation'; |
@@ -1124,15 +1124,15 @@ discard block |
||
| 1124 | 1124 | |
| 1125 | 1125 | } // End If Statement |
| 1126 | 1126 | |
| 1127 | - $_product = Sensei_WC::get_product_object( $item_id, $product_type ); |
|
| 1127 | + $_product = Sensei_WC::get_product_object($item_id, $product_type); |
|
| 1128 | 1128 | |
| 1129 | 1129 | // Get courses that use the WC product |
| 1130 | - $courses = Sensei()->course->get_product_courses( $_product->id ); |
|
| 1130 | + $courses = Sensei()->course->get_product_courses($_product->id); |
|
| 1131 | 1131 | |
| 1132 | 1132 | // Loop and update those courses |
| 1133 | - foreach ( $courses as $course_item ) { |
|
| 1133 | + foreach ($courses as $course_item) { |
|
| 1134 | 1134 | |
| 1135 | - $update_course = Sensei()->woocommerce_course_update( $course_item->ID, $order_user ); |
|
| 1135 | + $update_course = Sensei()->woocommerce_course_update($course_item->ID, $order_user); |
|
| 1136 | 1136 | |
| 1137 | 1137 | } // End For Loop |
| 1138 | 1138 | |
@@ -1140,7 +1140,7 @@ discard block |
||
| 1140 | 1140 | |
| 1141 | 1141 | } // End If Statement |
| 1142 | 1142 | // Add meta to indicate that payment has been completed successfully |
| 1143 | - update_post_meta( $order_id, 'sensei_payment_complete', '1' ); |
|
| 1143 | + update_post_meta($order_id, 'sensei_payment_complete', '1'); |
|
| 1144 | 1144 | |
| 1145 | 1145 | } // End If Statement |
| 1146 | 1146 | |
@@ -1154,28 +1154,28 @@ discard block |
||
| 1154 | 1154 | * @param integer| WC_Order $order_id order ID |
| 1155 | 1155 | * @return void |
| 1156 | 1156 | */ |
| 1157 | - public static function cancel_order ( $order_id ) { |
|
| 1157 | + public static function cancel_order($order_id) { |
|
| 1158 | 1158 | |
| 1159 | 1159 | // Get order object |
| 1160 | - if( is_object( $order_id ) ){ |
|
| 1160 | + if (is_object($order_id)) { |
|
| 1161 | 1161 | |
| 1162 | 1162 | $order = $order_id; |
| 1163 | 1163 | |
| 1164 | - }else{ |
|
| 1164 | + } else { |
|
| 1165 | 1165 | |
| 1166 | - $order = new WC_Order( $order_id ); |
|
| 1166 | + $order = new WC_Order($order_id); |
|
| 1167 | 1167 | } |
| 1168 | 1168 | |
| 1169 | 1169 | // Run through each product ordered |
| 1170 | - if ( 0 < sizeof( $order->get_items() ) ) { |
|
| 1170 | + if (0 < sizeof($order->get_items())) { |
|
| 1171 | 1171 | |
| 1172 | 1172 | // Get order user |
| 1173 | - $user_id = $order->__get( 'user_id' ); |
|
| 1173 | + $user_id = $order->__get('user_id'); |
|
| 1174 | 1174 | |
| 1175 | - foreach( $order->get_items() as $item ) { |
|
| 1175 | + foreach ($order->get_items() as $item) { |
|
| 1176 | 1176 | |
| 1177 | 1177 | $product_type = ''; |
| 1178 | - if ( isset( $item['variation_id'] ) && ( 0 < $item['variation_id'] ) ) { |
|
| 1178 | + if (isset($item['variation_id']) && (0 < $item['variation_id'])) { |
|
| 1179 | 1179 | |
| 1180 | 1180 | $item_id = $item['variation_id']; |
| 1181 | 1181 | $product_type = 'variation'; |
@@ -1186,17 +1186,17 @@ discard block |
||
| 1186 | 1186 | |
| 1187 | 1187 | } // End If Statement |
| 1188 | 1188 | |
| 1189 | - $_product = Sensei_WC::get_product_object( $item_id, $product_type ); |
|
| 1189 | + $_product = Sensei_WC::get_product_object($item_id, $product_type); |
|
| 1190 | 1190 | |
| 1191 | 1191 | // Get courses that use the WC product |
| 1192 | 1192 | $courses = array(); |
| 1193 | - $courses = Sensei()->course->get_product_courses( $item_id ); |
|
| 1193 | + $courses = Sensei()->course->get_product_courses($item_id); |
|
| 1194 | 1194 | |
| 1195 | 1195 | // Loop and update those courses |
| 1196 | - foreach ($courses as $course_item){ |
|
| 1196 | + foreach ($courses as $course_item) { |
|
| 1197 | 1197 | |
| 1198 | 1198 | // Check and Remove course from courses user meta |
| 1199 | - $dataset_changes = Sensei_Utils::sensei_remove_user_from_course( $course_item->ID, $user_id ); |
|
| 1199 | + $dataset_changes = Sensei_Utils::sensei_remove_user_from_course($course_item->ID, $user_id); |
|
| 1200 | 1200 | |
| 1201 | 1201 | } // End For Loop |
| 1202 | 1202 | |
@@ -1217,30 +1217,30 @@ discard block |
||
| 1217 | 1217 | * @param string $product_type '' or 'variation' |
| 1218 | 1218 | * @return WC_Product $wc_product_object |
| 1219 | 1219 | */ |
| 1220 | - public static function get_product_object ( $wc_product_id = 0, $product_type = '' ) { |
|
| 1220 | + public static function get_product_object($wc_product_id = 0, $product_type = '') { |
|
| 1221 | 1221 | |
| 1222 | 1222 | $wc_product_object = false; |
| 1223 | - if ( 0 < intval( $wc_product_id ) ) { |
|
| 1223 | + if (0 < intval($wc_product_id)) { |
|
| 1224 | 1224 | |
| 1225 | 1225 | // Get the product |
| 1226 | - if ( function_exists( 'wc_get_product' ) ) { |
|
| 1226 | + if (function_exists('wc_get_product')) { |
|
| 1227 | 1227 | |
| 1228 | - $wc_product_object = wc_get_product( $wc_product_id ); // Post WC 2.3 |
|
| 1228 | + $wc_product_object = wc_get_product($wc_product_id); // Post WC 2.3 |
|
| 1229 | 1229 | |
| 1230 | - } elseif ( function_exists( 'get_product' ) ) { |
|
| 1230 | + } elseif (function_exists('get_product')) { |
|
| 1231 | 1231 | |
| 1232 | - $wc_product_object = get_product( $wc_product_id ); // Post WC 2.0 |
|
| 1232 | + $wc_product_object = get_product($wc_product_id); // Post WC 2.0 |
|
| 1233 | 1233 | |
| 1234 | 1234 | } else { |
| 1235 | 1235 | |
| 1236 | 1236 | // Pre WC 2.0 |
| 1237 | - if ( 'variation' == $product_type || 'subscription_variation' == $product_type ) { |
|
| 1237 | + if ('variation' == $product_type || 'subscription_variation' == $product_type) { |
|
| 1238 | 1238 | |
| 1239 | - $wc_product_object = new WC_Product_Variation( $wc_product_id ); |
|
| 1239 | + $wc_product_object = new WC_Product_Variation($wc_product_id); |
|
| 1240 | 1240 | |
| 1241 | 1241 | } else { |
| 1242 | 1242 | |
| 1243 | - $wc_product_object = new WC_Product( $wc_product_id ); |
|
| 1243 | + $wc_product_object = new WC_Product($wc_product_id); |
|
| 1244 | 1244 | |
| 1245 | 1245 | } // End If Statement |
| 1246 | 1246 | |
@@ -1263,19 +1263,19 @@ discard block |
||
| 1263 | 1263 | * |
| 1264 | 1264 | * @return bool|int |
| 1265 | 1265 | */ |
| 1266 | - public static function course_update ( $course_id = 0, $order_user = array() ) { |
|
| 1266 | + public static function course_update($course_id = 0, $order_user = array()) { |
|
| 1267 | 1267 | |
| 1268 | 1268 | global $current_user; |
| 1269 | 1269 | |
| 1270 | - if ( ! isset( $current_user ) || !$current_user->ID > 0 ) return false; |
|
| 1270 | + if ( ! isset($current_user) || ! $current_user->ID > 0) return false; |
|
| 1271 | 1271 | |
| 1272 | 1272 | $data_update = false; |
| 1273 | 1273 | |
| 1274 | 1274 | // Get the product ID |
| 1275 | - $wc_post_id = get_post_meta( intval( $course_id ), '_course_woocommerce_product', true ); |
|
| 1275 | + $wc_post_id = get_post_meta(intval($course_id), '_course_woocommerce_product', true); |
|
| 1276 | 1276 | |
| 1277 | 1277 | // Check if in the admin |
| 1278 | - if ( is_admin() ) { |
|
| 1278 | + if (is_admin()) { |
|
| 1279 | 1279 | |
| 1280 | 1280 | $user_login = $order_user['user_login']; |
| 1281 | 1281 | $user_email = $order_user['user_email']; |
@@ -1292,28 +1292,28 @@ discard block |
||
| 1292 | 1292 | } // End If Statement |
| 1293 | 1293 | |
| 1294 | 1294 | // This doesn't appear to be purely WooCommerce related. Should it be in a separate function? |
| 1295 | - $course_prerequisite_id = (int) get_post_meta( $course_id, '_course_prerequisite', true ); |
|
| 1296 | - if( 0 < absint( $course_prerequisite_id ) ) { |
|
| 1295 | + $course_prerequisite_id = (int) get_post_meta($course_id, '_course_prerequisite', true); |
|
| 1296 | + if (0 < absint($course_prerequisite_id)) { |
|
| 1297 | 1297 | |
| 1298 | - $prereq_course_complete = Sensei_Utils::user_completed_course( $course_prerequisite_id, intval( $user_id ) ); |
|
| 1299 | - if ( ! $prereq_course_complete ) { |
|
| 1298 | + $prereq_course_complete = Sensei_Utils::user_completed_course($course_prerequisite_id, intval($user_id)); |
|
| 1299 | + if ( ! $prereq_course_complete) { |
|
| 1300 | 1300 | |
| 1301 | 1301 | // Remove all course user meta |
| 1302 | - return Sensei_Utils::sensei_remove_user_from_course( $course_id, $user_id ); |
|
| 1302 | + return Sensei_Utils::sensei_remove_user_from_course($course_id, $user_id); |
|
| 1303 | 1303 | |
| 1304 | 1304 | } |
| 1305 | 1305 | } |
| 1306 | 1306 | |
| 1307 | - $is_user_taking_course = Sensei_Utils::user_started_course( intval( $course_id ), intval( $user_id ) ); |
|
| 1307 | + $is_user_taking_course = Sensei_Utils::user_started_course(intval($course_id), intval($user_id)); |
|
| 1308 | 1308 | |
| 1309 | - if( ! $is_user_taking_course ) { |
|
| 1309 | + if ( ! $is_user_taking_course) { |
|
| 1310 | 1310 | |
| 1311 | - if ( Sensei_WC::is_woocommerce_active() && Sensei_WC::has_customer_bought_product( $user_id, $wc_post_id ) && ( 0 < $wc_post_id ) ) { |
|
| 1311 | + if (Sensei_WC::is_woocommerce_active() && Sensei_WC::has_customer_bought_product($user_id, $wc_post_id) && (0 < $wc_post_id)) { |
|
| 1312 | 1312 | |
| 1313 | - $activity_logged = Sensei_Utils::user_start_course( intval( $user_id), intval( $course_id ) ); |
|
| 1313 | + $activity_logged = Sensei_Utils::user_start_course(intval($user_id), intval($course_id)); |
|
| 1314 | 1314 | |
| 1315 | 1315 | $is_user_taking_course = false; |
| 1316 | - if ( true == $activity_logged ) { |
|
| 1316 | + if (true == $activity_logged) { |
|
| 1317 | 1317 | |
| 1318 | 1318 | $is_user_taking_course = true; |
| 1319 | 1319 | |
@@ -1336,14 +1336,14 @@ discard block |
||
| 1336 | 1336 | * |
| 1337 | 1337 | * @return boolean Modified guest checkout setting |
| 1338 | 1338 | */ |
| 1339 | - public static function disable_guest_checkout( $guest_checkout ) { |
|
| 1339 | + public static function disable_guest_checkout($guest_checkout) { |
|
| 1340 | 1340 | |
| 1341 | - if( ! is_admin() || ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) { |
|
| 1341 | + if ( ! is_admin() || (defined('DOING_AJAX') && DOING_AJAX)) { |
|
| 1342 | 1342 | |
| 1343 | - if( isset( WC()->cart->cart_contents ) && count( WC()->cart->cart_contents ) > 0 ) { |
|
| 1343 | + if (isset(WC()->cart->cart_contents) && count(WC()->cart->cart_contents) > 0) { |
|
| 1344 | 1344 | |
| 1345 | - foreach( WC()->cart->cart_contents as $cart_key => $product ) { |
|
| 1346 | - if( isset( $product['product_id'] ) ) { |
|
| 1345 | + foreach (WC()->cart->cart_contents as $cart_key => $product) { |
|
| 1346 | + if (isset($product['product_id'])) { |
|
| 1347 | 1347 | |
| 1348 | 1348 | $args = array( |
| 1349 | 1349 | 'posts_per_page' => -1, |
@@ -1356,11 +1356,11 @@ discard block |
||
| 1356 | 1356 | ) |
| 1357 | 1357 | ); |
| 1358 | 1358 | |
| 1359 | - $posts = get_posts( $args ); |
|
| 1359 | + $posts = get_posts($args); |
|
| 1360 | 1360 | |
| 1361 | - if( $posts && count( $posts ) > 0 ) { |
|
| 1361 | + if ($posts && count($posts) > 0) { |
|
| 1362 | 1362 | |
| 1363 | - foreach( $posts as $course ) { |
|
| 1363 | + foreach ($posts as $course) { |
|
| 1364 | 1364 | $guest_checkout = ''; |
| 1365 | 1365 | break; |
| 1366 | 1366 | |
@@ -1389,23 +1389,23 @@ discard block |
||
| 1389 | 1389 | * |
| 1390 | 1390 | * @return string |
| 1391 | 1391 | **/ |
| 1392 | - public static function virtual_order_payment_complete( $order_status, $order_id ) { |
|
| 1392 | + public static function virtual_order_payment_complete($order_status, $order_id) { |
|
| 1393 | 1393 | |
| 1394 | - $order = new WC_Order( $order_id ); |
|
| 1394 | + $order = new WC_Order($order_id); |
|
| 1395 | 1395 | |
| 1396 | - if ( ! isset ( $order ) ) return ''; |
|
| 1396 | + if ( ! isset ($order)) return ''; |
|
| 1397 | 1397 | |
| 1398 | - if ( $order_status == 'wc-processing' && ( $order->post_status == 'wc-on-hold' || $order->post_status == 'wc-pending' || $order->post_status == 'wc-failed' ) ) { |
|
| 1398 | + if ($order_status == 'wc-processing' && ($order->post_status == 'wc-on-hold' || $order->post_status == 'wc-pending' || $order->post_status == 'wc-failed')) { |
|
| 1399 | 1399 | |
| 1400 | 1400 | $virtual_order = true; |
| 1401 | 1401 | |
| 1402 | - if ( count( $order->get_items() ) > 0 ) { |
|
| 1402 | + if (count($order->get_items()) > 0) { |
|
| 1403 | 1403 | |
| 1404 | - foreach( $order->get_items() as $item ) { |
|
| 1404 | + foreach ($order->get_items() as $item) { |
|
| 1405 | 1405 | |
| 1406 | - if ( $item['product_id'] > 0 ) { |
|
| 1407 | - $_product = $order->get_product_from_item( $item ); |
|
| 1408 | - if ( ! $_product->is_virtual() ) { |
|
| 1406 | + if ($item['product_id'] > 0) { |
|
| 1407 | + $_product = $order->get_product_from_item($item); |
|
| 1408 | + if ( ! $_product->is_virtual()) { |
|
| 1409 | 1409 | |
| 1410 | 1410 | $virtual_order = false; |
| 1411 | 1411 | break; |
@@ -1419,7 +1419,7 @@ discard block |
||
| 1419 | 1419 | } // End If Statement |
| 1420 | 1420 | |
| 1421 | 1421 | // virtual order, mark as completed |
| 1422 | - if ( $virtual_order ) { |
|
| 1422 | + if ($virtual_order) { |
|
| 1423 | 1423 | |
| 1424 | 1424 | return 'completed'; |
| 1425 | 1425 | |
@@ -1442,14 +1442,14 @@ discard block |
||
| 1442 | 1442 | * @param integer $user_id |
| 1443 | 1443 | * @return boolean $user_access_permission |
| 1444 | 1444 | */ |
| 1445 | - public static function get_subscription_permission( $user_access_permission, $user_id ){ |
|
| 1445 | + public static function get_subscription_permission($user_access_permission, $user_id) { |
|
| 1446 | 1446 | |
| 1447 | 1447 | global $post; |
| 1448 | 1448 | |
| 1449 | 1449 | // ignore the current case if the following conditions are met |
| 1450 | - if ( ! class_exists( 'WC_Subscriptions' ) || empty( $user_id ) |
|
| 1451 | - || ! in_array( $post->post_type, array( 'course','lesson','quiz' ) ) |
|
| 1452 | - || ! wcs_user_has_subscription( $user_id) ){ |
|
| 1450 | + if ( ! class_exists('WC_Subscriptions') || empty($user_id) |
|
| 1451 | + || ! in_array($post->post_type, array('course', 'lesson', 'quiz')) |
|
| 1452 | + || ! wcs_user_has_subscription($user_id)) { |
|
| 1453 | 1453 | |
| 1454 | 1454 | return $user_access_permission; |
| 1455 | 1455 | |
@@ -1459,25 +1459,25 @@ discard block |
||
| 1459 | 1459 | // is the subscription on the the current course? |
| 1460 | 1460 | |
| 1461 | 1461 | $course_id = 0; |
| 1462 | - if ( 'course' == $post->post_type ){ |
|
| 1462 | + if ('course' == $post->post_type) { |
|
| 1463 | 1463 | |
| 1464 | 1464 | $course_id = $post->ID; |
| 1465 | 1465 | |
| 1466 | - } elseif ( 'lesson' == $post->post_type ) { |
|
| 1466 | + } elseif ('lesson' == $post->post_type) { |
|
| 1467 | 1467 | |
| 1468 | - $course_id = Sensei()->lesson->get_course_id( $post->ID ); |
|
| 1468 | + $course_id = Sensei()->lesson->get_course_id($post->ID); |
|
| 1469 | 1469 | |
| 1470 | 1470 | } else { |
| 1471 | 1471 | |
| 1472 | - $lesson_id = Sensei()->quiz->get_lesson_id( $post->ID ); |
|
| 1473 | - $course_id = Sensei()->lesson->get_course_id( $lesson_id ); |
|
| 1472 | + $lesson_id = Sensei()->quiz->get_lesson_id($post->ID); |
|
| 1473 | + $course_id = Sensei()->lesson->get_course_id($lesson_id); |
|
| 1474 | 1474 | |
| 1475 | 1475 | } |
| 1476 | 1476 | |
| 1477 | 1477 | // if the course has no subscription WooCommerce product attached to return the permissions as is |
| 1478 | - $product_id = Sensei_WC::get_course_product_id( $course_id ); |
|
| 1479 | - $product = wc_get_product( $product_id ); |
|
| 1480 | - if( ! in_array( $product->get_type(), self::get_subscription_types() ) ){ |
|
| 1478 | + $product_id = Sensei_WC::get_course_product_id($course_id); |
|
| 1479 | + $product = wc_get_product($product_id); |
|
| 1480 | + if ( ! in_array($product->get_type(), self::get_subscription_types())) { |
|
| 1481 | 1481 | |
| 1482 | 1482 | return $user_access_permission; |
| 1483 | 1483 | |
@@ -1485,19 +1485,19 @@ discard block |
||
| 1485 | 1485 | |
| 1486 | 1486 | // give access if user has active subscription on the product otherwise restrict it. |
| 1487 | 1487 | // also check if the user was added to the course directly after the subscription started. |
| 1488 | - if( wcs_user_has_subscription( $user_id, $product_id, 'active' ) |
|
| 1489 | - || wcs_user_has_subscription( $user_id, $product_id, 'pending-cancel' ) |
|
| 1490 | - || self::was_user_added_without_subscription( $user_id, $product_id, $course_id ) ){ |
|
| 1488 | + if (wcs_user_has_subscription($user_id, $product_id, 'active') |
|
| 1489 | + || wcs_user_has_subscription($user_id, $product_id, 'pending-cancel') |
|
| 1490 | + || self::was_user_added_without_subscription($user_id, $product_id, $course_id)) { |
|
| 1491 | 1491 | |
| 1492 | 1492 | $user_access_permission = true; |
| 1493 | 1493 | |
| 1494 | - }else{ |
|
| 1494 | + } else { |
|
| 1495 | 1495 | |
| 1496 | 1496 | $user_access_permission = false; |
| 1497 | 1497 | // do not show the WC permissions message |
| 1498 | - remove_filter( 'sensei_the_no_permissions_message', array( 'Sensei_WC', 'alter_no_permissions_message' ), 20, 2 ); |
|
| 1499 | - Sensei()->permissions_message['title'] = __( 'No active subscription', 'woothemes-sensei' ); |
|
| 1500 | - Sensei()->permissions_message['message'] = __( 'Sorry, you do not have an access to this content without an active subscription.', 'woothemes-sensei' ); |
|
| 1498 | + remove_filter('sensei_the_no_permissions_message', array('Sensei_WC', 'alter_no_permissions_message'), 20, 2); |
|
| 1499 | + Sensei()->permissions_message['title'] = __('No active subscription', 'woothemes-sensei'); |
|
| 1500 | + Sensei()->permissions_message['message'] = __('Sorry, you do not have an access to this content without an active subscription.', 'woothemes-sensei'); |
|
| 1501 | 1501 | } |
| 1502 | 1502 | |
| 1503 | 1503 | return $user_access_permission; |
@@ -1510,9 +1510,9 @@ discard block |
||
| 1510 | 1510 | * @since 1.9.0 |
| 1511 | 1511 | * @return array |
| 1512 | 1512 | */ |
| 1513 | - public static function get_subscription_types(){ |
|
| 1513 | + public static function get_subscription_types() { |
|
| 1514 | 1514 | |
| 1515 | - return array( 'subscription','subscription_variation','variable-subscription' ); |
|
| 1515 | + return array('subscription', 'subscription_variation', 'variable-subscription'); |
|
| 1516 | 1516 | |
| 1517 | 1517 | } |
| 1518 | 1518 | |
@@ -1532,15 +1532,15 @@ discard block |
||
| 1532 | 1532 | * |
| 1533 | 1533 | * @return bool |
| 1534 | 1534 | */ |
| 1535 | - public static function was_user_added_without_subscription($user_id, $product_id, $course_id ){ |
|
| 1535 | + public static function was_user_added_without_subscription($user_id, $product_id, $course_id) { |
|
| 1536 | 1536 | |
| 1537 | 1537 | $course_start_date = ''; |
| 1538 | 1538 | $subscription_start_date = ''; |
| 1539 | - $is_a_subscription =''; |
|
| 1539 | + $is_a_subscription = ''; |
|
| 1540 | 1540 | $was_user_added_without_subscription = true; |
| 1541 | 1541 | |
| 1542 | 1542 | // if user is not on the course they were not added |
| 1543 | - if( ! Sensei_Utils::user_started_course( $course_id, $user_id ) ){ |
|
| 1543 | + if ( ! Sensei_Utils::user_started_course($course_id, $user_id)) { |
|
| 1544 | 1544 | |
| 1545 | 1545 | return false; |
| 1546 | 1546 | |
@@ -1549,34 +1549,34 @@ discard block |
||
| 1549 | 1549 | // if user doesn't have a subscription and is taking the course |
| 1550 | 1550 | // they were added manually |
| 1551 | 1551 | if ( ! wcs_user_has_subscription($user_id, $product_id) |
| 1552 | - && Sensei_Utils::user_started_course( $course_id, get_current_user_id() ) ){ |
|
| 1552 | + && Sensei_Utils::user_started_course($course_id, get_current_user_id())) { |
|
| 1553 | 1553 | |
| 1554 | 1554 | return true; |
| 1555 | 1555 | |
| 1556 | 1556 | } |
| 1557 | 1557 | |
| 1558 | - $course_status = Sensei_Utils::user_course_status( $course_id, $user_id ); |
|
| 1558 | + $course_status = Sensei_Utils::user_course_status($course_id, $user_id); |
|
| 1559 | 1559 | |
| 1560 | 1560 | // comparing dates setup data |
| 1561 | - $course_start_date = date_create( $course_status->comment_date ); |
|
| 1562 | - $subscriptions = wcs_get_users_subscriptions( $user_id ); |
|
| 1561 | + $course_start_date = date_create($course_status->comment_date); |
|
| 1562 | + $subscriptions = wcs_get_users_subscriptions($user_id); |
|
| 1563 | 1563 | |
| 1564 | 1564 | // comparing every subscription |
| 1565 | - foreach( $subscriptions as $subscription ){ |
|
| 1565 | + foreach ($subscriptions as $subscription) { |
|
| 1566 | 1566 | |
| 1567 | 1567 | // for the following statuses we know the user was not added |
| 1568 | 1568 | // manually |
| 1569 | 1569 | $status = $subscription->get_status(); |
| 1570 | - if ( in_array( $status, array( 'pending-canceled', 'active', 'on-hold', 'pending' ) ) ) { |
|
| 1570 | + if (in_array($status, array('pending-canceled', 'active', 'on-hold', 'pending'))) { |
|
| 1571 | 1571 | |
| 1572 | 1572 | continue; |
| 1573 | 1573 | |
| 1574 | 1574 | } |
| 1575 | 1575 | |
| 1576 | - $current_subscription_start_date = date_create( $subscription->modified_date ); |
|
| 1576 | + $current_subscription_start_date = date_create($subscription->modified_date); |
|
| 1577 | 1577 | |
| 1578 | 1578 | // is the last updated subscription date newer than course start date |
| 1579 | - if ( $current_subscription_start_date > $course_start_date ) { |
|
| 1579 | + if ($current_subscription_start_date > $course_start_date) { |
|
| 1580 | 1580 | |
| 1581 | 1581 | return false; |
| 1582 | 1582 | |