Completed
Push — master ( d51ce1...80c0ca )
by Dwain
05:52
created
includes/class-sensei-grading.php 2 patches
Indentation   +326 added lines, -326 removed lines patch added patch discarded remove patch
@@ -21,8 +21,8 @@  discard block
 block discarded – undo
21 21
 	/**
22 22
 	 * Constructor
23 23
 	 * @since  1.3.0
24
-     *
25
-     * @param $file
24
+	 *
25
+	 * @param $file
26 26
 	 */
27 27
 	public function __construct ( $file ) {
28 28
 		$this->name = __( 'Grading', 'woothemes-sensei' );
@@ -284,7 +284,7 @@  discard block
 block discarded – undo
284 284
 		}
285 285
 		if ( isset( $_GET['user_id'] ) && 0 < intval( $_GET['user_id'] ) ) {
286 286
 
287
-            $user_name = Sensei_Student::get_full_name( $_GET['user_id'] );
287
+			$user_name = Sensei_Student::get_full_name( $_GET['user_id'] );
288 288
 			$title .= '&nbsp;&nbsp;<span class="user-title">&gt;&nbsp;&nbsp;' . $user_name . '</span>';
289 289
 
290 290
 		} // End If Statement
@@ -318,7 +318,7 @@  discard block
 block discarded – undo
318 318
 		}
319 319
 		if ( isset( $_GET['user'] ) && 0 < intval( $_GET['user'] ) ) {
320 320
 
321
-            $user_name = Sensei_Student::get_full_name( $_GET['user'] );
321
+			$user_name = Sensei_Student::get_full_name( $_GET['user'] );
322 322
 			$title .= '&nbsp;&nbsp;<span class="user-title">&gt;&nbsp;&nbsp;' . $user_name . '</span>';
323 323
 
324 324
 		} // End If Statement
@@ -367,15 +367,15 @@  discard block
 block discarded – undo
367 367
 	public function count_statuses( $args = array() ) {
368 368
 		global  $wpdb;
369 369
 
370
-        /**
371
-         * Filter fires inside Sensei_Grading::count_statuses
372
-         *
373
-         * Alter the the post_in array to determine which posts the
374
-         * comment query should be limited to.
375
-         * @since 1.8.0
376
-         * @param array $args
377
-         */
378
-        $args = apply_filters( 'sensei_count_statuses_args', $args );
370
+		/**
371
+		 * Filter fires inside Sensei_Grading::count_statuses
372
+		 *
373
+		 * Alter the the post_in array to determine which posts the
374
+		 * comment query should be limited to.
375
+		 * @since 1.8.0
376
+		 * @param array $args
377
+		 */
378
+		$args = apply_filters( 'sensei_count_statuses_args', $args );
379 379
 
380 380
 		if ( 'course' == $args['type'] ) {
381 381
 			$type = 'sensei_course_status';
@@ -387,7 +387,7 @@  discard block
 block discarded – undo
387 387
 
388 388
 		$query = "SELECT comment_approved, COUNT( * ) AS total FROM {$wpdb->comments} WHERE comment_type = %s ";
389 389
 
390
-        // Restrict to specific posts
390
+		// Restrict to specific posts
391 391
 		if ( isset( $args['post__in'] ) && !empty( $args['post__in'] ) && is_array( $args['post__in'] ) ) {
392 392
 			$query .= ' AND comment_post_ID IN (' . implode( ',', array_map( 'absint', $args['post__in'] ) ) . ')';
393 393
 		}
@@ -522,148 +522,148 @@  discard block
 block discarded – undo
522 522
 		return $html;
523 523
 	} // End lessons_drop_down_html()
524 524
 
525
-    /**
526
-     * The process grading function handles admin grading submissions.
527
-     *
528
-     * This function is hooked on to admin_init. It simply accepts
529
-     * the grades as the Grader selected theme and saves the total grade and
530
-     * individual question grades.
531
-     *
532
-     * @return bool
533
-     */
534
-    public function admin_process_grading_submission() {
525
+	/**
526
+	 * The process grading function handles admin grading submissions.
527
+	 *
528
+	 * This function is hooked on to admin_init. It simply accepts
529
+	 * the grades as the Grader selected theme and saves the total grade and
530
+	 * individual question grades.
531
+	 *
532
+	 * @return bool
533
+	 */
534
+	public function admin_process_grading_submission() {
535 535
 
536
-        // NEEDS REFACTOR/OPTIMISING, such as combining the various meta data stored against the sensei_user_answer entry
537
-        if( ! isset( $_POST['sensei_manual_grade'] )
538
-            || ! wp_verify_nonce( $_POST['_wp_sensei_manual_grading_nonce'], 'sensei_manual_grading' )
539
-            || ! isset( $_GET['quiz_id'] )
540
-            || $_GET['quiz_id'] != $_POST['sensei_manual_grade'] ) {
536
+		// NEEDS REFACTOR/OPTIMISING, such as combining the various meta data stored against the sensei_user_answer entry
537
+		if( ! isset( $_POST['sensei_manual_grade'] )
538
+			|| ! wp_verify_nonce( $_POST['_wp_sensei_manual_grading_nonce'], 'sensei_manual_grading' )
539
+			|| ! isset( $_GET['quiz_id'] )
540
+			|| $_GET['quiz_id'] != $_POST['sensei_manual_grade'] ) {
541 541
 
542
-            return false; //exit and do not grade
542
+			return false; //exit and do not grade
543 543
 
544
-        }
544
+		}
545 545
 
546
-        $quiz_id = $_GET['quiz_id'];
547
-        $user_id = $_GET['user'];
546
+		$quiz_id = $_GET['quiz_id'];
547
+		$user_id = $_GET['user'];
548 548
 
549 549
 
550
-        $questions = Sensei_Utils::sensei_get_quiz_questions( $quiz_id );
551
-        $quiz_lesson_id =  Sensei()->quiz->get_lesson_id( $quiz_id );
552
-        $quiz_grade = 0;
553
-        $count = 0;
554
-        $quiz_grade_total = $_POST['quiz_grade_total'];
555
-        $all_question_grades = array();
556
-        $all_answers_feedback = array();
550
+		$questions = Sensei_Utils::sensei_get_quiz_questions( $quiz_id );
551
+		$quiz_lesson_id =  Sensei()->quiz->get_lesson_id( $quiz_id );
552
+		$quiz_grade = 0;
553
+		$count = 0;
554
+		$quiz_grade_total = $_POST['quiz_grade_total'];
555
+		$all_question_grades = array();
556
+		$all_answers_feedback = array();
557 557
 
558
-        foreach( $questions as $question ) {
558
+		foreach( $questions as $question ) {
559 559
 
560
-            ++$count;
561
-            $question_id = $question->ID;
560
+			++$count;
561
+			$question_id = $question->ID;
562 562
 
563
-            if( isset( $_POST[ 'question_' . $question_id ] ) ) {
563
+			if( isset( $_POST[ 'question_' . $question_id ] ) ) {
564 564
 
565
-                $question_grade = 0;
566
-                if( $_POST[ 'question_' . $question_id ] == 'right' ) {
565
+				$question_grade = 0;
566
+				if( $_POST[ 'question_' . $question_id ] == 'right' ) {
567 567
 
568
-                    $question_grade = $_POST[ 'question_' . $question_id . '_grade' ];
568
+					$question_grade = $_POST[ 'question_' . $question_id . '_grade' ];
569 569
 
570
-                }
570
+				}
571 571
 
572
-                // add data to the array that will, after the loop, be stored on the lesson status
573
-                $all_question_grades[ $question_id ] = $question_grade;
572
+				// add data to the array that will, after the loop, be stored on the lesson status
573
+				$all_question_grades[ $question_id ] = $question_grade;
574 574
 
575
-                // tally up the total quiz grade
576
-                $quiz_grade += $question_grade;
575
+				// tally up the total quiz grade
576
+				$quiz_grade += $question_grade;
577 577
 
578
-            } // endif
578
+			} // endif
579 579
 
580
-            // Question answer feedback / notes
581
-            $question_feedback = '';
582
-            if( isset( $_POST[ 'questions_feedback' ][ $question_id ] ) ){
580
+			// Question answer feedback / notes
581
+			$question_feedback = '';
582
+			if( isset( $_POST[ 'questions_feedback' ][ $question_id ] ) ){
583 583
 
584
-                $question_feedback = wp_unslash( $_POST[ 'questions_feedback' ][ $question_id ] );
584
+				$question_feedback = wp_unslash( $_POST[ 'questions_feedback' ][ $question_id ] );
585 585
 
586
-            }
587
-            $all_answers_feedback[ $question_id ] = $question_feedback;
586
+			}
587
+			$all_answers_feedback[ $question_id ] = $question_feedback;
588 588
 
589
-        } // end for each $questions
589
+		} // end for each $questions
590 590
 
591
-        //store all question grades on the lesson status
592
-        Sensei()->quiz->set_user_grades( $all_question_grades, $quiz_lesson_id , $user_id );
591
+		//store all question grades on the lesson status
592
+		Sensei()->quiz->set_user_grades( $all_question_grades, $quiz_lesson_id , $user_id );
593 593
 
594
-        //store the feedback from grading
595
-        Sensei()->quiz->save_user_answers_feedback( $all_answers_feedback, $quiz_lesson_id , $user_id );
594
+		//store the feedback from grading
595
+		Sensei()->quiz->save_user_answers_feedback( $all_answers_feedback, $quiz_lesson_id , $user_id );
596 596
 
597
-        // $_POST['all_questions_graded'] is set when all questions have been graded
598
-        // in the class sensei grading user quiz -> display()
599
-        if( $_POST['all_questions_graded'] == 'yes' ) {
597
+		// $_POST['all_questions_graded'] is set when all questions have been graded
598
+		// in the class sensei grading user quiz -> display()
599
+		if( $_POST['all_questions_graded'] == 'yes' ) {
600 600
 
601
-            // set the users total quiz grade
601
+			// set the users total quiz grade
602 602
 			if ( 0 < intval( $quiz_grade_total ) ) {
603
-            $grade = abs( round( ( doubleval( $quiz_grade ) * 100 ) / ( $quiz_grade_total ), 2 ) );
603
+			$grade = abs( round( ( doubleval( $quiz_grade ) * 100 ) / ( $quiz_grade_total ), 2 ) );
604 604
 			}
605 605
 			else {
606 606
 				$grade = 0;
607 607
 			}
608
-            Sensei_Utils::sensei_grade_quiz( $quiz_id, $grade, $user_id );
609
-
610
-            // Duplicating what Frontend->sensei_complete_quiz() does
611
-            $pass_required = get_post_meta( $quiz_id, '_pass_required', true );
612
-            $quiz_passmark = abs( round( doubleval( get_post_meta( $quiz_id, '_quiz_passmark', true ) ), 2 ) );
613
-            $lesson_metadata = array();
614
-            if ( $pass_required ) {
615
-                // Student has reached the pass mark and lesson is complete
616
-                if ( $quiz_passmark <= $grade ) {
617
-                    $lesson_status = 'passed';
618
-                }
619
-                else {
620
-                    $lesson_status = 'failed';
621
-                } // End If Statement
622
-            }
623
-            // Student only has to partake the quiz
624
-            else {
625
-                $lesson_status = 'graded';
626
-            }
627
-            $lesson_metadata['grade'] = $grade; // Technically already set as part of "WooThemes_Sensei_Utils::sensei_grade_quiz()" above
608
+			Sensei_Utils::sensei_grade_quiz( $quiz_id, $grade, $user_id );
609
+
610
+			// Duplicating what Frontend->sensei_complete_quiz() does
611
+			$pass_required = get_post_meta( $quiz_id, '_pass_required', true );
612
+			$quiz_passmark = abs( round( doubleval( get_post_meta( $quiz_id, '_quiz_passmark', true ) ), 2 ) );
613
+			$lesson_metadata = array();
614
+			if ( $pass_required ) {
615
+				// Student has reached the pass mark and lesson is complete
616
+				if ( $quiz_passmark <= $grade ) {
617
+					$lesson_status = 'passed';
618
+				}
619
+				else {
620
+					$lesson_status = 'failed';
621
+				} // End If Statement
622
+			}
623
+			// Student only has to partake the quiz
624
+			else {
625
+				$lesson_status = 'graded';
626
+			}
627
+			$lesson_metadata['grade'] = $grade; // Technically already set as part of "WooThemes_Sensei_Utils::sensei_grade_quiz()" above
628 628
 
629
-            Sensei_Utils::update_lesson_status( $user_id, $quiz_lesson_id, $lesson_status, $lesson_metadata );
629
+			Sensei_Utils::update_lesson_status( $user_id, $quiz_lesson_id, $lesson_status, $lesson_metadata );
630 630
 
631
-            if(  in_array( $lesson_status, array( 'passed', 'graded'  ) ) ) {
631
+			if(  in_array( $lesson_status, array( 'passed', 'graded'  ) ) ) {
632 632
 
633
-                /**
634
-                 * Summary.
635
-                 *
636
-                 * Description.
637
-                 *
638
-                 * @since 1.7.0
639
-                 *
640
-                 * @param int  $user_id
641
-                 * @param int $quiz_lesson_id
642
-                 */
643
-                do_action( 'sensei_user_lesson_end', $user_id, $quiz_lesson_id );
633
+				/**
634
+				 * Summary.
635
+				 *
636
+				 * Description.
637
+				 *
638
+				 * @since 1.7.0
639
+				 *
640
+				 * @param int  $user_id
641
+				 * @param int $quiz_lesson_id
642
+				 */
643
+				do_action( 'sensei_user_lesson_end', $user_id, $quiz_lesson_id );
644 644
 
645
-            } // end if in_array
645
+			} // end if in_array
646 646
 
647
-        }// end if $_POST['all_que...
647
+		}// end if $_POST['all_que...
648 648
 
649
-        if( isset( $_POST['sensei_grade_next_learner'] ) && strlen( $_POST['sensei_grade_next_learner'] ) > 0 ) {
649
+		if( isset( $_POST['sensei_grade_next_learner'] ) && strlen( $_POST['sensei_grade_next_learner'] ) > 0 ) {
650 650
 
651
-            $load_url = add_query_arg( array( 'message' => 'graded' ) );
651
+			$load_url = add_query_arg( array( 'message' => 'graded' ) );
652 652
 
653
-        } elseif ( isset( $_POST['_wp_http_referer'] ) ) {
653
+		} elseif ( isset( $_POST['_wp_http_referer'] ) ) {
654 654
 
655
-            $load_url = add_query_arg( array( 'message' => 'graded' ), $_POST['_wp_http_referer'] );
655
+			$load_url = add_query_arg( array( 'message' => 'graded' ), $_POST['_wp_http_referer'] );
656 656
 
657
-        } else {
657
+		} else {
658 658
 
659
-            $load_url = add_query_arg( array( 'message' => 'graded' ) );
659
+			$load_url = add_query_arg( array( 'message' => 'graded' ) );
660 660
 
661
-        }
661
+		}
662 662
 
663
-        wp_safe_redirect( esc_url_raw( $load_url ) );
664
-        exit;
663
+		wp_safe_redirect( esc_url_raw( $load_url ) );
664
+		exit;
665 665
 
666
-    } // end admin_process_grading_submission
666
+	} // end admin_process_grading_submission
667 667
 
668 668
 	public function get_redirect_url() {
669 669
 		// Parse POST data
@@ -708,283 +708,283 @@  discard block
 block discarded – undo
708 708
 		} // End If Statement
709 709
 	} // End sensei_grading_notices()
710 710
 
711
-    /**
712
-     * Grade quiz automatically
713
-     *
714
-     * This function grades each question automatically if there all questions are auto gradable. If not
715
-     * the quiz will not be auto gradable.
716
-     *
717
-     * @since 1.7.4
718
-     *
719
-     * @param  integer $quiz_id         ID of quiz
720
-     * @param  array $submitted questions id ans answers {
721
-     *          @type int $question_id
722
-     *          @type mixed $answer
723
-     * }
724
-     * @param  integer $total_questions Total questions in quiz (not used)
725
-     * @param string $quiz_grade_type Optional defaults to auto
726
-     *
727
-     * @return int $quiz_grade total sum of all question grades
728
-     */
729
-    public static function grade_quiz_auto( $quiz_id = 0, $submitted = array(), $total_questions = 0, $quiz_grade_type = 'auto' ) {
730
-
731
-        if( ! ( intval( $quiz_id ) > 0 )  || ! $submitted
732
-            || $quiz_grade_type != 'auto' ) {
733
-            return false; // exit early
734
-        }
735
-
736
-
737
-        $user_id = get_current_user_id();
738
-        $lesson_id =  Sensei()->quiz->get_lesson_id(  $quiz_id ) ;
739
-        $quiz_autogradable = true;
740
-
741
-        /**
742
-         * Filter the types of question types that can be automatically graded.
743
-         *
744
-         * This filter fires inside the auto grade quiz function and provides you with the default list.
745
-         *
746
-         * @param array {
747
-         *      'multiple-choice',
748
-         *      'boolean',
749
-         *      'gap-fill'.
750
-         * }
751
-         */
752
-        $autogradable_question_types = apply_filters( 'sensei_autogradable_question_types', array( 'multiple-choice', 'boolean', 'gap-fill' ) );
753
-
754
-        $grade_total = 0;
755
-        $all_question_grades = array();
756
-        foreach( $submitted as $question_id => $answer ) {
757
-
758
-            // check if the question is autogradable, either by type, or because the grade is 0
759
-            $question_type = Sensei()->question->get_question_type( $question_id );
711
+	/**
712
+	 * Grade quiz automatically
713
+	 *
714
+	 * This function grades each question automatically if there all questions are auto gradable. If not
715
+	 * the quiz will not be auto gradable.
716
+	 *
717
+	 * @since 1.7.4
718
+	 *
719
+	 * @param  integer $quiz_id         ID of quiz
720
+	 * @param  array $submitted questions id ans answers {
721
+	 *          @type int $question_id
722
+	 *          @type mixed $answer
723
+	 * }
724
+	 * @param  integer $total_questions Total questions in quiz (not used)
725
+	 * @param string $quiz_grade_type Optional defaults to auto
726
+	 *
727
+	 * @return int $quiz_grade total sum of all question grades
728
+	 */
729
+	public static function grade_quiz_auto( $quiz_id = 0, $submitted = array(), $total_questions = 0, $quiz_grade_type = 'auto' ) {
730
+
731
+		if( ! ( intval( $quiz_id ) > 0 )  || ! $submitted
732
+			|| $quiz_grade_type != 'auto' ) {
733
+			return false; // exit early
734
+		}
735
+
736
+
737
+		$user_id = get_current_user_id();
738
+		$lesson_id =  Sensei()->quiz->get_lesson_id(  $quiz_id ) ;
739
+		$quiz_autogradable = true;
740
+
741
+		/**
742
+		 * Filter the types of question types that can be automatically graded.
743
+		 *
744
+		 * This filter fires inside the auto grade quiz function and provides you with the default list.
745
+		 *
746
+		 * @param array {
747
+		 *      'multiple-choice',
748
+		 *      'boolean',
749
+		 *      'gap-fill'.
750
+		 * }
751
+		 */
752
+		$autogradable_question_types = apply_filters( 'sensei_autogradable_question_types', array( 'multiple-choice', 'boolean', 'gap-fill' ) );
753
+
754
+		$grade_total = 0;
755
+		$all_question_grades = array();
756
+		foreach( $submitted as $question_id => $answer ) {
757
+
758
+			// check if the question is autogradable, either by type, or because the grade is 0
759
+			$question_type = Sensei()->question->get_question_type( $question_id );
760 760
 			$achievable_grade = Sensei()->question->get_question_grade( $question_id );
761 761
 			// Question has a zero grade, so skip grading
762 762
 			if ( 0 == $achievable_grade ) {
763 763
 				$all_question_grades[ $question_id ] = $achievable_grade;
764 764
 			}
765
-            elseif ( in_array( $question_type, $autogradable_question_types ) ) {
766
-                // Get user question grade
767
-                $question_grade = Sensei_Utils::sensei_grade_question_auto( $question_id, $question_type, $answer, $user_id );
768
-                $all_question_grades[ $question_id ] = $question_grade;
769
-                $grade_total += $question_grade;
765
+			elseif ( in_array( $question_type, $autogradable_question_types ) ) {
766
+				// Get user question grade
767
+				$question_grade = Sensei_Utils::sensei_grade_question_auto( $question_id, $question_type, $answer, $user_id );
768
+				$all_question_grades[ $question_id ] = $question_grade;
769
+				$grade_total += $question_grade;
770 770
 
771
-            } else {
771
+			} else {
772 772
 
773
-                // There is a question that cannot be autograded
774
-                $quiz_autogradable = false;
773
+				// There is a question that cannot be autograded
774
+				$quiz_autogradable = false;
775 775
 
776
-            } // end if in_array( $question_type...
776
+			} // end if in_array( $question_type...
777 777
 
778
-        }// end for each question
778
+		}// end for each question
779 779
 
780
-        // Only if the whole quiz was autogradable do we set a grade
781
-        if ( $quiz_autogradable ) {
780
+		// Only if the whole quiz was autogradable do we set a grade
781
+		if ( $quiz_autogradable ) {
782 782
 
783
-            $quiz_total = Sensei_Utils::sensei_get_quiz_total( $quiz_id );
783
+			$quiz_total = Sensei_Utils::sensei_get_quiz_total( $quiz_id );
784 784
 			// Check for zero total from grades
785 785
 			if ( 0 < $quiz_total ) {
786
-            $grade = abs( round( ( doubleval( $grade_total ) * 100 ) / ( $quiz_total ), 2 ) );
786
+			$grade = abs( round( ( doubleval( $grade_total ) * 100 ) / ( $quiz_total ), 2 ) );
787 787
 			}
788 788
 			else {
789 789
 				$grade = 0;
790 790
 			}
791
-            Sensei_Utils::sensei_grade_quiz( $quiz_id, $grade, $user_id, $quiz_grade_type );
791
+			Sensei_Utils::sensei_grade_quiz( $quiz_id, $grade, $user_id, $quiz_grade_type );
792 792
 
793
-        } else {
793
+		} else {
794 794
 
795
-            $grade = new WP_Error( 'autograde', __( 'This quiz is not able to be automatically graded.', 'woothemes-sensei' ) );
795
+			$grade = new WP_Error( 'autograde', __( 'This quiz is not able to be automatically graded.', 'woothemes-sensei' ) );
796 796
 
797
-        }
798
-
799
-        // store the auto gradable grades. If the quiz is not auto gradable the grades can be use as the default
800
-        // when doing manual grading.
801
-        Sensei()->quiz-> set_user_grades( $all_question_grades, $lesson_id, $user_id );
797
+		}
802 798
 
803
-        return $grade;
799
+		// store the auto gradable grades. If the quiz is not auto gradable the grades can be use as the default
800
+		// when doing manual grading.
801
+		Sensei()->quiz-> set_user_grades( $all_question_grades, $lesson_id, $user_id );
804 802
 
805
-    } // End grade_quiz_auto()
803
+		return $grade;
806 804
 
807
-    /**
808
-     * Grade question automatically
809
-     *
810
-     * This function checks the question typ and then grades it accordingly.
811
-     *
812
-     * @since 1.7.4
813
-     *
814
-     * @param integer $question_id
815
-     * @param string $question_type of the standard Sensei question types
816
-     * @param string $answer
817
-     * @param int $user_id
818
-     *
819
-     * @return int $question_grade
820
-     */
821
-    public static function grade_question_auto( $question_id = 0, $question_type = '', $answer = '', $user_id = 0 ) {
822
-
823
-        if( intval( $user_id ) == 0 ) {
824
-
825
-            $user_id = get_current_user_id();
826
-
827
-        }
828
-
829
-        if( ! ( intval( $question_id ) > 0 ) ) {
830
-
831
-            return false;
832
-
833
-        }
834
-
835
-
836
-        Sensei()->question->get_question_type( $question_id );
837
-
838
-        /**
839
-         * Applying a grade before the auto grading takes place.
840
-         *
841
-         * This filter is applied just before the question is auto graded. It fires in the context of a single question
842
-         * in the sensei_grade_question_auto function. It fires irrespective of the question type. If you return a value
843
-         * other than false the auto grade functionality will be ignored and your supplied grade will be user for this question.
844
-         *
845
-         * @param int $question_grade default false
846
-         * @param int $question_id
847
-         * @param string $question_type one of the Sensei question type.
848
-         * @param string $answer user supplied question answer
849
-         */
850
-        $question_grade = apply_filters( 'sensei_pre_grade_question_auto', false, $question_id, $question_type, $answer );
805
+	} // End grade_quiz_auto()
851 806
 
852
-        if ( false !== $question_grade ) {
807
+	/**
808
+	 * Grade question automatically
809
+	 *
810
+	 * This function checks the question typ and then grades it accordingly.
811
+	 *
812
+	 * @since 1.7.4
813
+	 *
814
+	 * @param integer $question_id
815
+	 * @param string $question_type of the standard Sensei question types
816
+	 * @param string $answer
817
+	 * @param int $user_id
818
+	 *
819
+	 * @return int $question_grade
820
+	 */
821
+	public static function grade_question_auto( $question_id = 0, $question_type = '', $answer = '', $user_id = 0 ) {
822
+
823
+		if( intval( $user_id ) == 0 ) {
824
+
825
+			$user_id = get_current_user_id();
826
+
827
+		}
828
+
829
+		if( ! ( intval( $question_id ) > 0 ) ) {
830
+
831
+			return false;
832
+
833
+		}
834
+
835
+
836
+		Sensei()->question->get_question_type( $question_id );
837
+
838
+		/**
839
+		 * Applying a grade before the auto grading takes place.
840
+		 *
841
+		 * This filter is applied just before the question is auto graded. It fires in the context of a single question
842
+		 * in the sensei_grade_question_auto function. It fires irrespective of the question type. If you return a value
843
+		 * other than false the auto grade functionality will be ignored and your supplied grade will be user for this question.
844
+		 *
845
+		 * @param int $question_grade default false
846
+		 * @param int $question_id
847
+		 * @param string $question_type one of the Sensei question type.
848
+		 * @param string $answer user supplied question answer
849
+		 */
850
+		$question_grade = apply_filters( 'sensei_pre_grade_question_auto', false, $question_id, $question_type, $answer );
853 851
 
854
-            return $question_grade;
852
+		if ( false !== $question_grade ) {
855 853
 
856
-        }
854
+			return $question_grade;
857 855
 
858
-        // auto grading core
859
-        if( in_array( $question_type ,  array( 'multiple-choice'  , 'boolean'  ) )   ){
856
+		}
860 857
 
861
-            $right_answer = (array) get_post_meta( $question_id, '_question_right_answer', true );
858
+		// auto grading core
859
+		if( in_array( $question_type ,  array( 'multiple-choice'  , 'boolean'  ) )   ){
862 860
 
863
-            if( 0 == get_magic_quotes_gpc() ) {
864
-                $answer = wp_unslash( $answer );
865
-            }
866
-            $answer = (array) $answer;
867
-            if ( is_array( $right_answer ) && count( $right_answer ) == count( $answer ) ) {
868
-                // Loop through all answers ensure none are 'missing'
869
-                $all_correct = true;
870
-                foreach ( $answer as $check_answer ) {
871
-                    if ( !in_array( $check_answer, $right_answer ) ) {
872
-                        $all_correct = false;
873
-                    }
874
-                }
875
-                // If all correct then grade
876
-                if ( $all_correct ) {
877
-                    $question_grade = Sensei()->question->get_question_grade( $question_id );
878
-                }
879
-            }
861
+			$right_answer = (array) get_post_meta( $question_id, '_question_right_answer', true );
880 862
 
881
-        } elseif( 'gap-fill' == $question_type ){
863
+			if( 0 == get_magic_quotes_gpc() ) {
864
+				$answer = wp_unslash( $answer );
865
+			}
866
+			$answer = (array) $answer;
867
+			if ( is_array( $right_answer ) && count( $right_answer ) == count( $answer ) ) {
868
+				// Loop through all answers ensure none are 'missing'
869
+				$all_correct = true;
870
+				foreach ( $answer as $check_answer ) {
871
+					if ( !in_array( $check_answer, $right_answer ) ) {
872
+						$all_correct = false;
873
+					}
874
+				}
875
+				// If all correct then grade
876
+				if ( $all_correct ) {
877
+					$question_grade = Sensei()->question->get_question_grade( $question_id );
878
+				}
879
+			}
882 880
 
883
-            $question_grade = self::grade_gap_fill_question( $question_id ,$answer );
881
+		} elseif( 'gap-fill' == $question_type ){
884 882
 
885
-        } else{
883
+			$question_grade = self::grade_gap_fill_question( $question_id ,$answer );
886 884
 
887
-            /**
888
-             * Grading questions that are not auto gradable.
889
-             *
890
-             * This filter is applied the context of ta single question within the sensei_grade_question_auto function.
891
-             * It fires for all other questions types. It does not apply to 'multiple-choice'  , 'boolean' and gap-fill.
892
-             *
893
-             * @param int $question_grade default zero
894
-             * @param int $question_id
895
-             * @param string $question_type one of the Sensei question type.
896
-             * @param string $answer user supplied question answer
897
-             */
898
-            $question_grade = ( int ) apply_filters( 'sensei_grade_question_auto', $question_grade, $question_id, $question_type, $answer );
885
+		} else{
899 886
 
900
-        } // end if $question_type
887
+			/**
888
+			 * Grading questions that are not auto gradable.
889
+			 *
890
+			 * This filter is applied the context of ta single question within the sensei_grade_question_auto function.
891
+			 * It fires for all other questions types. It does not apply to 'multiple-choice'  , 'boolean' and gap-fill.
892
+			 *
893
+			 * @param int $question_grade default zero
894
+			 * @param int $question_id
895
+			 * @param string $question_type one of the Sensei question type.
896
+			 * @param string $answer user supplied question answer
897
+			 */
898
+			$question_grade = ( int ) apply_filters( 'sensei_grade_question_auto', $question_grade, $question_id, $question_type, $answer );
901 899
 
902
-        return $question_grade;
903
-    } // end grade_question_auto
900
+		} // end if $question_type
904 901
 
905
-    /**
906
-     * Grading logic specifically for the gap fill questions
907
-     *
908
-     * @since 1.9.0
909
-     * @param $question_id
910
-     * @param $user_answer
911
-     *
912
-     * @return bool | int false or the grade given to the user answer
913
-     */
914
-    public static function grade_gap_fill_question( $question_id, $user_answer ){
902
+		return $question_grade;
903
+	} // end grade_question_auto
915 904
 
916
-        $right_answer = get_post_meta( $question_id, '_question_right_answer', true );
917
-        $gapfill_array = explode( '||', $right_answer );
905
+	/**
906
+	 * Grading logic specifically for the gap fill questions
907
+	 *
908
+	 * @since 1.9.0
909
+	 * @param $question_id
910
+	 * @param $user_answer
911
+	 *
912
+	 * @return bool | int false or the grade given to the user answer
913
+	 */
914
+	public static function grade_gap_fill_question( $question_id, $user_answer ){
918 915
 
919
-        if( 0 == get_magic_quotes_gpc() ) { // deprecated from PHP 5.4 but we still support PHP 5.2
920
-            $user_answer = wp_unslash( $user_answer );
921
-        }
916
+		$right_answer = get_post_meta( $question_id, '_question_right_answer', true );
917
+		$gapfill_array = explode( '||', $right_answer );
922 918
 
923
-        /**
924
-         * case sensitive grading filter
925
-         *
926
-         * alter the value simply use this code in your plugin or the themes functions.php
927
-         * add_filter( 'sensei_gap_fill_case_sensitive_grading','__return_true' );
928
-         *
929
-         * @param bool $do_case_sensitive_comparison default false.
930
-         *
931
-         * @since 1.9.0
932
-         */
933
-        $do_case_sensitive_comparison = apply_filters('sensei_gap_fill_case_sensitive_grading', false );
919
+		if( 0 == get_magic_quotes_gpc() ) { // deprecated from PHP 5.4 but we still support PHP 5.2
920
+			$user_answer = wp_unslash( $user_answer );
921
+		}
922
+
923
+		/**
924
+		 * case sensitive grading filter
925
+		 *
926
+		 * alter the value simply use this code in your plugin or the themes functions.php
927
+		 * add_filter( 'sensei_gap_fill_case_sensitive_grading','__return_true' );
928
+		 *
929
+		 * @param bool $do_case_sensitive_comparison default false.
930
+		 *
931
+		 * @since 1.9.0
932
+		 */
933
+		$do_case_sensitive_comparison = apply_filters('sensei_gap_fill_case_sensitive_grading', false );
934 934
 
935
-        if( $do_case_sensitive_comparison ){
935
+		if( $do_case_sensitive_comparison ){
936 936
 
937
-            // Case Sensitive Check that the 'gap' is "exactly" equal to the given answer
938
-            if ( trim(($gapfill_array[1])) == trim( $user_answer ) ) {
937
+			// Case Sensitive Check that the 'gap' is "exactly" equal to the given answer
938
+			if ( trim(($gapfill_array[1])) == trim( $user_answer ) ) {
939 939
 
940
-                return Sensei()->question->get_question_grade( $question_id );
940
+				return Sensei()->question->get_question_grade( $question_id );
941 941
 
942
-            } else if (@preg_match('/' . $gapfill_array[1] . '/i', null) !== FALSE) {
942
+			} else if (@preg_match('/' . $gapfill_array[1] . '/i', null) !== FALSE) {
943 943
 
944
-                if (preg_match('/' . $gapfill_array[1] . '/i', $user_answer)) {
944
+				if (preg_match('/' . $gapfill_array[1] . '/i', $user_answer)) {
945 945
 
946
-                    return Sensei()->question->get_question_grade($question_id);
946
+					return Sensei()->question->get_question_grade($question_id);
947 947
 
948
-                }else{
948
+				}else{
949 949
 
950
-                    return false;
950
+					return false;
951 951
 
952
-                }
952
+				}
953 953
 
954
-            }else{
954
+			}else{
955 955
 
956
-                return false;
956
+				return false;
957 957
 
958
-            }
958
+			}
959 959
 
960
-        }else{
960
+		}else{
961 961
 
962
-            // Case Sensitive Check that the 'gap' is "exactly" equal to the given answer
963
-            if ( trim(strtolower($gapfill_array[1])) == trim(strtolower( $user_answer )) ) {
962
+			// Case Sensitive Check that the 'gap' is "exactly" equal to the given answer
963
+			if ( trim(strtolower($gapfill_array[1])) == trim(strtolower( $user_answer )) ) {
964 964
 
965
-               return Sensei()->question->get_question_grade( $question_id );
965
+			   return Sensei()->question->get_question_grade( $question_id );
966 966
 
967
-            } else if (@preg_match('/' . $gapfill_array[1] . '/i', null) !== FALSE) {
967
+			} else if (@preg_match('/' . $gapfill_array[1] . '/i', null) !== FALSE) {
968 968
 
969
-                if (preg_match('/' . $gapfill_array[1] . '/i', $user_answer)) {
969
+				if (preg_match('/' . $gapfill_array[1] . '/i', $user_answer)) {
970 970
 
971
-                    return  Sensei()->question->get_question_grade( $question_id );
971
+					return  Sensei()->question->get_question_grade( $question_id );
972 972
 
973
-                }else{
973
+				}else{
974 974
 
975
-                    return false;
975
+					return false;
976 976
 
977
-                }
977
+				}
978 978
 
979
-            }else{
979
+			}else{
980 980
 
981
-                return false;
981
+				return false;
982 982
 
983
-            }
983
+			}
984 984
 
985
-        }
985
+		}
986 986
 
987
-    }
987
+	}
988 988
 
989 989
 } // End Class
990 990
 
Please login to merge, or discard this patch.
Spacing   +242 added lines, -242 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
2
+if ( ! defined('ABSPATH')) exit; // Exit if accessed directly
3 3
 
4 4
 /**
5 5
  * Sensei Grading Class
@@ -24,30 +24,30 @@  discard block
 block discarded – undo
24 24
      *
25 25
      * @param $file
26 26
 	 */
27
-	public function __construct ( $file ) {
28
-		$this->name = __( 'Grading', 'woothemes-sensei' );
27
+	public function __construct($file) {
28
+		$this->name = __('Grading', 'woothemes-sensei');
29 29
 		$this->file = $file;
30 30
 		$this->page_slug = 'sensei_grading';
31 31
 
32 32
 		// Admin functions
33
-		if ( is_admin() ) {
34
-			add_action( 'admin_menu', array( $this, 'grading_admin_menu' ), 20);
35
-			add_action( 'grading_wrapper_container', array( $this, 'wrapper_container'  ) );
36
-			if ( isset( $_GET['page'] ) && ( $_GET['page'] == $this->page_slug ) ) {
37
-				add_action( 'admin_print_scripts', array( $this, 'enqueue_scripts' ) );
38
-				add_action( 'admin_print_styles', array( $this, 'enqueue_styles' ) );
33
+		if (is_admin()) {
34
+			add_action('admin_menu', array($this, 'grading_admin_menu'), 20);
35
+			add_action('grading_wrapper_container', array($this, 'wrapper_container'));
36
+			if (isset($_GET['page']) && ($_GET['page'] == $this->page_slug)) {
37
+				add_action('admin_print_scripts', array($this, 'enqueue_scripts'));
38
+				add_action('admin_print_styles', array($this, 'enqueue_styles'));
39 39
 			}
40 40
 
41
-			add_action( 'admin_init', array( $this, 'admin_process_grading_submission' ) );
41
+			add_action('admin_init', array($this, 'admin_process_grading_submission'));
42 42
 
43
-			add_action( 'admin_notices', array( $this, 'add_grading_notices' ) );
43
+			add_action('admin_notices', array($this, 'add_grading_notices'));
44 44
 //			add_action( 'sensei_grading_notices', array( $this, 'sensei_grading_notices' ) );
45 45
 		} // End If Statement
46 46
 
47 47
 		// Ajax functions
48
-		if ( is_admin() ) {
49
-			add_action( 'wp_ajax_get_lessons_dropdown', array( $this, 'get_lessons_dropdown' ) );
50
-			add_action( 'wp_ajax_get_redirect_url', array( $this, 'get_redirect_url' ) );
48
+		if (is_admin()) {
49
+			add_action('wp_ajax_get_lessons_dropdown', array($this, 'get_lessons_dropdown'));
50
+			add_action('wp_ajax_get_redirect_url', array($this, 'get_redirect_url'));
51 51
 		} // End If Statement
52 52
 	} // End __construct()
53 53
 
@@ -60,8 +60,8 @@  discard block
 block discarded – undo
60 60
 	public function grading_admin_menu() {
61 61
 		global $menu;
62 62
 
63
-		if ( current_user_can( 'manage_sensei_grades' ) ) {
64
-			$grading_page = add_submenu_page('sensei', __('Grading', 'woothemes-sensei'),  __('Grading', 'woothemes-sensei') , 'manage_sensei_grades', $this->page_slug, array( $this, 'grading_page' ) );
63
+		if (current_user_can('manage_sensei_grades')) {
64
+			$grading_page = add_submenu_page('sensei', __('Grading', 'woothemes-sensei'), __('Grading', 'woothemes-sensei'), 'manage_sensei_grades', $this->page_slug, array($this, 'grading_page'));
65 65
 		}
66 66
 
67 67
 	} // End grading_admin_menu()
@@ -74,13 +74,13 @@  discard block
 block discarded – undo
74 74
 	 * @since 1.3.0
75 75
 	 * @return void
76 76
 	 */
77
-	public function enqueue_scripts () {
77
+	public function enqueue_scripts() {
78 78
 
79 79
 
80
-		$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
80
+		$suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '' : '.min';
81 81
 
82 82
 		// Load Grading JS
83
-		wp_enqueue_script( 'sensei-grading-general', Sensei()->plugin_url . 'assets/js/grading-general' . $suffix . '.js', array( 'jquery' ), Sensei()->version );
83
+		wp_enqueue_script('sensei-grading-general', Sensei()->plugin_url.'assets/js/grading-general'.$suffix.'.js', array('jquery'), Sensei()->version);
84 84
 
85 85
 	} // End enqueue_scripts()
86 86
 
@@ -92,11 +92,11 @@  discard block
 block discarded – undo
92 92
 	 * @since 1.0.0
93 93
 	 * @return void
94 94
 	 */
95
-	public function enqueue_styles () {
95
+	public function enqueue_styles() {
96 96
 
97
-		wp_enqueue_style( Sensei()->token . '-admin' );
97
+		wp_enqueue_style(Sensei()->token.'-admin');
98 98
 
99
-		wp_enqueue_style( 'woothemes-sensei-settings-api', Sensei()->plugin_url . 'assets/css/settings.css', '', Sensei()->version );
99
+		wp_enqueue_style('woothemes-sensei-settings-api', Sensei()->plugin_url.'assets/css/settings.css', '', Sensei()->version);
100 100
 
101 101
 	} // End enqueue_styles()
102 102
 
@@ -108,12 +108,12 @@  discard block
 block discarded – undo
108 108
 	public function load_data_table_files() {
109 109
 
110 110
 		// Load Grading Classes
111
-		$classes_to_load = array(	'list-table',
111
+		$classes_to_load = array('list-table',
112 112
 									'grading-main',
113 113
 									'grading-user-quiz'
114 114
 									);
115
-		foreach ( $classes_to_load as $class_file ) {
116
-			Sensei()->load_class( $class_file );
115
+		foreach ($classes_to_load as $class_file) {
116
+			Sensei()->load_class($class_file);
117 117
 		} // End For Loop
118 118
 	} // End load_data_table_files()
119 119
 
@@ -125,16 +125,16 @@  discard block
 block discarded – undo
125 125
 	 * @param  undefined  $optional_data optional constructor arguments
126 126
 	 * @return object                 class instance object
127 127
 	 */
128
-	public function load_data_object( $name = '', $data = 0, $optional_data = null ) {
128
+	public function load_data_object($name = '', $data = 0, $optional_data = null) {
129 129
 		// Load Analysis data
130
-		$object_name = 'WooThemes_Sensei_Grading_' . $name;
131
-		if ( is_null($optional_data) ) {
132
-			$sensei_grading_object = new $object_name( $data );
130
+		$object_name = 'WooThemes_Sensei_Grading_'.$name;
131
+		if (is_null($optional_data)) {
132
+			$sensei_grading_object = new $object_name($data);
133 133
 		}
134 134
 		else {
135
-			$sensei_grading_object = new $object_name( $data, $optional_data );
135
+			$sensei_grading_object = new $object_name($data, $optional_data);
136 136
 		} // End If Statement
137
-		if ( 'Main' == $name ) {
137
+		if ('Main' == $name) {
138 138
 			$sensei_grading_object->prepare_items();
139 139
 		} // End If Statement
140 140
 		return $sensei_grading_object;
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
 	 */
149 149
 	public function grading_page() {
150 150
 
151
-		if ( isset( $_GET['quiz_id'] ) && 0 < intval( $_GET['quiz_id'] ) && isset( $_GET['user'] ) && 0 < intval( $_GET['user'] ) ) {
151
+		if (isset($_GET['quiz_id']) && 0 < intval($_GET['quiz_id']) && isset($_GET['user']) && 0 < intval($_GET['user'])) {
152 152
 			$this->grading_user_quiz_view();
153 153
 		}
154 154
 		else {
@@ -164,23 +164,23 @@  discard block
 block discarded – undo
164 164
 	public function grading_default_view() {
165 165
 
166 166
 		// Load Grading data
167
-		if( !empty( $_GET['course_id'] ) ) {
168
-			$course_id = intval( $_GET['course_id'] );
167
+		if ( ! empty($_GET['course_id'])) {
168
+			$course_id = intval($_GET['course_id']);
169 169
 		}
170
-		if( !empty( $_GET['lesson_id'] ) ) {
171
-			$lesson_id = intval( $_GET['lesson_id'] );
170
+		if ( ! empty($_GET['lesson_id'])) {
171
+			$lesson_id = intval($_GET['lesson_id']);
172 172
 		}
173
-		if( !empty( $_GET['user_id'] ) ) {
174
-			$user_id = intval( $_GET['user_id'] );
173
+		if ( ! empty($_GET['user_id'])) {
174
+			$user_id = intval($_GET['user_id']);
175 175
 		}
176
-		if( !empty( $_GET['view'] ) ) {
177
-			$view = esc_html( $_GET['view'] );
176
+		if ( ! empty($_GET['view'])) {
177
+			$view = esc_html($_GET['view']);
178 178
 		}
179
-		$sensei_grading_overview = $this->load_data_object( 'Main', compact( 'course_id', 'lesson_id', 'user_id', 'view' ) );
179
+		$sensei_grading_overview = $this->load_data_object('Main', compact('course_id', 'lesson_id', 'user_id', 'view'));
180 180
 
181 181
 		// Wrappers
182
-		do_action( 'grading_before_container' );
183
-		do_action( 'grading_wrapper_container', 'top' );
182
+		do_action('grading_before_container');
183
+		do_action('grading_wrapper_container', 'top');
184 184
 		$this->grading_headers();
185 185
 		?>
186 186
 		<div id="poststuff" class="sensei-grading-wrap">
@@ -188,12 +188,12 @@  discard block
 block discarded – undo
188 188
 				<?php $sensei_grading_overview->display(); ?>
189 189
 			</div>
190 190
 			<div class="sensei-grading-extra">
191
-				<?php do_action( 'sensei_grading_extra' ); ?>
191
+				<?php do_action('sensei_grading_extra'); ?>
192 192
 			</div>
193 193
 		</div>
194 194
 		<?php
195
-		do_action( 'grading_wrapper_container', 'bottom' );
196
-		do_action( 'grading_after_container' );
195
+		do_action('grading_wrapper_container', 'bottom');
196
+		do_action('grading_after_container');
197 197
 	} // End grading_default_view()
198 198
 
199 199
 	/**
@@ -206,17 +206,17 @@  discard block
 block discarded – undo
206 206
 		// Load Grading data
207 207
 		$user_id = 0;
208 208
 		$quiz_id = 0;
209
-		if( isset( $_GET['user'] ) ) {
210
-			$user_id = intval( $_GET['user'] );
209
+		if (isset($_GET['user'])) {
210
+			$user_id = intval($_GET['user']);
211 211
 		}
212
-		if( isset( $_GET['quiz_id'] ) ) {
213
-			$quiz_id = intval( $_GET['quiz_id'] );
212
+		if (isset($_GET['quiz_id'])) {
213
+			$quiz_id = intval($_GET['quiz_id']);
214 214
 		}
215
-		$sensei_grading_user_profile = $this->load_data_object( 'User_Quiz', $user_id, $quiz_id );
215
+		$sensei_grading_user_profile = $this->load_data_object('User_Quiz', $user_id, $quiz_id);
216 216
 		// Wrappers
217
-		do_action( 'grading_before_container' );
218
-		do_action( 'grading_wrapper_container', 'top' );
219
-		$this->grading_headers( array( 'nav' => 'user_quiz' ) );
217
+		do_action('grading_before_container');
218
+		do_action('grading_wrapper_container', 'top');
219
+		$this->grading_headers(array('nav' => 'user_quiz'));
220 220
 		?>
221 221
 		<div id="poststuff" class="sensei-grading-wrap user-profile">
222 222
 			<div class="sensei-grading-main">
@@ -225,8 +225,8 @@  discard block
 block discarded – undo
225 225
 			</div>
226 226
 		</div>
227 227
 		<?php
228
-		do_action( 'grading_wrapper_container', 'bottom' );
229
-		do_action( 'grading_after_container' );
228
+		do_action('grading_wrapper_container', 'bottom');
229
+		do_action('grading_after_container');
230 230
 	} // End grading_user_quiz_view()
231 231
 
232 232
 	/**
@@ -234,15 +234,15 @@  discard block
 block discarded – undo
234 234
 	 * @since  1.3.0
235 235
 	 * @return void
236 236
 	 */
237
-	public function grading_headers( $args = array( 'nav' => 'default' ) ) {
237
+	public function grading_headers($args = array('nav' => 'default')) {
238 238
 
239 239
 
240
-		$function = 'grading_' . $args['nav'] . '_nav';
240
+		$function = 'grading_'.$args['nav'].'_nav';
241 241
 		$this->$function();
242 242
 		?>
243
-			<p class="powered-by-woo"><?php _e( 'Powered by', 'woothemes-sensei' ); ?><a href="http://www.woothemes.com/" title="WooThemes"><img src="<?php echo Sensei()->plugin_url; ?>assets/images/woothemes.png" alt="WooThemes" /></a></p>
243
+			<p class="powered-by-woo"><?php _e('Powered by', 'woothemes-sensei'); ?><a href="http://www.woothemes.com/" title="WooThemes"><img src="<?php echo Sensei()->plugin_url; ?>assets/images/woothemes.png" alt="WooThemes" /></a></p>
244 244
 		<?php
245
-		do_action( 'sensei_grading_after_headers' );
245
+		do_action('sensei_grading_after_headers');
246 246
 	} // End grading_headers()
247 247
 
248 248
 	/**
@@ -251,10 +251,10 @@  discard block
 block discarded – undo
251 251
 	 * @param $which string
252 252
 	 * @return void
253 253
 	 */
254
-	public function wrapper_container( $which ) {
255
-		if ( 'top' == $which ) {
254
+	public function wrapper_container($which) {
255
+		if ('top' == $which) {
256 256
 			?><div id="woothemes-sensei" class="wrap woothemes-sensei"><?php
257
-		} elseif ( 'bottom' == $which ) {
257
+		} elseif ('bottom' == $which) {
258 258
 			?></div><!--/#woothemes-sensei--><?php
259 259
 		} // End If Statement
260 260
 	} // End wrapper_container()
@@ -267,29 +267,29 @@  discard block
 block discarded – undo
267 267
 	public function grading_default_nav() {
268 268
 		global  $wp_version;
269 269
 
270
-		$title = sprintf( '<a href="%s">%s</a>', esc_url(add_query_arg( array( 'page' => $this->page_slug ), admin_url( 'admin.php' ) ) ), esc_html( $this->name ) );
271
-		if ( isset( $_GET['course_id'] ) ) { 
272
-			$course_id = intval( $_GET['course_id'] );
273
-			if ( version_compare($wp_version, '4.1', '>=') ) {
274
-				$url = add_query_arg( array( 'page' => $this->page_slug, 'course_id' => $course_id ), admin_url( 'admin.php' ) );
275
-				$title .= sprintf( '&nbsp;&nbsp;<span class="course-title">&gt;&nbsp;&nbsp;<a href="%s">%s</a></span>', esc_url( $url ), get_the_title( $course_id ) );
270
+		$title = sprintf('<a href="%s">%s</a>', esc_url(add_query_arg(array('page' => $this->page_slug), admin_url('admin.php'))), esc_html($this->name));
271
+		if (isset($_GET['course_id'])) { 
272
+			$course_id = intval($_GET['course_id']);
273
+			if (version_compare($wp_version, '4.1', '>=')) {
274
+				$url = add_query_arg(array('page' => $this->page_slug, 'course_id' => $course_id), admin_url('admin.php'));
275
+				$title .= sprintf('&nbsp;&nbsp;<span class="course-title">&gt;&nbsp;&nbsp;<a href="%s">%s</a></span>', esc_url($url), get_the_title($course_id));
276 276
 			}
277 277
 			else {
278
-				$title .= sprintf( '&nbsp;&nbsp;<span class="course-title">&gt;&nbsp;&nbsp;%s</span>', get_the_title( $course_id ) ); 
278
+				$title .= sprintf('&nbsp;&nbsp;<span class="course-title">&gt;&nbsp;&nbsp;%s</span>', get_the_title($course_id)); 
279 279
 			}
280 280
 		}
281
-		if ( isset( $_GET['lesson_id'] ) ) { 
282
-			$lesson_id = intval( $_GET['lesson_id'] );
283
-			$title .= '&nbsp;&nbsp;<span class="lesson-title">&gt;&nbsp;&nbsp;' . get_the_title( intval( $lesson_id ) ) . '</span>'; 
281
+		if (isset($_GET['lesson_id'])) { 
282
+			$lesson_id = intval($_GET['lesson_id']);
283
+			$title .= '&nbsp;&nbsp;<span class="lesson-title">&gt;&nbsp;&nbsp;'.get_the_title(intval($lesson_id)).'</span>'; 
284 284
 		}
285
-		if ( isset( $_GET['user_id'] ) && 0 < intval( $_GET['user_id'] ) ) {
285
+		if (isset($_GET['user_id']) && 0 < intval($_GET['user_id'])) {
286 286
 
287
-            $user_name = Sensei_Student::get_full_name( $_GET['user_id'] );
288
-			$title .= '&nbsp;&nbsp;<span class="user-title">&gt;&nbsp;&nbsp;' . $user_name . '</span>';
287
+            $user_name = Sensei_Student::get_full_name($_GET['user_id']);
288
+			$title .= '&nbsp;&nbsp;<span class="user-title">&gt;&nbsp;&nbsp;'.$user_name.'</span>';
289 289
 
290 290
 		} // End If Statement
291 291
 		?>
292
-			<h2><?php echo apply_filters( 'sensei_grading_nav_title', $title ); ?></h2>
292
+			<h2><?php echo apply_filters('sensei_grading_nav_title', $title); ?></h2>
293 293
 		<?php
294 294
 	} // End grading_default_nav()
295 295
 
@@ -301,29 +301,29 @@  discard block
 block discarded – undo
301 301
 	public function grading_user_quiz_nav() {
302 302
 		global  $wp_version;
303 303
 
304
-		$title = sprintf( '<a href="%s">%s</a>', add_query_arg( array( 'page' => $this->page_slug ), admin_url( 'admin.php' ) ), esc_html( $this->name ) );
305
-		if ( isset( $_GET['quiz_id'] ) ) { 
306
-			$quiz_id = intval( $_GET['quiz_id'] );
307
-			$lesson_id = get_post_meta( $quiz_id, '_quiz_lesson', true );
308
-			$course_id = get_post_meta( $lesson_id, '_lesson_course', true );
309
-			if ( version_compare($wp_version, '4.1', '>=') ) {
310
-				$url = add_query_arg( array( 'page' => $this->page_slug, 'course_id' => $course_id ), admin_url( 'admin.php' ) );
311
-				$title .= sprintf( '&nbsp;&nbsp;<span class="course-title">&gt;&nbsp;&nbsp;<a href="%s">%s</a></span>', esc_url( $url ), get_the_title( $course_id ) );
304
+		$title = sprintf('<a href="%s">%s</a>', add_query_arg(array('page' => $this->page_slug), admin_url('admin.php')), esc_html($this->name));
305
+		if (isset($_GET['quiz_id'])) { 
306
+			$quiz_id = intval($_GET['quiz_id']);
307
+			$lesson_id = get_post_meta($quiz_id, '_quiz_lesson', true);
308
+			$course_id = get_post_meta($lesson_id, '_lesson_course', true);
309
+			if (version_compare($wp_version, '4.1', '>=')) {
310
+				$url = add_query_arg(array('page' => $this->page_slug, 'course_id' => $course_id), admin_url('admin.php'));
311
+				$title .= sprintf('&nbsp;&nbsp;<span class="course-title">&gt;&nbsp;&nbsp;<a href="%s">%s</a></span>', esc_url($url), get_the_title($course_id));
312 312
 			}
313 313
 			else {
314
-				$title .= sprintf( '&nbsp;&nbsp;<span class="course-title">&gt;&nbsp;&nbsp;%s</span>', get_the_title( $course_id ) ); 
314
+				$title .= sprintf('&nbsp;&nbsp;<span class="course-title">&gt;&nbsp;&nbsp;%s</span>', get_the_title($course_id)); 
315 315
 			}
316
-			$url = add_query_arg( array( 'page' => $this->page_slug, 'lesson_id' => $lesson_id ), admin_url( 'admin.php' ) );
317
-			$title .= sprintf( '&nbsp;&nbsp;<span class="lesson-title">&gt;&nbsp;&nbsp;<a href="%s">%s</a></span>', esc_url( $url ), get_the_title( $lesson_id ) );
316
+			$url = add_query_arg(array('page' => $this->page_slug, 'lesson_id' => $lesson_id), admin_url('admin.php'));
317
+			$title .= sprintf('&nbsp;&nbsp;<span class="lesson-title">&gt;&nbsp;&nbsp;<a href="%s">%s</a></span>', esc_url($url), get_the_title($lesson_id));
318 318
 		}
319
-		if ( isset( $_GET['user'] ) && 0 < intval( $_GET['user'] ) ) {
319
+		if (isset($_GET['user']) && 0 < intval($_GET['user'])) {
320 320
 
321
-            $user_name = Sensei_Student::get_full_name( $_GET['user'] );
322
-			$title .= '&nbsp;&nbsp;<span class="user-title">&gt;&nbsp;&nbsp;' . $user_name . '</span>';
321
+            $user_name = Sensei_Student::get_full_name($_GET['user']);
322
+			$title .= '&nbsp;&nbsp;<span class="user-title">&gt;&nbsp;&nbsp;'.$user_name.'</span>';
323 323
 
324 324
 		} // End If Statement
325 325
 		?>
326
-			<h2><?php echo apply_filters( 'sensei_grading_nav_title', $title ); ?></h2>
326
+			<h2><?php echo apply_filters('sensei_grading_nav_title', $title); ?></h2>
327 327
 		<?php
328 328
 	} // End grading_user_quiz_nav()
329 329
 
@@ -332,9 +332,9 @@  discard block
 block discarded – undo
332 332
 	 * @since  1.7.0
333 333
 	 * @return array
334 334
 	 */
335
-	public function get_stati( $type ) {
335
+	public function get_stati($type) {
336 336
 		$statuses = array();
337
-		switch( $type ) {
337
+		switch ($type) {
338 338
 			case 'course' :
339 339
 				$statuses = array(
340 340
 					'in-progress',
@@ -364,7 +364,7 @@  discard block
 block discarded – undo
364 364
 	 * @param  array $args (default: array())
365 365
 	 * @return object
366 366
 	 */
367
-	public function count_statuses( $args = array() ) {
367
+	public function count_statuses($args = array()) {
368 368
 		global  $wpdb;
369 369
 
370 370
         /**
@@ -375,71 +375,71 @@  discard block
 block discarded – undo
375 375
          * @since 1.8.0
376 376
          * @param array $args
377 377
          */
378
-        $args = apply_filters( 'sensei_count_statuses_args', $args );
378
+        $args = apply_filters('sensei_count_statuses_args', $args);
379 379
 
380
-		if ( 'course' == $args['type'] ) {
380
+		if ('course' == $args['type']) {
381 381
 			$type = 'sensei_course_status';
382 382
 		}
383 383
 		else {
384 384
 			$type = 'sensei_lesson_status';
385 385
 		}
386
-		$cache_key = 'sensei-' . $args['type'] . '-statuses';
386
+		$cache_key = 'sensei-'.$args['type'].'-statuses';
387 387
 
388 388
 		$query = "SELECT comment_approved, COUNT( * ) AS total FROM {$wpdb->comments} WHERE comment_type = %s ";
389 389
 
390 390
         // Restrict to specific posts
391
-		if ( isset( $args['post__in'] ) && !empty( $args['post__in'] ) && is_array( $args['post__in'] ) ) {
392
-			$query .= ' AND comment_post_ID IN (' . implode( ',', array_map( 'absint', $args['post__in'] ) ) . ')';
391
+		if (isset($args['post__in']) && ! empty($args['post__in']) && is_array($args['post__in'])) {
392
+			$query .= ' AND comment_post_ID IN ('.implode(',', array_map('absint', $args['post__in'])).')';
393 393
 		}
394
-		elseif ( !empty( $args['post_id'] ) ) {
395
-			$query .= $wpdb->prepare( ' AND comment_post_ID = %d', $args['post_id'] );
394
+		elseif ( ! empty($args['post_id'])) {
395
+			$query .= $wpdb->prepare(' AND comment_post_ID = %d', $args['post_id']);
396 396
 		}
397 397
 		// Restrict to specific users
398
-		if ( isset( $args['user_id'] ) && is_array( $args['user_id'] ) ) {
399
-			$query .= ' AND user_id IN (' . implode( ',', array_map( 'absint', $args['user_id'] ) ) . ')';
398
+		if (isset($args['user_id']) && is_array($args['user_id'])) {
399
+			$query .= ' AND user_id IN ('.implode(',', array_map('absint', $args['user_id'])).')';
400 400
 		}
401
-		elseif ( !empty( $args['user_id'] ) ) {
402
-			$query .= $wpdb->prepare( ' AND user_id = %d', $args['user_id'] );
401
+		elseif ( ! empty($args['user_id'])) {
402
+			$query .= $wpdb->prepare(' AND user_id = %d', $args['user_id']);
403 403
 		}
404 404
 		$query .= ' GROUP BY comment_approved';
405 405
 
406
-		$counts = wp_cache_get( $cache_key, 'counts' );
407
-		if ( false === $counts ) {
408
-			$sql = $wpdb->prepare( $query, $type );
409
-			$results = (array) $wpdb->get_results( $sql, ARRAY_A );
410
-			$counts = array_fill_keys( $this->get_stati( $type ), 0 );
406
+		$counts = wp_cache_get($cache_key, 'counts');
407
+		if (false === $counts) {
408
+			$sql = $wpdb->prepare($query, $type);
409
+			$results = (array) $wpdb->get_results($sql, ARRAY_A);
410
+			$counts = array_fill_keys($this->get_stati($type), 0);
411 411
 
412
-			foreach ( $results as $row ) {
413
-				$counts[ $row['comment_approved'] ] = $row['total'];
412
+			foreach ($results as $row) {
413
+				$counts[$row['comment_approved']] = $row['total'];
414 414
 			}
415
-			wp_cache_set( $cache_key, $counts, 'counts' );
415
+			wp_cache_set($cache_key, $counts, 'counts');
416 416
 		}
417 417
 
418
-		if( ! isset( $counts['graded'] ) ) {
418
+		if ( ! isset($counts['graded'])) {
419 419
 			$counts['graded'] = 0;
420 420
 		}
421 421
 
422
-		if( ! isset( $counts['ungraded'] ) ) {
422
+		if ( ! isset($counts['ungraded'])) {
423 423
 			$counts['ungraded'] = 0;
424 424
 		}
425 425
 
426
-		if( ! isset( $counts['passed'] ) ) {
426
+		if ( ! isset($counts['passed'])) {
427 427
 			$counts['passed'] = 0;
428 428
 		}
429 429
 
430
-		if( ! isset( $counts['failed'] ) ) {
430
+		if ( ! isset($counts['failed'])) {
431 431
 			$counts['failed'] = 0;
432 432
 		}
433 433
 
434
-		if( ! isset( $counts['in-progress'] ) ) {
434
+		if ( ! isset($counts['in-progress'])) {
435 435
 			$counts['in-progress'] = 0;
436 436
 		}
437 437
 
438
-		if( ! isset( $counts['complete'] ) ) {
438
+		if ( ! isset($counts['complete'])) {
439 439
 			$counts['complete'] = 0;
440 440
 		}
441 441
 
442
-		return apply_filters( 'sensei_count_statuses', $counts, $type );
442
+		return apply_filters('sensei_count_statuses', $counts, $type);
443 443
 	} // End sensei_count_statuses()
444 444
 
445 445
 	/**
@@ -447,11 +447,11 @@  discard block
 block discarded – undo
447 447
 	 * @since  1.7.0
448 448
 	 * @return string
449 449
 	 */
450
-	public function courses_drop_down_html( $selected_course_id = 0 ) {
450
+	public function courses_drop_down_html($selected_course_id = 0) {
451 451
 
452 452
 		$html = '';
453 453
 
454
-		$course_args = array(   'post_type'         => 'course',
454
+		$course_args = array('post_type'         => 'course',
455 455
 								'posts_per_page'       => -1,
456 456
 								'orderby'           => 'title',
457 457
 								'order'             => 'ASC',
@@ -459,12 +459,12 @@  discard block
 block discarded – undo
459 459
 								'suppress_filters'  => 0,
460 460
 								'fields'            => 'ids',
461 461
 							);
462
-		$courses = get_posts( apply_filters( 'sensei_grading_filter_courses', $course_args ) );
462
+		$courses = get_posts(apply_filters('sensei_grading_filter_courses', $course_args));
463 463
 
464
-		$html .= '<option value="">' . __( 'Select a course', 'woothemes-sensei' ) . '</option>';
465
-		if ( count( $courses ) > 0 ) {
466
-			foreach ($courses as $course_id){
467
-				$html .= '<option value="' . esc_attr( absint( $course_id ) ) . '" ' . selected( $course_id, $selected_course_id, false ) . '>' . esc_html( get_the_title( $course_id ) ) . '</option>' . "\n";
464
+		$html .= '<option value="">'.__('Select a course', 'woothemes-sensei').'</option>';
465
+		if (count($courses) > 0) {
466
+			foreach ($courses as $course_id) {
467
+				$html .= '<option value="'.esc_attr(absint($course_id)).'" '.selected($course_id, $selected_course_id, false).'>'.esc_html(get_the_title($course_id)).'</option>'."\n";
468 468
 			} // End For Loop
469 469
 		} // End If Statement
470 470
 
@@ -485,20 +485,20 @@  discard block
 block discarded – undo
485 485
 		$course_data = array();
486 486
 		parse_str($data, $course_data);
487 487
 
488
-		$course_id = intval( $course_data['course_id'] );
488
+		$course_id = intval($course_data['course_id']);
489 489
 
490
-		$html = $this->lessons_drop_down_html( $course_id );
490
+		$html = $this->lessons_drop_down_html($course_id);
491 491
 
492 492
 		echo $html;
493 493
 		die(); // WordPress may print out a spurious zero without this can be particularly bad if using JSON
494 494
 	}
495 495
 
496
-	public function lessons_drop_down_html( $course_id = 0, $selected_lesson_id = 0 ) {
496
+	public function lessons_drop_down_html($course_id = 0, $selected_lesson_id = 0) {
497 497
 
498 498
 		$html = '';
499
-		if ( 0 < intval( $course_id ) ) {
499
+		if (0 < intval($course_id)) {
500 500
 
501
-			$lesson_args = array( 'post_type'       => 'lesson',
501
+			$lesson_args = array('post_type'       => 'lesson',
502 502
 								'posts_per_page'       => -1,
503 503
 								'orderby'           => 'title',
504 504
 								'order'             => 'ASC',
@@ -508,12 +508,12 @@  discard block
 block discarded – undo
508 508
 								'suppress_filters'  => 0,
509 509
 								'fields'            => 'ids',
510 510
 								);
511
-			$lessons = get_posts( apply_filters( 'sensei_grading_filter_lessons', $lesson_args ) );
511
+			$lessons = get_posts(apply_filters('sensei_grading_filter_lessons', $lesson_args));
512 512
 
513
-			$html .= '<option value="">' . __( 'Select a lesson', 'woothemes-sensei' ) . '</option>';
514
-			if ( count( $lessons ) > 0 ) {
515
-				foreach ( $lessons as $lesson_id ){
516
-					$html .= '<option value="' . esc_attr( absint( $lesson_id ) ) . '" ' . selected( $lesson_id, $selected_lesson_id, false ) . '>' . esc_html( get_the_title( $lesson_id ) ) . '</option>' . "\n";
513
+			$html .= '<option value="">'.__('Select a lesson', 'woothemes-sensei').'</option>';
514
+			if (count($lessons) > 0) {
515
+				foreach ($lessons as $lesson_id) {
516
+					$html .= '<option value="'.esc_attr(absint($lesson_id)).'" '.selected($lesson_id, $selected_lesson_id, false).'>'.esc_html(get_the_title($lesson_id)).'</option>'."\n";
517 517
 				} // End For Loop
518 518
 			} // End If Statement
519 519
 
@@ -534,10 +534,10 @@  discard block
 block discarded – undo
534 534
     public function admin_process_grading_submission() {
535 535
 
536 536
         // NEEDS REFACTOR/OPTIMISING, such as combining the various meta data stored against the sensei_user_answer entry
537
-        if( ! isset( $_POST['sensei_manual_grade'] )
538
-            || ! wp_verify_nonce( $_POST['_wp_sensei_manual_grading_nonce'], 'sensei_manual_grading' )
539
-            || ! isset( $_GET['quiz_id'] )
540
-            || $_GET['quiz_id'] != $_POST['sensei_manual_grade'] ) {
537
+        if ( ! isset($_POST['sensei_manual_grade'])
538
+            || ! wp_verify_nonce($_POST['_wp_sensei_manual_grading_nonce'], 'sensei_manual_grading')
539
+            || ! isset($_GET['quiz_id'])
540
+            || $_GET['quiz_id'] != $_POST['sensei_manual_grade']) {
541 541
 
542 542
             return false; //exit and do not grade
543 543
 
@@ -547,30 +547,30 @@  discard block
 block discarded – undo
547 547
         $user_id = $_GET['user'];
548 548
 
549 549
 
550
-        $questions = Sensei_Utils::sensei_get_quiz_questions( $quiz_id );
551
-        $quiz_lesson_id =  Sensei()->quiz->get_lesson_id( $quiz_id );
550
+        $questions = Sensei_Utils::sensei_get_quiz_questions($quiz_id);
551
+        $quiz_lesson_id = Sensei()->quiz->get_lesson_id($quiz_id);
552 552
         $quiz_grade = 0;
553 553
         $count = 0;
554 554
         $quiz_grade_total = $_POST['quiz_grade_total'];
555 555
         $all_question_grades = array();
556 556
         $all_answers_feedback = array();
557 557
 
558
-        foreach( $questions as $question ) {
558
+        foreach ($questions as $question) {
559 559
 
560 560
             ++$count;
561 561
             $question_id = $question->ID;
562 562
 
563
-            if( isset( $_POST[ 'question_' . $question_id ] ) ) {
563
+            if (isset($_POST['question_'.$question_id])) {
564 564
 
565 565
                 $question_grade = 0;
566
-                if( $_POST[ 'question_' . $question_id ] == 'right' ) {
566
+                if ($_POST['question_'.$question_id] == 'right') {
567 567
 
568
-                    $question_grade = $_POST[ 'question_' . $question_id . '_grade' ];
568
+                    $question_grade = $_POST['question_'.$question_id.'_grade'];
569 569
 
570 570
                 }
571 571
 
572 572
                 // add data to the array that will, after the loop, be stored on the lesson status
573
-                $all_question_grades[ $question_id ] = $question_grade;
573
+                $all_question_grades[$question_id] = $question_grade;
574 574
 
575 575
                 // tally up the total quiz grade
576 576
                 $quiz_grade += $question_grade;
@@ -579,41 +579,41 @@  discard block
 block discarded – undo
579 579
 
580 580
             // Question answer feedback / notes
581 581
             $question_feedback = '';
582
-            if( isset( $_POST[ 'questions_feedback' ][ $question_id ] ) ){
582
+            if (isset($_POST['questions_feedback'][$question_id])) {
583 583
 
584
-                $question_feedback = wp_unslash( $_POST[ 'questions_feedback' ][ $question_id ] );
584
+                $question_feedback = wp_unslash($_POST['questions_feedback'][$question_id]);
585 585
 
586 586
             }
587
-            $all_answers_feedback[ $question_id ] = $question_feedback;
587
+            $all_answers_feedback[$question_id] = $question_feedback;
588 588
 
589 589
         } // end for each $questions
590 590
 
591 591
         //store all question grades on the lesson status
592
-        Sensei()->quiz->set_user_grades( $all_question_grades, $quiz_lesson_id , $user_id );
592
+        Sensei()->quiz->set_user_grades($all_question_grades, $quiz_lesson_id, $user_id);
593 593
 
594 594
         //store the feedback from grading
595
-        Sensei()->quiz->save_user_answers_feedback( $all_answers_feedback, $quiz_lesson_id , $user_id );
595
+        Sensei()->quiz->save_user_answers_feedback($all_answers_feedback, $quiz_lesson_id, $user_id);
596 596
 
597 597
         // $_POST['all_questions_graded'] is set when all questions have been graded
598 598
         // in the class sensei grading user quiz -> display()
599
-        if( $_POST['all_questions_graded'] == 'yes' ) {
599
+        if ($_POST['all_questions_graded'] == 'yes') {
600 600
 
601 601
             // set the users total quiz grade
602
-			if ( 0 < intval( $quiz_grade_total ) ) {
603
-            $grade = abs( round( ( doubleval( $quiz_grade ) * 100 ) / ( $quiz_grade_total ), 2 ) );
602
+			if (0 < intval($quiz_grade_total)) {
603
+            $grade = abs(round((doubleval($quiz_grade) * 100) / ($quiz_grade_total), 2));
604 604
 			}
605 605
 			else {
606 606
 				$grade = 0;
607 607
 			}
608
-            Sensei_Utils::sensei_grade_quiz( $quiz_id, $grade, $user_id );
608
+            Sensei_Utils::sensei_grade_quiz($quiz_id, $grade, $user_id);
609 609
 
610 610
             // Duplicating what Frontend->sensei_complete_quiz() does
611
-            $pass_required = get_post_meta( $quiz_id, '_pass_required', true );
612
-            $quiz_passmark = abs( round( doubleval( get_post_meta( $quiz_id, '_quiz_passmark', true ) ), 2 ) );
611
+            $pass_required = get_post_meta($quiz_id, '_pass_required', true);
612
+            $quiz_passmark = abs(round(doubleval(get_post_meta($quiz_id, '_quiz_passmark', true)), 2));
613 613
             $lesson_metadata = array();
614
-            if ( $pass_required ) {
614
+            if ($pass_required) {
615 615
                 // Student has reached the pass mark and lesson is complete
616
-                if ( $quiz_passmark <= $grade ) {
616
+                if ($quiz_passmark <= $grade) {
617 617
                     $lesson_status = 'passed';
618 618
                 }
619 619
                 else {
@@ -626,9 +626,9 @@  discard block
 block discarded – undo
626 626
             }
627 627
             $lesson_metadata['grade'] = $grade; // Technically already set as part of "WooThemes_Sensei_Utils::sensei_grade_quiz()" above
628 628
 
629
-            Sensei_Utils::update_lesson_status( $user_id, $quiz_lesson_id, $lesson_status, $lesson_metadata );
629
+            Sensei_Utils::update_lesson_status($user_id, $quiz_lesson_id, $lesson_status, $lesson_metadata);
630 630
 
631
-            if(  in_array( $lesson_status, array( 'passed', 'graded'  ) ) ) {
631
+            if (in_array($lesson_status, array('passed', 'graded'))) {
632 632
 
633 633
                 /**
634 634
                  * Summary.
@@ -640,27 +640,27 @@  discard block
 block discarded – undo
640 640
                  * @param int  $user_id
641 641
                  * @param int $quiz_lesson_id
642 642
                  */
643
-                do_action( 'sensei_user_lesson_end', $user_id, $quiz_lesson_id );
643
+                do_action('sensei_user_lesson_end', $user_id, $quiz_lesson_id);
644 644
 
645 645
             } // end if in_array
646 646
 
647 647
         }// end if $_POST['all_que...
648 648
 
649
-        if( isset( $_POST['sensei_grade_next_learner'] ) && strlen( $_POST['sensei_grade_next_learner'] ) > 0 ) {
649
+        if (isset($_POST['sensei_grade_next_learner']) && strlen($_POST['sensei_grade_next_learner']) > 0) {
650 650
 
651
-            $load_url = add_query_arg( array( 'message' => 'graded' ) );
651
+            $load_url = add_query_arg(array('message' => 'graded'));
652 652
 
653
-        } elseif ( isset( $_POST['_wp_http_referer'] ) ) {
653
+        } elseif (isset($_POST['_wp_http_referer'])) {
654 654
 
655
-            $load_url = add_query_arg( array( 'message' => 'graded' ), $_POST['_wp_http_referer'] );
655
+            $load_url = add_query_arg(array('message' => 'graded'), $_POST['_wp_http_referer']);
656 656
 
657 657
         } else {
658 658
 
659
-            $load_url = add_query_arg( array( 'message' => 'graded' ) );
659
+            $load_url = add_query_arg(array('message' => 'graded'));
660 660
 
661 661
         }
662 662
 
663
-        wp_safe_redirect( esc_url_raw( $load_url ) );
663
+        wp_safe_redirect(esc_url_raw($load_url));
664 664
         exit;
665 665
 
666 666
     } // end admin_process_grading_submission
@@ -671,13 +671,13 @@  discard block
 block discarded – undo
671 671
 		$lesson_data = array();
672 672
 		parse_str($data, $lesson_data);
673 673
 
674
-		$lesson_id = intval( $lesson_data['lesson_id'] );
675
-		$course_id = intval( $lesson_data['course_id'] );
676
-		$grading_view = sanitize_text_field( $lesson_data['view'] );
674
+		$lesson_id = intval($lesson_data['lesson_id']);
675
+		$course_id = intval($lesson_data['course_id']);
676
+		$grading_view = sanitize_text_field($lesson_data['view']);
677 677
 
678 678
 		$redirect_url = '';
679
-		if ( 0 < $lesson_id && 0 < $course_id ) {
680
-			$redirect_url = esc_url_raw( apply_filters( 'sensei_ajax_redirect_url', add_query_arg( array( 'page' => $this->page_slug, 'lesson_id' => $lesson_id, 'course_id' => $course_id, 'view' => $grading_view ), admin_url( 'admin.php' ) ) ) );
679
+		if (0 < $lesson_id && 0 < $course_id) {
680
+			$redirect_url = esc_url_raw(apply_filters('sensei_ajax_redirect_url', add_query_arg(array('page' => $this->page_slug, 'lesson_id' => $lesson_id, 'course_id' => $course_id, 'view' => $grading_view), admin_url('admin.php'))));
681 681
 		} // End If Statement
682 682
 
683 683
 		echo $redirect_url;
@@ -685,11 +685,11 @@  discard block
 block discarded – undo
685 685
 	}
686 686
 
687 687
 	public function add_grading_notices() {
688
-		if( isset( $_GET['page'] ) && $this->page_slug == $_GET['page'] && isset( $_GET['message'] ) && $_GET['message'] ) {
689
-			if( 'graded' == $_GET['message'] ) {
688
+		if (isset($_GET['page']) && $this->page_slug == $_GET['page'] && isset($_GET['message']) && $_GET['message']) {
689
+			if ('graded' == $_GET['message']) {
690 690
 				$msg = array(
691 691
 					'updated',
692
-					__( 'Quiz Graded Successfully!', 'woothemes-sensei' ),
692
+					__('Quiz Graded Successfully!', 'woothemes-sensei'),
693 693
 				);
694 694
 			}
695 695
 			?>
@@ -701,9 +701,9 @@  discard block
 block discarded – undo
701 701
 	}
702 702
 
703 703
 	public function sensei_grading_notices() {
704
-		if ( isset( $_GET['action'] ) && 'graded' == $_GET['action'] ) {
704
+		if (isset($_GET['action']) && 'graded' == $_GET['action']) {
705 705
 			echo '<div class="grading-notice updated">';
706
-				echo '<p>' . __( 'Quiz Graded Successfully!', 'woothemes-sensei' ) . '</p>';
706
+				echo '<p>'.__('Quiz Graded Successfully!', 'woothemes-sensei').'</p>';
707 707
 			echo '</div>';
708 708
 		} // End If Statement
709 709
 	} // End sensei_grading_notices()
@@ -726,16 +726,16 @@  discard block
 block discarded – undo
726 726
      *
727 727
      * @return int $quiz_grade total sum of all question grades
728 728
      */
729
-    public static function grade_quiz_auto( $quiz_id = 0, $submitted = array(), $total_questions = 0, $quiz_grade_type = 'auto' ) {
729
+    public static function grade_quiz_auto($quiz_id = 0, $submitted = array(), $total_questions = 0, $quiz_grade_type = 'auto') {
730 730
 
731
-        if( ! ( intval( $quiz_id ) > 0 )  || ! $submitted
732
-            || $quiz_grade_type != 'auto' ) {
731
+        if ( ! (intval($quiz_id) > 0) || ! $submitted
732
+            || $quiz_grade_type != 'auto') {
733 733
             return false; // exit early
734 734
         }
735 735
 
736 736
 
737 737
         $user_id = get_current_user_id();
738
-        $lesson_id =  Sensei()->quiz->get_lesson_id(  $quiz_id ) ;
738
+        $lesson_id = Sensei()->quiz->get_lesson_id($quiz_id);
739 739
         $quiz_autogradable = true;
740 740
 
741 741
         /**
@@ -749,23 +749,23 @@  discard block
 block discarded – undo
749 749
          *      'gap-fill'.
750 750
          * }
751 751
          */
752
-        $autogradable_question_types = apply_filters( 'sensei_autogradable_question_types', array( 'multiple-choice', 'boolean', 'gap-fill' ) );
752
+        $autogradable_question_types = apply_filters('sensei_autogradable_question_types', array('multiple-choice', 'boolean', 'gap-fill'));
753 753
 
754 754
         $grade_total = 0;
755 755
         $all_question_grades = array();
756
-        foreach( $submitted as $question_id => $answer ) {
756
+        foreach ($submitted as $question_id => $answer) {
757 757
 
758 758
             // check if the question is autogradable, either by type, or because the grade is 0
759
-            $question_type = Sensei()->question->get_question_type( $question_id );
760
-			$achievable_grade = Sensei()->question->get_question_grade( $question_id );
759
+            $question_type = Sensei()->question->get_question_type($question_id);
760
+			$achievable_grade = Sensei()->question->get_question_grade($question_id);
761 761
 			// Question has a zero grade, so skip grading
762
-			if ( 0 == $achievable_grade ) {
763
-				$all_question_grades[ $question_id ] = $achievable_grade;
762
+			if (0 == $achievable_grade) {
763
+				$all_question_grades[$question_id] = $achievable_grade;
764 764
 			}
765
-            elseif ( in_array( $question_type, $autogradable_question_types ) ) {
765
+            elseif (in_array($question_type, $autogradable_question_types)) {
766 766
                 // Get user question grade
767
-                $question_grade = Sensei_Utils::sensei_grade_question_auto( $question_id, $question_type, $answer, $user_id );
768
-                $all_question_grades[ $question_id ] = $question_grade;
767
+                $question_grade = Sensei_Utils::sensei_grade_question_auto($question_id, $question_type, $answer, $user_id);
768
+                $all_question_grades[$question_id] = $question_grade;
769 769
                 $grade_total += $question_grade;
770 770
 
771 771
             } else {
@@ -778,27 +778,27 @@  discard block
 block discarded – undo
778 778
         }// end for each question
779 779
 
780 780
         // Only if the whole quiz was autogradable do we set a grade
781
-        if ( $quiz_autogradable ) {
781
+        if ($quiz_autogradable) {
782 782
 
783
-            $quiz_total = Sensei_Utils::sensei_get_quiz_total( $quiz_id );
783
+            $quiz_total = Sensei_Utils::sensei_get_quiz_total($quiz_id);
784 784
 			// Check for zero total from grades
785
-			if ( 0 < $quiz_total ) {
786
-            $grade = abs( round( ( doubleval( $grade_total ) * 100 ) / ( $quiz_total ), 2 ) );
785
+			if (0 < $quiz_total) {
786
+            $grade = abs(round((doubleval($grade_total) * 100) / ($quiz_total), 2));
787 787
 			}
788 788
 			else {
789 789
 				$grade = 0;
790 790
 			}
791
-            Sensei_Utils::sensei_grade_quiz( $quiz_id, $grade, $user_id, $quiz_grade_type );
791
+            Sensei_Utils::sensei_grade_quiz($quiz_id, $grade, $user_id, $quiz_grade_type);
792 792
 
793 793
         } else {
794 794
 
795
-            $grade = new WP_Error( 'autograde', __( 'This quiz is not able to be automatically graded.', 'woothemes-sensei' ) );
795
+            $grade = new WP_Error('autograde', __('This quiz is not able to be automatically graded.', 'woothemes-sensei'));
796 796
 
797 797
         }
798 798
 
799 799
         // store the auto gradable grades. If the quiz is not auto gradable the grades can be use as the default
800 800
         // when doing manual grading.
801
-        Sensei()->quiz-> set_user_grades( $all_question_grades, $lesson_id, $user_id );
801
+        Sensei()->quiz-> set_user_grades($all_question_grades, $lesson_id, $user_id);
802 802
 
803 803
         return $grade;
804 804
 
@@ -818,22 +818,22 @@  discard block
 block discarded – undo
818 818
      *
819 819
      * @return int $question_grade
820 820
      */
821
-    public static function grade_question_auto( $question_id = 0, $question_type = '', $answer = '', $user_id = 0 ) {
821
+    public static function grade_question_auto($question_id = 0, $question_type = '', $answer = '', $user_id = 0) {
822 822
 
823
-        if( intval( $user_id ) == 0 ) {
823
+        if (intval($user_id) == 0) {
824 824
 
825 825
             $user_id = get_current_user_id();
826 826
 
827 827
         }
828 828
 
829
-        if( ! ( intval( $question_id ) > 0 ) ) {
829
+        if ( ! (intval($question_id) > 0)) {
830 830
 
831 831
             return false;
832 832
 
833 833
         }
834 834
 
835 835
 
836
-        Sensei()->question->get_question_type( $question_id );
836
+        Sensei()->question->get_question_type($question_id);
837 837
 
838 838
         /**
839 839
          * Applying a grade before the auto grading takes place.
@@ -847,42 +847,42 @@  discard block
 block discarded – undo
847 847
          * @param string $question_type one of the Sensei question type.
848 848
          * @param string $answer user supplied question answer
849 849
          */
850
-        $question_grade = apply_filters( 'sensei_pre_grade_question_auto', false, $question_id, $question_type, $answer );
850
+        $question_grade = apply_filters('sensei_pre_grade_question_auto', false, $question_id, $question_type, $answer);
851 851
 
852
-        if ( false !== $question_grade ) {
852
+        if (false !== $question_grade) {
853 853
 
854 854
             return $question_grade;
855 855
 
856 856
         }
857 857
 
858 858
         // auto grading core
859
-        if( in_array( $question_type ,  array( 'multiple-choice'  , 'boolean'  ) )   ){
859
+        if (in_array($question_type, array('multiple-choice', 'boolean'))) {
860 860
 
861
-            $right_answer = (array) get_post_meta( $question_id, '_question_right_answer', true );
861
+            $right_answer = (array) get_post_meta($question_id, '_question_right_answer', true);
862 862
 
863
-            if( 0 == get_magic_quotes_gpc() ) {
864
-                $answer = wp_unslash( $answer );
863
+            if (0 == get_magic_quotes_gpc()) {
864
+                $answer = wp_unslash($answer);
865 865
             }
866 866
             $answer = (array) $answer;
867
-            if ( is_array( $right_answer ) && count( $right_answer ) == count( $answer ) ) {
867
+            if (is_array($right_answer) && count($right_answer) == count($answer)) {
868 868
                 // Loop through all answers ensure none are 'missing'
869 869
                 $all_correct = true;
870
-                foreach ( $answer as $check_answer ) {
871
-                    if ( !in_array( $check_answer, $right_answer ) ) {
870
+                foreach ($answer as $check_answer) {
871
+                    if ( ! in_array($check_answer, $right_answer)) {
872 872
                         $all_correct = false;
873 873
                     }
874 874
                 }
875 875
                 // If all correct then grade
876
-                if ( $all_correct ) {
877
-                    $question_grade = Sensei()->question->get_question_grade( $question_id );
876
+                if ($all_correct) {
877
+                    $question_grade = Sensei()->question->get_question_grade($question_id);
878 878
                 }
879 879
             }
880 880
 
881
-        } elseif( 'gap-fill' == $question_type ){
881
+        } elseif ('gap-fill' == $question_type) {
882 882
 
883
-            $question_grade = self::grade_gap_fill_question( $question_id ,$answer );
883
+            $question_grade = self::grade_gap_fill_question($question_id, $answer);
884 884
 
885
-        } else{
885
+        } else {
886 886
 
887 887
             /**
888 888
              * Grading questions that are not auto gradable.
@@ -895,7 +895,7 @@  discard block
 block discarded – undo
895 895
              * @param string $question_type one of the Sensei question type.
896 896
              * @param string $answer user supplied question answer
897 897
              */
898
-            $question_grade = ( int ) apply_filters( 'sensei_grade_question_auto', $question_grade, $question_id, $question_type, $answer );
898
+            $question_grade = (int) apply_filters('sensei_grade_question_auto', $question_grade, $question_id, $question_type, $answer);
899 899
 
900 900
         } // end if $question_type
901 901
 
@@ -911,13 +911,13 @@  discard block
 block discarded – undo
911 911
      *
912 912
      * @return bool | int false or the grade given to the user answer
913 913
      */
914
-    public static function grade_gap_fill_question( $question_id, $user_answer ){
914
+    public static function grade_gap_fill_question($question_id, $user_answer) {
915 915
 
916
-        $right_answer = get_post_meta( $question_id, '_question_right_answer', true );
917
-        $gapfill_array = explode( '||', $right_answer );
916
+        $right_answer = get_post_meta($question_id, '_question_right_answer', true);
917
+        $gapfill_array = explode('||', $right_answer);
918 918
 
919
-        if( 0 == get_magic_quotes_gpc() ) { // deprecated from PHP 5.4 but we still support PHP 5.2
920
-            $user_answer = wp_unslash( $user_answer );
919
+        if (0 == get_magic_quotes_gpc()) { // deprecated from PHP 5.4 but we still support PHP 5.2
920
+            $user_answer = wp_unslash($user_answer);
921 921
         }
922 922
 
923 923
         /**
@@ -930,53 +930,53 @@  discard block
 block discarded – undo
930 930
          *
931 931
          * @since 1.9.0
932 932
          */
933
-        $do_case_sensitive_comparison = apply_filters('sensei_gap_fill_case_sensitive_grading', false );
933
+        $do_case_sensitive_comparison = apply_filters('sensei_gap_fill_case_sensitive_grading', false);
934 934
 
935
-        if( $do_case_sensitive_comparison ){
935
+        if ($do_case_sensitive_comparison) {
936 936
 
937 937
             // Case Sensitive Check that the 'gap' is "exactly" equal to the given answer
938
-            if ( trim(($gapfill_array[1])) == trim( $user_answer ) ) {
938
+            if (trim(($gapfill_array[1])) == trim($user_answer)) {
939 939
 
940
-                return Sensei()->question->get_question_grade( $question_id );
940
+                return Sensei()->question->get_question_grade($question_id);
941 941
 
942
-            } else if (@preg_match('/' . $gapfill_array[1] . '/i', null) !== FALSE) {
942
+            } else if (@preg_match('/'.$gapfill_array[1].'/i', null) !== FALSE) {
943 943
 
944
-                if (preg_match('/' . $gapfill_array[1] . '/i', $user_answer)) {
944
+                if (preg_match('/'.$gapfill_array[1].'/i', $user_answer)) {
945 945
 
946 946
                     return Sensei()->question->get_question_grade($question_id);
947 947
 
948
-                }else{
948
+                } else {
949 949
 
950 950
                     return false;
951 951
 
952 952
                 }
953 953
 
954
-            }else{
954
+            } else {
955 955
 
956 956
                 return false;
957 957
 
958 958
             }
959 959
 
960
-        }else{
960
+        } else {
961 961
 
962 962
             // Case Sensitive Check that the 'gap' is "exactly" equal to the given answer
963
-            if ( trim(strtolower($gapfill_array[1])) == trim(strtolower( $user_answer )) ) {
963
+            if (trim(strtolower($gapfill_array[1])) == trim(strtolower($user_answer))) {
964 964
 
965
-               return Sensei()->question->get_question_grade( $question_id );
965
+               return Sensei()->question->get_question_grade($question_id);
966 966
 
967
-            } else if (@preg_match('/' . $gapfill_array[1] . '/i', null) !== FALSE) {
967
+            } else if (@preg_match('/'.$gapfill_array[1].'/i', null) !== FALSE) {
968 968
 
969
-                if (preg_match('/' . $gapfill_array[1] . '/i', $user_answer)) {
969
+                if (preg_match('/'.$gapfill_array[1].'/i', $user_answer)) {
970 970
 
971
-                    return  Sensei()->question->get_question_grade( $question_id );
971
+                    return  Sensei()->question->get_question_grade($question_id);
972 972
 
973
-                }else{
973
+                } else {
974 974
 
975 975
                     return false;
976 976
 
977 977
                 }
978 978
 
979
-            }else{
979
+            } else {
980 980
 
981 981
                 return false;
982 982
 
@@ -993,4 +993,4 @@  discard block
 block discarded – undo
993 993
  * for backward compatibility
994 994
  * @since 1.9.0
995 995
  */
996
-class WooThemes_Sensei_Grading extends Sensei_Grading{}
996
+class WooThemes_Sensei_Grading extends Sensei_Grading {}
Please login to merge, or discard this patch.
includes/class-sensei-analysis.php 2 patches
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 
56 56
 		if ( current_user_can( 'manage_sensei_grades' ) ) {
57 57
 
58
-            add_submenu_page( 'sensei', __('Analysis', 'woothemes-sensei'),  __('Analysis', 'woothemes-sensei') , 'manage_sensei_grades', 'sensei_analysis', array( $this, 'analysis_page' ) );
58
+			add_submenu_page( 'sensei', __('Analysis', 'woothemes-sensei'),  __('Analysis', 'woothemes-sensei') , 'manage_sensei_grades', 'sensei_analysis', array( $this, 'analysis_page' ) );
59 59
 
60 60
 		}
61 61
 
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
 									'analysis-lesson'
106 106
 									);
107 107
 		foreach ( $classes_to_load as $class_file ) {
108
-            Sensei()->load_class( $class_file );
108
+			Sensei()->load_class( $class_file );
109 109
 		} // End For Loop
110 110
 	} // End load_data_table_files()
111 111
 
@@ -443,7 +443,7 @@  discard block
 block discarded – undo
443 443
 
444 444
 			$user_id = intval( $_GET['user_id'] );
445 445
 			$url = esc_url( add_query_arg( array( 'page' => $this->page_slug, 'user' => $user_id ), admin_url( 'admin.php' ) ) );
446
-            $user_name = Sensei_Student::get_full_name( $user_id );
446
+			$user_name = Sensei_Student::get_full_name( $user_id );
447 447
 			$title .= sprintf( '&nbsp;&nbsp;<span class="user-title">&gt;&nbsp;&nbsp;<a href="%s">%s</a></span>', $url, $user_name );
448 448
 
449 449
 		} // End If Statement
@@ -464,8 +464,8 @@  discard block
 block discarded – undo
464 464
 			$user_id = intval( $_GET['user_id'] );
465 465
 			$user_data = get_userdata( $user_id );
466 466
 			$url = add_query_arg( array( 'page' => $this->page_slug, 'user_id' => $user_id ), admin_url( 'admin.php' ) );
467
-            $user_name = Sensei_Student::get_full_name( $user_id );
468
-            $title .= sprintf( '&nbsp;&nbsp;<span class="user-title">&gt;&nbsp;&nbsp;<a href="%s">%s</a></span>', $url, $user_name );
467
+			$user_name = Sensei_Student::get_full_name( $user_id );
468
+			$title .= sprintf( '&nbsp;&nbsp;<span class="user-title">&gt;&nbsp;&nbsp;<a href="%s">%s</a></span>', $url, $user_name );
469 469
 			$title .= sprintf( '&nbsp;&nbsp;<span class="user-title">&gt;&nbsp;&nbsp;<a href="%s">%s</a></span>', esc_url( $url ), $user_data->display_name );
470 470
 		} // End If Statement
471 471
 		if ( isset( $_GET['course_id'] ) ) { 
Please login to merge, or discard this patch.
Spacing   +184 added lines, -184 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
2
+if ( ! defined('ABSPATH')) exit; // Exit if accessed directly
3 3
 
4 4
 /**
5 5
  * Sensei Analysis Class
@@ -23,23 +23,23 @@  discard block
 block discarded – undo
23 23
 	 * @since  1.0.0
24 24
 	 * @return  void
25 25
 	 */
26
-	public function __construct ( $file ) {
26
+	public function __construct($file) {
27 27
 		$this->name = __('Analysis', 'woothemes-sensei');
28 28
 		$this->file = $file;
29 29
 		$this->page_slug = 'sensei_analysis';
30 30
 
31 31
 		// Admin functions
32
-		if ( is_admin() ) {
33
-			add_action( 'admin_menu', array( $this, 'analysis_admin_menu' ), 10);
34
-			add_action( 'analysis_wrapper_container', array( $this, 'wrapper_container'  ) );
35
-			if ( isset( $_GET['page'] ) && ( $_GET['page'] == $this->page_slug ) ) {
36
-				add_action( 'admin_print_scripts', array( $this, 'enqueue_scripts' ) );
37
-				add_action( 'admin_print_styles', array( $this, 'enqueue_styles' ) );
32
+		if (is_admin()) {
33
+			add_action('admin_menu', array($this, 'analysis_admin_menu'), 10);
34
+			add_action('analysis_wrapper_container', array($this, 'wrapper_container'));
35
+			if (isset($_GET['page']) && ($_GET['page'] == $this->page_slug)) {
36
+				add_action('admin_print_scripts', array($this, 'enqueue_scripts'));
37
+				add_action('admin_print_styles', array($this, 'enqueue_styles'));
38 38
 			}
39 39
 
40
-			add_action( 'admin_init', array( $this, 'report_download_page' ) );
40
+			add_action('admin_init', array($this, 'report_download_page'));
41 41
 
42
-			add_filter( 'user_search_columns', array( $this, 'user_search_columns_filter' ), 10, 3 );
42
+			add_filter('user_search_columns', array($this, 'user_search_columns_filter'), 10, 3);
43 43
 		} // End If Statement
44 44
 	} // End __construct()
45 45
 
@@ -53,9 +53,9 @@  discard block
 block discarded – undo
53 53
 	public function analysis_admin_menu() {
54 54
 		global $menu, $woocommerce;
55 55
 
56
-		if ( current_user_can( 'manage_sensei_grades' ) ) {
56
+		if (current_user_can('manage_sensei_grades')) {
57 57
 
58
-            add_submenu_page( 'sensei', __('Analysis', 'woothemes-sensei'),  __('Analysis', 'woothemes-sensei') , 'manage_sensei_grades', 'sensei_analysis', array( $this, 'analysis_page' ) );
58
+            add_submenu_page('sensei', __('Analysis', 'woothemes-sensei'), __('Analysis', 'woothemes-sensei'), 'manage_sensei_grades', 'sensei_analysis', array($this, 'analysis_page'));
59 59
 
60 60
 		}
61 61
 
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 	 * @since 1.0.0
70 70
 	 * @return void
71 71
 	 */
72
-	public function enqueue_scripts () {
72
+	public function enqueue_scripts() {
73 73
 		// None for now
74 74
 
75 75
 	} // End enqueue_scripts()
@@ -82,11 +82,11 @@  discard block
 block discarded – undo
82 82
 	 * @since 1.0.0
83 83
 	 * @return void
84 84
 	 */
85
-	public function enqueue_styles () {
85
+	public function enqueue_styles() {
86 86
 
87
-		wp_enqueue_style( 'woothemes-sensei-admin' );
87
+		wp_enqueue_style('woothemes-sensei-admin');
88 88
 
89
-		wp_enqueue_style( 'woothemes-sensei-settings-api', Sensei()->plugin_url . 'assets/css/settings.css', '', Sensei()->version );
89
+		wp_enqueue_style('woothemes-sensei-settings-api', Sensei()->plugin_url.'assets/css/settings.css', '', Sensei()->version);
90 90
 
91 91
 	} // End enqueue_styles()
92 92
 
@@ -98,14 +98,14 @@  discard block
 block discarded – undo
98 98
 	public function load_data_table_files() {
99 99
 
100 100
 		// Load Analysis Classes
101
-		$classes_to_load = array(	'list-table',
101
+		$classes_to_load = array('list-table',
102 102
 									'analysis-overview',
103 103
 									'analysis-user-profile',
104 104
 									'analysis-course',
105 105
 									'analysis-lesson'
106 106
 									);
107
-		foreach ( $classes_to_load as $class_file ) {
108
-            Sensei()->load_class( $class_file );
107
+		foreach ($classes_to_load as $class_file) {
108
+            Sensei()->load_class($class_file);
109 109
 		} // End For Loop
110 110
 	} // End load_data_table_files()
111 111
 
@@ -116,13 +116,13 @@  discard block
 block discarded – undo
116 116
 	 * @param  undefined  $optional_data optional constructor arguments
117 117
 	 * @return object                 class instance object
118 118
 	 */
119
-	public function load_data_object( $name = '', $data = 0, $optional_data = null ) {
119
+	public function load_data_object($name = '', $data = 0, $optional_data = null) {
120 120
 		// Load Analysis data
121
-		$object_name = 'WooThemes_Sensei_Analysis_' . $name . '_List_Table';
122
-		if ( is_null($optional_data) ) {
123
-			$sensei_analysis_object = new $object_name( $data );
121
+		$object_name = 'WooThemes_Sensei_Analysis_'.$name.'_List_Table';
122
+		if (is_null($optional_data)) {
123
+			$sensei_analysis_object = new $object_name($data);
124 124
 		} else {
125
-			$sensei_analysis_object = new $object_name( $data, $optional_data );
125
+			$sensei_analysis_object = new $object_name($data, $optional_data);
126 126
 		}
127 127
 		$sensei_analysis_object->prepare_items();
128 128
 		return $sensei_analysis_object;
@@ -139,40 +139,40 @@  discard block
 block discarded – undo
139 139
 		$course_id = 0;
140 140
 		$lesson_id = 0;
141 141
 		$user_id = 0;
142
-		if( isset( $_GET['course_id'] ) ) {
143
-			$course_id = intval( $_GET['course_id'] );
142
+		if (isset($_GET['course_id'])) {
143
+			$course_id = intval($_GET['course_id']);
144 144
 		}
145
-		if( isset( $_GET['lesson_id'] ) ) {
146
-			$lesson_id = intval( $_GET['lesson_id'] );
145
+		if (isset($_GET['lesson_id'])) {
146
+			$lesson_id = intval($_GET['lesson_id']);
147 147
 		}
148
-		if( isset( $_GET['user_id'] ) ) {
149
-			$user_id = intval( $_GET['user_id'] );
148
+		if (isset($_GET['user_id'])) {
149
+			$user_id = intval($_GET['user_id']);
150 150
 		}
151
-		$type = isset( $_GET['view'] ) ? esc_html( $_GET['view'] ) : false;
151
+		$type = isset($_GET['view']) ? esc_html($_GET['view']) : false;
152 152
 
153
-		if ( 0 < $lesson_id ) {
153
+		if (0 < $lesson_id) {
154 154
 			// Viewing a specific Lesson and all its Learners
155
-			$this->analysis_lesson_users_view( $lesson_id );
155
+			$this->analysis_lesson_users_view($lesson_id);
156 156
 		}
157
-		elseif ( 0 < $course_id && !$user_id && 'user' == $type ) {
157
+		elseif (0 < $course_id && ! $user_id && 'user' == $type) {
158 158
 			// Viewing a specific Course and all its Learners
159
-			$this->analysis_course_users_view( $course_id );
159
+			$this->analysis_course_users_view($course_id);
160 160
 		}
161
-		elseif ( 0 < $course_id && 0 < $user_id ) {
161
+		elseif (0 < $course_id && 0 < $user_id) {
162 162
 			// Viewing a specific Learner on a specific Course, showing their Lessons
163
-			$this->analysis_user_course_view( $course_id, $user_id );
163
+			$this->analysis_user_course_view($course_id, $user_id);
164 164
 		}
165
-		elseif( 0 < $course_id ) {
165
+		elseif (0 < $course_id) {
166 166
 			// Viewing a specific Course and all it's Lessons
167
-			$this->analysis_course_view( $course_id );
167
+			$this->analysis_course_view($course_id);
168 168
 		}
169
-		elseif ( 0 < $user_id ) {
169
+		elseif (0 < $user_id) {
170 170
 			// Viewing a specific Learner, and their Courses
171
-			$this->analysis_user_profile_view( $user_id );
171
+			$this->analysis_user_profile_view($user_id);
172 172
 		}
173 173
 		else {
174 174
 			// Overview of all Learners, all Courses, or all Lessons
175
-			$this->analysis_default_view( $type );
175
+			$this->analysis_default_view($type);
176 176
 		} // End If Statement
177 177
 	} // End analysis_page()
178 178
 
@@ -181,35 +181,35 @@  discard block
 block discarded – undo
181 181
 	 * @since  1.2.0
182 182
 	 * @return void
183 183
 	 */
184
-	public function analysis_default_view( $type ) {
184
+	public function analysis_default_view($type) {
185 185
 
186 186
 		// Load Analysis data
187
-		$sensei_analysis_overview = $this->load_data_object( 'Overview', $type );
187
+		$sensei_analysis_overview = $this->load_data_object('Overview', $type);
188 188
 		// Wrappers
189
-		do_action( 'analysis_before_container' );
190
-		do_action( 'analysis_wrapper_container', 'top' );
189
+		do_action('analysis_before_container');
190
+		do_action('analysis_wrapper_container', 'top');
191 191
 		$this->analysis_headers();
192 192
 		?>
193 193
 		<div id="poststuff" class="sensei-analysis-wrap">
194 194
 			<div class="sensei-analysis-sidebar">
195 195
 				<?php
196
-				do_action( 'sensei_analysis_before_stats_boxes' );
197
-				foreach ( $sensei_analysis_overview->stats_boxes() as $key => $value ) {
198
-					$this->render_stats_box( esc_html( $key ), esc_html( $value ) );
196
+				do_action('sensei_analysis_before_stats_boxes');
197
+				foreach ($sensei_analysis_overview->stats_boxes() as $key => $value) {
198
+					$this->render_stats_box(esc_html($key), esc_html($value));
199 199
 				} // End For Loop
200
-				do_action( 'sensei_analysis_after_stats_boxes' );
200
+				do_action('sensei_analysis_after_stats_boxes');
201 201
 				?>
202 202
 			</div>
203 203
 			<div class="sensei-analysis-main">
204 204
 				<?php $sensei_analysis_overview->display(); ?>
205 205
 			</div>
206 206
 			<div class="sensei-analysis-extra">
207
-				<?php do_action( 'sensei_analysis_extra' ); ?>
207
+				<?php do_action('sensei_analysis_extra'); ?>
208 208
 			</div>
209 209
 		</div>
210 210
 		<?php
211
-		do_action( 'analysis_wrapper_container', 'bottom' );
212
-		do_action( 'analysis_after_container' );
211
+		do_action('analysis_wrapper_container', 'bottom');
212
+		do_action('analysis_after_container');
213 213
 	} // End analysis_default_view()
214 214
 
215 215
 	/**
@@ -217,26 +217,26 @@  discard block
 block discarded – undo
217 217
 	 * @since  1.2.0
218 218
 	 * @return void
219 219
 	 */
220
-	public function analysis_user_profile_view( $user_id ) {
220
+	public function analysis_user_profile_view($user_id) {
221 221
 
222 222
 		// Load Analysis data
223
-		$sensei_analysis_user_profile = $this->load_data_object( 'User_Profile', $user_id );
223
+		$sensei_analysis_user_profile = $this->load_data_object('User_Profile', $user_id);
224 224
 		// Wrappers
225
-		do_action( 'analysis_before_container' );
226
-		do_action( 'analysis_wrapper_container', 'top' );
227
-		$this->analysis_headers( array( 'nav' => 'user_profile' ) );
225
+		do_action('analysis_before_container');
226
+		do_action('analysis_wrapper_container', 'top');
227
+		$this->analysis_headers(array('nav' => 'user_profile'));
228 228
 		?>
229 229
 		<div id="poststuff" class="sensei-analysis-wrap user-profile">
230 230
 			<div class="sensei-analysis-main">
231 231
 				<?php $sensei_analysis_user_profile->display(); ?>
232 232
 			</div>
233 233
 			<div class="sensei-analysis-extra">
234
-				<?php do_action( 'sensei_analysis_extra' ); ?>
234
+				<?php do_action('sensei_analysis_extra'); ?>
235 235
 			</div>
236 236
 		</div>
237 237
 		<?php
238
-		do_action( 'analysis_wrapper_container', 'bottom' );
239
-		do_action( 'analysis_after_container' );
238
+		do_action('analysis_wrapper_container', 'bottom');
239
+		do_action('analysis_after_container');
240 240
 	} // End analysis_user_profile_view()
241 241
 
242 242
 	/**
@@ -244,26 +244,26 @@  discard block
 block discarded – undo
244 244
 	 * @since  1.2.0
245 245
 	 * @return void
246 246
 	 */
247
-	public function analysis_course_view( $course_id ) {
247
+	public function analysis_course_view($course_id) {
248 248
 
249 249
 		// Load Analysis data
250
-		$sensei_analysis_course = $this->load_data_object( 'Course', $course_id );
250
+		$sensei_analysis_course = $this->load_data_object('Course', $course_id);
251 251
 		// Wrappers
252
-		do_action( 'analysis_before_container' );
253
-		do_action( 'analysis_wrapper_container', 'top' );
254
-		$this->analysis_headers( array( 'nav' => 'course' ) );
252
+		do_action('analysis_before_container');
253
+		do_action('analysis_wrapper_container', 'top');
254
+		$this->analysis_headers(array('nav' => 'course'));
255 255
 		?>
256 256
 		<div id="poststuff" class="sensei-analysis-wrap course-profile">
257 257
 			<div class="sensei-analysis-main">
258 258
 				<?php $sensei_analysis_course->display(); ?>
259 259
 			</div>
260 260
 			<div class="sensei-analysis-extra">
261
-				<?php do_action( 'sensei_analysis_extra' ); ?>
261
+				<?php do_action('sensei_analysis_extra'); ?>
262 262
 			</div>
263 263
 		</div>
264 264
 		<?php
265
-		do_action( 'analysis_wrapper_container', 'bottom' );
266
-		do_action( 'analysis_after_container' );
265
+		do_action('analysis_wrapper_container', 'bottom');
266
+		do_action('analysis_after_container');
267 267
 	} // End analysis_course_view()
268 268
 
269 269
 	/**
@@ -271,26 +271,26 @@  discard block
 block discarded – undo
271 271
 	 * @since  1.2.0
272 272
 	 * @return void
273 273
 	 */
274
-	public function analysis_user_course_view( $course_id, $user_id ) {
274
+	public function analysis_user_course_view($course_id, $user_id) {
275 275
 
276 276
 		// Load Analysis data
277
-		$sensei_analysis_user_course = $this->load_data_object( 'Course', $course_id, $user_id );
277
+		$sensei_analysis_user_course = $this->load_data_object('Course', $course_id, $user_id);
278 278
 		// Wrappers
279
-		do_action( 'analysis_before_container' );
280
-		do_action( 'analysis_wrapper_container', 'top' );
281
-		$this->analysis_headers( array( 'nav' => 'user_course' ) );
279
+		do_action('analysis_before_container');
280
+		do_action('analysis_wrapper_container', 'top');
281
+		$this->analysis_headers(array('nav' => 'user_course'));
282 282
 		?>
283 283
 		<div id="poststuff" class="sensei-analysis-wrap course-profile">
284 284
 			<div class="sensei-analysis-main">
285 285
 				<?php $sensei_analysis_user_course->display(); ?>
286 286
 			</div>
287 287
 			<div class="sensei-analysis-extra">
288
-				<?php do_action( 'sensei_analysis_extra' ); ?>
288
+				<?php do_action('sensei_analysis_extra'); ?>
289 289
 			</div>
290 290
 		</div>
291 291
 		<?php
292
-		do_action( 'analysis_wrapper_container', 'bottom' );
293
-		do_action( 'analysis_after_container' );
292
+		do_action('analysis_wrapper_container', 'bottom');
293
+		do_action('analysis_after_container');
294 294
 	} // End analysis_user_course_view()
295 295
 
296 296
 	/**
@@ -298,26 +298,26 @@  discard block
 block discarded – undo
298 298
 	 * @since  1.2.0
299 299
 	 * @return void
300 300
 	 */
301
-	public function analysis_course_users_view( $course_id ) {
301
+	public function analysis_course_users_view($course_id) {
302 302
 
303 303
 		// Load Analysis data
304
-		$sensei_analysis_course_users = $this->load_data_object( 'Course', $course_id );
304
+		$sensei_analysis_course_users = $this->load_data_object('Course', $course_id);
305 305
 		// Wrappers
306
-		do_action( 'analysis_before_container' );
307
-		do_action( 'analysis_wrapper_container', 'top' );
308
-		$this->analysis_headers( array( 'nav' => 'course_users' ) );
306
+		do_action('analysis_before_container');
307
+		do_action('analysis_wrapper_container', 'top');
308
+		$this->analysis_headers(array('nav' => 'course_users'));
309 309
 		?>
310 310
 		<div id="poststuff" class="sensei-analysis-wrap course-profile">
311 311
 			<div class="sensei-analysis-main">
312 312
 				<?php $sensei_analysis_course_users->display(); ?>
313 313
 			</div>
314 314
 			<div class="sensei-analysis-extra">
315
-				<?php do_action( 'sensei_analysis_extra' ); ?>
315
+				<?php do_action('sensei_analysis_extra'); ?>
316 316
 			</div>
317 317
 		</div>
318 318
 		<?php
319
-		do_action( 'analysis_wrapper_container', 'bottom' );
320
-		do_action( 'analysis_after_container' );
319
+		do_action('analysis_wrapper_container', 'bottom');
320
+		do_action('analysis_after_container');
321 321
 	} // End analysis_course_users_view()
322 322
 
323 323
 	/**
@@ -325,26 +325,26 @@  discard block
 block discarded – undo
325 325
 	 * @since  1.2.0
326 326
 	 * @return void
327 327
 	 */
328
-	public function analysis_lesson_users_view( $lesson_id ) {
328
+	public function analysis_lesson_users_view($lesson_id) {
329 329
 
330 330
 		// Load Analysis data
331
-		$sensei_analysis_lesson_users = $this->load_data_object( 'Lesson', $lesson_id );
331
+		$sensei_analysis_lesson_users = $this->load_data_object('Lesson', $lesson_id);
332 332
 		// Wrappers
333
-		do_action( 'analysis_before_container' );
334
-		do_action( 'analysis_wrapper_container', 'top' );
335
-		$this->analysis_headers( array( 'nav' => 'lesson_users' ) );
333
+		do_action('analysis_before_container');
334
+		do_action('analysis_wrapper_container', 'top');
335
+		$this->analysis_headers(array('nav' => 'lesson_users'));
336 336
 		?>
337 337
 		<div id="poststuff" class="sensei-analysis-wrap course-profile">
338 338
 			<div class="sensei-analysis-main">
339 339
 				<?php $sensei_analysis_lesson_users->display(); ?>
340 340
 			</div>
341 341
 			<div class="sensei-analysis-extra">
342
-				<?php do_action( 'sensei_analysis_extra' ); ?>
342
+				<?php do_action('sensei_analysis_extra'); ?>
343 343
 			</div>
344 344
 		</div>
345 345
 		<?php
346
-		do_action( 'analysis_wrapper_container', 'bottom' );
347
-		do_action( 'analysis_after_container' );
346
+		do_action('analysis_wrapper_container', 'bottom');
347
+		do_action('analysis_after_container');
348 348
 	} // End analysis_lesson_users_view()
349 349
 
350 350
 	/**
@@ -354,7 +354,7 @@  discard block
 block discarded – undo
354 354
 	 * @param  $data string stats data
355 355
 	 * @return void
356 356
 	 */
357
-	public function render_stats_box( $title, $data ) {
357
+	public function render_stats_box($title, $data) {
358 358
 		?><div class="postbox">
359 359
 			<h3><span><?php echo $title; ?></span></h3>
360 360
 			<div class="inside">
@@ -368,14 +368,14 @@  discard block
 block discarded – undo
368 368
 	 * @since  1.2.0
369 369
 	 * @return void
370 370
 	 */
371
-	public function analysis_headers( $args = array( 'nav' => 'default' ) ) {
371
+	public function analysis_headers($args = array('nav' => 'default')) {
372 372
 
373
-		$function = 'analysis_' . $args['nav'] . '_nav';
373
+		$function = 'analysis_'.$args['nav'].'_nav';
374 374
 		$this->$function();
375 375
 		?>
376 376
 			<p class="powered-by-woo">
377 377
 
378
-                <?php _e( 'Powered by', 'woothemes-sensei' ); ?>
378
+                <?php _e('Powered by', 'woothemes-sensei'); ?>
379 379
 
380 380
                 <a href="http://www.woothemes.com/" title="WooThemes">
381 381
 
@@ -386,7 +386,7 @@  discard block
 block discarded – undo
386 386
             </p>
387 387
 
388 388
 		<?php
389
-		do_action( 'sensei_analysis_after_headers' );
389
+		do_action('sensei_analysis_after_headers');
390 390
 	} // End analysis_headers()
391 391
 
392 392
 	/**
@@ -395,10 +395,10 @@  discard block
 block discarded – undo
395 395
 	 * @param $which string
396 396
 	 * @return void
397 397
 	 */
398
-	public function wrapper_container( $which ) {
399
-		if ( 'top' == $which ) {
398
+	public function wrapper_container($which) {
399
+		if ('top' == $which) {
400 400
 			?><div id="woothemes-sensei" class="wrap woothemes-sensei"><?php
401
-		} elseif ( 'bottom' == $which ) {
401
+		} elseif ('bottom' == $which) {
402 402
 			?></div><!--/#woothemes-sensei--><?php
403 403
 		} // End If Statement
404 404
 	} // End wrapper_container()
@@ -410,24 +410,24 @@  discard block
 block discarded – undo
410 410
 	 */
411 411
 	public function analysis_default_nav() {
412 412
 
413
-		$title = sprintf( '<a href="%s">%s</a>', esc_url( add_query_arg( array( 'page' => $this->page_slug ), admin_url( 'admin.php' ) ) ), esc_html( $this->name ) );
414
-		$view = isset($_GET['view']) ? esc_html( $_GET['view'] ) : '';
415
-		switch ( $view ) { 
413
+		$title = sprintf('<a href="%s">%s</a>', esc_url(add_query_arg(array('page' => $this->page_slug), admin_url('admin.php'))), esc_html($this->name));
414
+		$view = isset($_GET['view']) ? esc_html($_GET['view']) : '';
415
+		switch ($view) { 
416 416
 			case 'courses' :
417
-				$title .= sprintf( '&nbsp;&nbsp;<span class="course-title">&gt;&nbsp;&nbsp;%s</span>', __( 'Courses', 'woothemes-sensei' ) );
417
+				$title .= sprintf('&nbsp;&nbsp;<span class="course-title">&gt;&nbsp;&nbsp;%s</span>', __('Courses', 'woothemes-sensei'));
418 418
 				break;
419 419
 
420 420
 			case 'lessons' :
421
-				$title .= sprintf( '&nbsp;&nbsp;<span class="lesson-title">&gt;&nbsp;&nbsp;%s</span>', __( 'Lessons', 'woothemes-sensei' ) );
421
+				$title .= sprintf('&nbsp;&nbsp;<span class="lesson-title">&gt;&nbsp;&nbsp;%s</span>', __('Lessons', 'woothemes-sensei'));
422 422
 				break;
423 423
 
424 424
 			case 'users' :
425 425
 			default :
426
-				$title .= sprintf( '&nbsp;&nbsp;<span class="user-title">&gt;&nbsp;&nbsp;%s</span>', __( 'Learners', 'woothemes-sensei' ) );
426
+				$title .= sprintf('&nbsp;&nbsp;<span class="user-title">&gt;&nbsp;&nbsp;%s</span>', __('Learners', 'woothemes-sensei'));
427 427
 				break;
428 428
 		}
429 429
 		?>
430
-			<h2><?php echo apply_filters( 'sensei_analysis_nav_title', $title ); ?></h2>
430
+			<h2><?php echo apply_filters('sensei_analysis_nav_title', $title); ?></h2>
431 431
 		<?php
432 432
 	} // End analysis_default_nav()
433 433
 
@@ -438,17 +438,17 @@  discard block
 block discarded – undo
438 438
 	 */
439 439
 	public function analysis_user_profile_nav() {
440 440
 
441
-		$title = sprintf( '<a href="%s">%s</a>', esc_url( add_query_arg( array( 'page' => $this->page_slug ), admin_url( 'admin.php' ) ) ), esc_html( $this->name ) );
442
-		if ( isset( $_GET['user_id'] ) && 0 < intval( $_GET['user_id'] ) ) {
441
+		$title = sprintf('<a href="%s">%s</a>', esc_url(add_query_arg(array('page' => $this->page_slug), admin_url('admin.php'))), esc_html($this->name));
442
+		if (isset($_GET['user_id']) && 0 < intval($_GET['user_id'])) {
443 443
 
444
-			$user_id = intval( $_GET['user_id'] );
445
-			$url = esc_url( add_query_arg( array( 'page' => $this->page_slug, 'user' => $user_id ), admin_url( 'admin.php' ) ) );
446
-            $user_name = Sensei_Student::get_full_name( $user_id );
447
-			$title .= sprintf( '&nbsp;&nbsp;<span class="user-title">&gt;&nbsp;&nbsp;<a href="%s">%s</a></span>', $url, $user_name );
444
+			$user_id = intval($_GET['user_id']);
445
+			$url = esc_url(add_query_arg(array('page' => $this->page_slug, 'user' => $user_id), admin_url('admin.php')));
446
+            $user_name = Sensei_Student::get_full_name($user_id);
447
+			$title .= sprintf('&nbsp;&nbsp;<span class="user-title">&gt;&nbsp;&nbsp;<a href="%s">%s</a></span>', $url, $user_name);
448 448
 
449 449
 		} // End If Statement
450 450
 		?>
451
-			<h2><?php echo apply_filters( 'sensei_analysis_nav_title', $title ); ?></h2>
451
+			<h2><?php echo apply_filters('sensei_analysis_nav_title', $title); ?></h2>
452 452
 		<?php
453 453
 	} // End analysis_user_profile_nav()
454 454
 
@@ -459,22 +459,22 @@  discard block
 block discarded – undo
459 459
 	 */
460 460
 	public function analysis_user_course_nav() {
461 461
 
462
-		$title = sprintf( '<a href="%s">%s</a>', esc_url( add_query_arg( array( 'page' => $this->page_slug ), admin_url( 'admin.php' ) ) ), esc_html( $this->name ) );
463
-		if ( isset( $_GET['user_id'] ) && 0 < intval( $_GET['user_id'] ) ) {
464
-			$user_id = intval( $_GET['user_id'] );
465
-			$user_data = get_userdata( $user_id );
466
-			$url = add_query_arg( array( 'page' => $this->page_slug, 'user_id' => $user_id ), admin_url( 'admin.php' ) );
467
-            $user_name = Sensei_Student::get_full_name( $user_id );
468
-            $title .= sprintf( '&nbsp;&nbsp;<span class="user-title">&gt;&nbsp;&nbsp;<a href="%s">%s</a></span>', $url, $user_name );
469
-			$title .= sprintf( '&nbsp;&nbsp;<span class="user-title">&gt;&nbsp;&nbsp;<a href="%s">%s</a></span>', esc_url( $url ), $user_data->display_name );
462
+		$title = sprintf('<a href="%s">%s</a>', esc_url(add_query_arg(array('page' => $this->page_slug), admin_url('admin.php'))), esc_html($this->name));
463
+		if (isset($_GET['user_id']) && 0 < intval($_GET['user_id'])) {
464
+			$user_id = intval($_GET['user_id']);
465
+			$user_data = get_userdata($user_id);
466
+			$url = add_query_arg(array('page' => $this->page_slug, 'user_id' => $user_id), admin_url('admin.php'));
467
+            $user_name = Sensei_Student::get_full_name($user_id);
468
+            $title .= sprintf('&nbsp;&nbsp;<span class="user-title">&gt;&nbsp;&nbsp;<a href="%s">%s</a></span>', $url, $user_name);
469
+			$title .= sprintf('&nbsp;&nbsp;<span class="user-title">&gt;&nbsp;&nbsp;<a href="%s">%s</a></span>', esc_url($url), $user_data->display_name);
470 470
 		} // End If Statement
471
-		if ( isset( $_GET['course_id'] ) ) { 
472
-			$course_id = intval( $_GET['course_id'] );
473
-			$url = add_query_arg( array( 'page' => $this->page_slug, 'course_id' => $course_id ), admin_url( 'admin.php' ) );
474
-			$title .= sprintf( '&nbsp;&nbsp;<span class="course-title">&gt;&nbsp;&nbsp;<a href="%s">%s</a></span>', esc_url( $url ), get_the_title( $course_id ) );
471
+		if (isset($_GET['course_id'])) { 
472
+			$course_id = intval($_GET['course_id']);
473
+			$url = add_query_arg(array('page' => $this->page_slug, 'course_id' => $course_id), admin_url('admin.php'));
474
+			$title .= sprintf('&nbsp;&nbsp;<span class="course-title">&gt;&nbsp;&nbsp;<a href="%s">%s</a></span>', esc_url($url), get_the_title($course_id));
475 475
 		}
476 476
 		?>
477
-			<h2><?php echo apply_filters( 'sensei_analysis_nav_title', $title ); ?></h2>
477
+			<h2><?php echo apply_filters('sensei_analysis_nav_title', $title); ?></h2>
478 478
 		<?php
479 479
 	} // End analysis_user_course_nav()
480 480
 
@@ -485,14 +485,14 @@  discard block
 block discarded – undo
485 485
 	 */
486 486
 	public function analysis_course_nav() {
487 487
 
488
-		$title = sprintf( '<a href="%s">%s</a>', add_query_arg( array( 'page' => $this->page_slug ), admin_url( 'admin.php' ) ), esc_html( $this->name ) );
489
-		if ( isset( $_GET['course_id'] ) ) { 
490
-			$course_id = intval( $_GET['course_id'] );
491
-			$url = add_query_arg( array( 'page' => $this->page_slug, 'course_id' => $course_id ), admin_url( 'admin.php' ) );
492
-			$title .= sprintf( '&nbsp;&nbsp;<span class="course-title">&gt;&nbsp;&nbsp;<a href="%s">%s</a></span>',esc_url( $url ), get_the_title( $course_id ) );
488
+		$title = sprintf('<a href="%s">%s</a>', add_query_arg(array('page' => $this->page_slug), admin_url('admin.php')), esc_html($this->name));
489
+		if (isset($_GET['course_id'])) { 
490
+			$course_id = intval($_GET['course_id']);
491
+			$url = add_query_arg(array('page' => $this->page_slug, 'course_id' => $course_id), admin_url('admin.php'));
492
+			$title .= sprintf('&nbsp;&nbsp;<span class="course-title">&gt;&nbsp;&nbsp;<a href="%s">%s</a></span>', esc_url($url), get_the_title($course_id));
493 493
 		}
494 494
 		?>
495
-			<h2><?php echo apply_filters( 'sensei_analysis_nav_title', $title ); ?></h2>
495
+			<h2><?php echo apply_filters('sensei_analysis_nav_title', $title); ?></h2>
496 496
 		<?php
497 497
 	} // End analysis_course_nav()
498 498
 
@@ -503,14 +503,14 @@  discard block
 block discarded – undo
503 503
 	 */
504 504
 	public function analysis_course_users_nav() {
505 505
 
506
-		$title = sprintf( '<a href="%s">%s</a>', add_query_arg( array( 'page' => $this->page_slug ), admin_url( 'admin.php' ) ), esc_html( $this->name ) );
507
-		if ( isset( $_GET['course_id'] ) ) { 
508
-			$course_id = intval( $_GET['course_id'] );
509
-			$url = add_query_arg( array( 'page' => $this->page_slug, 'course_id' => $course_id ), admin_url( 'admin.php' ) );
510
-			$title .= sprintf( '&nbsp;&nbsp;<span class="course-title">&gt;&nbsp;&nbsp;<a href="%s">%s</a></span>', esc_url( $url ), get_the_title( $course_id ) );
506
+		$title = sprintf('<a href="%s">%s</a>', add_query_arg(array('page' => $this->page_slug), admin_url('admin.php')), esc_html($this->name));
507
+		if (isset($_GET['course_id'])) { 
508
+			$course_id = intval($_GET['course_id']);
509
+			$url = add_query_arg(array('page' => $this->page_slug, 'course_id' => $course_id), admin_url('admin.php'));
510
+			$title .= sprintf('&nbsp;&nbsp;<span class="course-title">&gt;&nbsp;&nbsp;<a href="%s">%s</a></span>', esc_url($url), get_the_title($course_id));
511 511
 		}
512 512
 		?>
513
-			<h2><?php echo apply_filters( 'sensei_analysis_nav_title', $title ); ?></h2>
513
+			<h2><?php echo apply_filters('sensei_analysis_nav_title', $title); ?></h2>
514 514
 		<?php
515 515
 	} // End analysis_course_users_nav()
516 516
 
@@ -521,17 +521,17 @@  discard block
 block discarded – undo
521 521
 	 */
522 522
 	public function analysis_lesson_users_nav() {
523 523
 
524
-		$title = sprintf( '<a href="%s">%s</a>', add_query_arg( array( 'page' => $this->page_slug ), admin_url( 'admin.php' ) ), esc_html( $this->name ) );
525
-		if ( isset( $_GET['lesson_id'] ) ) { 
526
-			$lesson_id = intval( $_GET['lesson_id'] );
527
-			$course_id = intval( get_post_meta( $lesson_id, '_lesson_course', true ) );
528
-			$url = add_query_arg( array( 'page' => $this->page_slug, 'course_id' => $course_id ), admin_url( 'admin.php' ) );
529
-			$title .= sprintf( '&nbsp;&nbsp;<span class="course-title">&gt;&nbsp;&nbsp;<a href="%s">%s</a></span>', esc_url( $url ), get_the_title( $course_id ) );
530
-			$url = add_query_arg( array( 'page' => $this->page_slug, 'lesson_id' => $lesson_id ), admin_url( 'admin.php' ) );
531
-			$title .= sprintf( '&nbsp;&nbsp;<span class="lesson-title">&gt;&nbsp;&nbsp;<a href="%s">%s</a></span>', esc_url( $url ), get_the_title( $lesson_id ) );
524
+		$title = sprintf('<a href="%s">%s</a>', add_query_arg(array('page' => $this->page_slug), admin_url('admin.php')), esc_html($this->name));
525
+		if (isset($_GET['lesson_id'])) { 
526
+			$lesson_id = intval($_GET['lesson_id']);
527
+			$course_id = intval(get_post_meta($lesson_id, '_lesson_course', true));
528
+			$url = add_query_arg(array('page' => $this->page_slug, 'course_id' => $course_id), admin_url('admin.php'));
529
+			$title .= sprintf('&nbsp;&nbsp;<span class="course-title">&gt;&nbsp;&nbsp;<a href="%s">%s</a></span>', esc_url($url), get_the_title($course_id));
530
+			$url = add_query_arg(array('page' => $this->page_slug, 'lesson_id' => $lesson_id), admin_url('admin.php'));
531
+			$title .= sprintf('&nbsp;&nbsp;<span class="lesson-title">&gt;&nbsp;&nbsp;<a href="%s">%s</a></span>', esc_url($url), get_the_title($lesson_id));
532 532
 		}
533 533
 		?>
534
-			<h2><?php echo apply_filters( 'sensei_analysis_nav_title', $title ); ?></h2>
534
+			<h2><?php echo apply_filters('sensei_analysis_nav_title', $title); ?></h2>
535 535
 		<?php
536 536
 	} // End analysis_lesson_users_nav()
537 537
 
@@ -542,59 +542,59 @@  discard block
 block discarded – undo
542 542
 	 */
543 543
 	public function report_download_page() {
544 544
 		// Check if is a report
545
-		if ( !empty( $_GET['sensei_report_download'] ) ) {
546
-			$report = sanitize_text_field( $_GET['sensei_report_download'] );
545
+		if ( ! empty($_GET['sensei_report_download'])) {
546
+			$report = sanitize_text_field($_GET['sensei_report_download']);
547 547
 
548 548
 			// Simple verification to ensure intent, Note that a Nonce is per user, so the URL can't be shared
549
-			if ( !wp_verify_nonce( $_REQUEST['_sdl_nonce'], 'sensei_csv_download-' . $report ) ) {
550
-				wp_die( __('Invalid request', 'woothemes-sensei') );
549
+			if ( ! wp_verify_nonce($_REQUEST['_sdl_nonce'], 'sensei_csv_download-'.$report)) {
550
+				wp_die(__('Invalid request', 'woothemes-sensei'));
551 551
 			}
552 552
 
553 553
 			// Setup the variables we might need
554
-			$filename = apply_filters( 'sensei_csv_export_filename', $report );
554
+			$filename = apply_filters('sensei_csv_export_filename', $report);
555 555
 			$course_id = 0;
556 556
 			$lesson_id = 0;
557 557
 			$user_id = 0;
558
-			if( isset( $_GET['course_id'] ) ) {
559
-				$course_id = intval( $_GET['course_id'] );
558
+			if (isset($_GET['course_id'])) {
559
+				$course_id = intval($_GET['course_id']);
560 560
 			}
561
-			if( isset( $_GET['lesson_id'] ) ) {
562
-				$lesson_id = intval( $_GET['lesson_id'] );
561
+			if (isset($_GET['lesson_id'])) {
562
+				$lesson_id = intval($_GET['lesson_id']);
563 563
 			}
564
-			if( isset( $_GET['user_id'] ) ) {
565
-				$user_id = intval( $_GET['user_id'] );
564
+			if (isset($_GET['user_id'])) {
565
+				$user_id = intval($_GET['user_id']);
566 566
 			}
567
-			$type = isset( $_GET['view'] ) ? esc_html( $_GET['view'] ) : false;
567
+			$type = isset($_GET['view']) ? esc_html($_GET['view']) : false;
568 568
 
569
-			if ( 0 < $lesson_id ) {
569
+			if (0 < $lesson_id) {
570 570
 				// Viewing a specific Lesson and all its Learners
571
-				$sensei_analysis_report_object = $this->load_report_object( 'Lesson', $lesson_id );
571
+				$sensei_analysis_report_object = $this->load_report_object('Lesson', $lesson_id);
572 572
 			}
573
-			elseif ( 0 < $course_id && 0 < $user_id ) {
573
+			elseif (0 < $course_id && 0 < $user_id) {
574 574
 				// Viewing a specific User on a specific Course
575
-				$sensei_analysis_report_object = $this->load_report_object( 'Course', $course_id, $user_id );
575
+				$sensei_analysis_report_object = $this->load_report_object('Course', $course_id, $user_id);
576 576
 			}
577
-			elseif( 0 < $course_id ) {
577
+			elseif (0 < $course_id) {
578 578
 				// Viewing a specific Course and all it's Lessons, or it's Learners
579
-				$sensei_analysis_report_object = $this->load_report_object( 'Course', $course_id );
579
+				$sensei_analysis_report_object = $this->load_report_object('Course', $course_id);
580 580
 			}
581
-			elseif ( 0 < $user_id ) {
581
+			elseif (0 < $user_id) {
582 582
 				// Viewing a specific Learner, and their Courses
583
-				$sensei_analysis_report_object = $this->load_report_object( 'User_Profile', $user_id );
583
+				$sensei_analysis_report_object = $this->load_report_object('User_Profile', $user_id);
584 584
 			}
585 585
 			else {
586 586
 				// Overview of all Learners, all Courses, or all Lessons
587
-				$sensei_analysis_report_object = $this->load_report_object( 'Overview', $type );
587
+				$sensei_analysis_report_object = $this->load_report_object('Overview', $type);
588 588
 			} // End If Statement
589 589
 
590 590
 			// Handle the headers
591
-			$this->report_set_headers( $filename );
591
+			$this->report_set_headers($filename);
592 592
 
593 593
 			// Collate the data, there could be many different reports for a single object
594
-			$report_data_array = $sensei_analysis_report_object->generate_report( $report );
594
+			$report_data_array = $sensei_analysis_report_object->generate_report($report);
595 595
 
596 596
 			// Output the data
597
-			$this->report_write_download( $report_data_array );
597
+			$this->report_write_download($report_data_array);
598 598
 
599 599
 			// Cleanly exit
600 600
 			exit;
@@ -607,9 +607,9 @@  discard block
 block discarded – undo
607 607
 	 * @param  string $filename name of report file
608 608
 	 * @return void
609 609
 	 */
610
-	public function report_set_headers( $filename = '' ) {
611
-		header( 'Content-Type: text/csv' );
612
-		header( 'Content-Disposition: attachment;filename=' . $filename . '.csv');
610
+	public function report_set_headers($filename = '') {
611
+		header('Content-Type: text/csv');
612
+		header('Content-Disposition: attachment;filename='.$filename.'.csv');
613 613
 	} // End report_set_headers()
614 614
 
615 615
 	/**
@@ -620,12 +620,12 @@  discard block
 block discarded – undo
620 620
 	 * @param  undefined  $optional_data optional constructor arguments
621 621
 	 * @return object                 class instance object
622 622
 	 */
623
-	public function load_report_object( $name = '', $data = 0, $optional_data = null ) {
624
-		$object_name = 'WooThemes_Sensei_Analysis_' . $name . '_List_Table';
625
-		if ( is_null($optional_data) ) {
626
-			$sensei_analysis_report_object = new $object_name( $data );
623
+	public function load_report_object($name = '', $data = 0, $optional_data = null) {
624
+		$object_name = 'WooThemes_Sensei_Analysis_'.$name.'_List_Table';
625
+		if (is_null($optional_data)) {
626
+			$sensei_analysis_report_object = new $object_name($data);
627 627
 		} else {
628
-			$sensei_analysis_report_object = new $object_name( $data, $optional_data );
628
+			$sensei_analysis_report_object = new $object_name($data, $optional_data);
629 629
 		}
630 630
 		return $sensei_analysis_report_object;
631 631
 	} // End load_report_object()
@@ -636,7 +636,7 @@  discard block
 block discarded – undo
636 636
 	 * @param  array  $report_array data array
637 637
 	 * @return void
638 638
 	 */
639
-	public function report_write_download( $report_data = array() ) {
639
+	public function report_write_download($report_data = array()) {
640 640
 		$fp = fopen('php://output', 'w');
641 641
 		foreach ($report_data as $row) {
642 642
 			fputcsv($fp, $row);
@@ -652,9 +652,9 @@  discard block
 block discarded – undo
652 652
 	 * @param  object $user_query_object     WP_User_Query Object
653 653
 	 * @return array $search_columns         array of user columns to search
654 654
 	 */
655
-	public function user_search_columns_filter( $search_columns, $search, $user_query_object ) {
655
+	public function user_search_columns_filter($search_columns, $search, $user_query_object) {
656 656
 		// Alter $search_columns to include the fields you want to search on
657
-		array_push( $search_columns, 'display_name' );
657
+		array_push($search_columns, 'display_name');
658 658
 		return $search_columns;
659 659
 	}
660 660
 
Please login to merge, or discard this patch.
includes/admin/class-sensei-learner-management.php 3 patches
Indentation   +37 added lines, -37 removed lines patch added patch discarded remove patch
@@ -79,17 +79,17 @@  discard block
 block discarded – undo
79 79
 
80 80
 		// Load Learners JS
81 81
 		wp_enqueue_script( 'sensei-learners-general',
82
-            Sensei()->plugin_url . 'assets/js/learners-general' . $suffix . '.js',
83
-                            array('jquery','select2','sensei-chosen-ajax' ), Sensei()->version, true );
82
+			Sensei()->plugin_url . 'assets/js/learners-general' . $suffix . '.js',
83
+							array('jquery','select2','sensei-chosen-ajax' ), Sensei()->version, true );
84 84
 
85 85
 		$data = array(
86 86
 			'remove_generic_confirm' => __( 'Are you sure you want to remove this user?', 'woothemes-sensei' ),
87 87
 			'remove_from_lesson_confirm' => __( 'Are you sure you want to remove the user from this lesson?', 'woothemes-sensei' ),
88 88
 			'remove_from_course_confirm' => __( 'Are you sure you want to remove the user from this course?', 'woothemes-sensei' ),
89
-            'remove_from_purchased_course_confirm' => __( 'Are you sure you want to remove the user from this course? This order associate with this will also be set to canceled.', 'woothemes-sensei' ),
89
+			'remove_from_purchased_course_confirm' => __( 'Are you sure you want to remove the user from this course? This order associate with this will also be set to canceled.', 'woothemes-sensei' ),
90 90
 			'remove_user_from_post_nonce' => wp_create_nonce( 'remove_user_from_post_nonce' ),
91
-            'search_users_nonce' => wp_create_nonce( 'search-users' ),
92
-            'selectplaceholder'=> __( 'Select Learner', 'woothemes-sensei' )
91
+			'search_users_nonce' => wp_create_nonce( 'search-users' ),
92
+			'selectplaceholder'=> __( 'Select Learner', 'woothemes-sensei' )
93 93
 		);
94 94
 
95 95
 		wp_localize_script( 'sensei-learners-general', 'woo_learners_general_data', $data );
@@ -274,7 +274,7 @@  discard block
 block discarded – undo
274 274
 			$user_id = intval( $action_data['user_id'] );
275 275
 			$post_id = intval( $action_data['post_id'] );
276 276
 			$post_type = sanitize_text_field( $action_data['post_type'] );
277
-            $order_id = sanitize_text_field( $action_data['order_id'] );
277
+			$order_id = sanitize_text_field( $action_data['order_id'] );
278 278
 
279 279
 			$user = get_userdata( $user_id );
280 280
 
@@ -283,15 +283,15 @@  discard block
 block discarded – undo
283 283
 				case 'course':
284 284
 					$removed = Sensei_Utils::sensei_remove_user_from_course( $post_id, $user_id );
285 285
 
286
-                    if( ! empty( $order_id ) && Sensei_WC::is_woocommerce_active()  ){
286
+					if( ! empty( $order_id ) && Sensei_WC::is_woocommerce_active()  ){
287 287
 
288
-                        $order = new WC_Order($order_id);
288
+						$order = new WC_Order($order_id);
289 289
 
290
-                        if (!empty($order)) {
291
-                            $order->update_status( 'cancelled' );
292
-                        }
290
+						if (!empty($order)) {
291
+							$order->update_status( 'cancelled' );
292
+						}
293 293
 
294
-                    }
294
+					}
295 295
 
296 296
 				break;
297 297
 
@@ -336,19 +336,19 @@  discard block
 block discarded – undo
336 336
 
337 337
 		if ( $users ) {
338 338
 			foreach ( $users as $user ) {
339
-                $full_name = Sensei_Student::get_full_name( $user->ID );
339
+				$full_name = Sensei_Student::get_full_name( $user->ID );
340 340
 
341
-                if( trim($user->display_name ) == trim( $full_name ) ){
341
+				if( trim($user->display_name ) == trim( $full_name ) ){
342 342
 
343
-                    $name = $full_name;
343
+					$name = $full_name;
344 344
 
345
-                }else{
345
+				}else{
346 346
 
347
-                    $name = $full_name . ' ['. $user->display_name .']';
347
+					$name = $full_name . ' ['. $user->display_name .']';
348 348
 
349
-                }
349
+				}
350 350
 
351
-                $found_users[ $user->ID ] = $name  . ' (#' . $user->ID . ' &ndash; ' . sanitize_email( $user->user_email ) . ')';
351
+				$found_users[ $user->ID ] = $name  . ' (#' . $user->ID . ' &ndash; ' . sanitize_email( $user->user_email ) . ')';
352 352
 			}
353 353
 		}
354 354
 
@@ -392,7 +392,7 @@  discard block
 block discarded – undo
392 392
 			break;
393 393
 
394 394
 			case 'lesson':
395
-                $lesson_id = absint( $_POST['add_lesson_id'] );
395
+				$lesson_id = absint( $_POST['add_lesson_id'] );
396 396
 				$complete = false;
397 397
 				if( isset( $_POST['add_complete_lesson'] ) && 'yes' == $_POST['add_complete_lesson'] ) {
398 398
 					$complete = true;
@@ -452,23 +452,23 @@  discard block
 block discarded – undo
452 452
 		}
453 453
 	}
454 454
 
455
-    /**
456
-     * Return the full name and surname or the display name of the user.
457
-     *
458
-     * The user must have both name and surname otherwise display name will be returned.
459
-     *
460
-     * @deprecated since 1.9.0 use Se
461
-     * @since 1.8.0
462
-     *
463
-     * @param int $user_id | bool false for an invalid $user_id
464
-     *
465
-     * @return string $full_name
466
-     */
467
-    public function get_learner_full_name( $user_id ){
468
-
469
-        return Sensei_Student::get_full_name( $user_id );
470
-
471
-    } // end get_learner_full_name
455
+	/**
456
+	 * Return the full name and surname or the display name of the user.
457
+	 *
458
+	 * The user must have both name and surname otherwise display name will be returned.
459
+	 *
460
+	 * @deprecated since 1.9.0 use Se
461
+	 * @since 1.8.0
462
+	 *
463
+	 * @param int $user_id | bool false for an invalid $user_id
464
+	 *
465
+	 * @return string $full_name
466
+	 */
467
+	public function get_learner_full_name( $user_id ){
468
+
469
+		return Sensei_Student::get_full_name( $user_id );
470
+
471
+	} // end get_learner_full_name
472 472
 
473 473
 } // End Class
474 474
 
Please login to merge, or discard this patch.
Spacing   +137 added lines, -137 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
2
+if ( ! defined('ABSPATH')) exit; // Exit if accessed directly
3 3
 
4 4
 /**
5 5
  * Sensei Learners Class
@@ -23,30 +23,30 @@  discard block
 block discarded – undo
23 23
 	 * @since  1.6.0
24 24
 	 * @return  void
25 25
 	 */
26
-	public function __construct ( $file ) {
27
-		$this->name = __( 'Learner Management', 'woothemes-sensei' );;
26
+	public function __construct($file) {
27
+		$this->name = __('Learner Management', 'woothemes-sensei'); ;
28 28
 		$this->file = $file;
29 29
 		$this->page_slug = 'sensei_learners';
30 30
 
31 31
 		// Admin functions
32
-		if ( is_admin() ) {
33
-			add_action( 'admin_menu', array( $this, 'learners_admin_menu' ), 30);
34
-			add_action( 'learners_wrapper_container', array( $this, 'wrapper_container'  ) );
35
-			if ( isset( $_GET['page'] ) && ( $_GET['page'] == $this->page_slug ) ) {
36
-				add_action( 'admin_print_scripts', array( $this, 'enqueue_scripts' ) );
37
-				add_action( 'admin_print_styles', array( $this, 'enqueue_styles' ) );
32
+		if (is_admin()) {
33
+			add_action('admin_menu', array($this, 'learners_admin_menu'), 30);
34
+			add_action('learners_wrapper_container', array($this, 'wrapper_container'));
35
+			if (isset($_GET['page']) && ($_GET['page'] == $this->page_slug)) {
36
+				add_action('admin_print_scripts', array($this, 'enqueue_scripts'));
37
+				add_action('admin_print_styles', array($this, 'enqueue_styles'));
38 38
 			}
39 39
 
40
-			add_action( 'admin_init', array( $this, 'add_new_learners' ) );
40
+			add_action('admin_init', array($this, 'add_new_learners'));
41 41
 
42
-			add_action( 'admin_notices', array( $this, 'add_learner_notices' ) );
42
+			add_action('admin_notices', array($this, 'add_learner_notices'));
43 43
 		} // End If Statement
44 44
 
45 45
 		// Ajax functions
46
-		if ( is_admin() ) {
47
-			add_action( 'wp_ajax_get_redirect_url_learners', array( $this, 'get_redirect_url' ) );
48
-			add_action( 'wp_ajax_remove_user_from_post', array( $this, 'remove_user_from_post' ) );
49
-			add_action( 'wp_ajax_sensei_json_search_users', array( $this, 'json_search_users' ) );
46
+		if (is_admin()) {
47
+			add_action('wp_ajax_get_redirect_url_learners', array($this, 'get_redirect_url'));
48
+			add_action('wp_ajax_remove_user_from_post', array($this, 'remove_user_from_post'));
49
+			add_action('wp_ajax_sensei_json_search_users', array($this, 'json_search_users'));
50 50
 		}
51 51
 	} // End __construct()
52 52
 
@@ -59,8 +59,8 @@  discard block
 block discarded – undo
59 59
 	public function learners_admin_menu() {
60 60
 		global $menu;
61 61
 
62
-		if ( current_user_can( 'manage_sensei_grades' ) ) {
63
-			$learners_page = add_submenu_page( 'sensei', $this->name, $this->name, 'manage_sensei_grades', $this->page_slug, array( $this, 'learners_page' ) );
62
+		if (current_user_can('manage_sensei_grades')) {
63
+			$learners_page = add_submenu_page('sensei', $this->name, $this->name, 'manage_sensei_grades', $this->page_slug, array($this, 'learners_page'));
64 64
 		}
65 65
 
66 66
 	} // End learners_admin_menu()
@@ -73,26 +73,26 @@  discard block
 block discarded – undo
73 73
 	 * @since 1.6.0
74 74
 	 * @return void
75 75
 	 */
76
-	public function enqueue_scripts () {
76
+	public function enqueue_scripts() {
77 77
 
78
-		$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
78
+		$suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '' : '.min';
79 79
 
80 80
 		// Load Learners JS
81
-		wp_enqueue_script( 'sensei-learners-general',
82
-            Sensei()->plugin_url . 'assets/js/learners-general' . $suffix . '.js',
83
-                            array('jquery','select2','sensei-chosen-ajax' ), Sensei()->version, true );
81
+		wp_enqueue_script('sensei-learners-general',
82
+            Sensei()->plugin_url.'assets/js/learners-general'.$suffix.'.js',
83
+                            array('jquery', 'select2', 'sensei-chosen-ajax'), Sensei()->version, true);
84 84
 
85 85
 		$data = array(
86
-			'remove_generic_confirm' => __( 'Are you sure you want to remove this user?', 'woothemes-sensei' ),
87
-			'remove_from_lesson_confirm' => __( 'Are you sure you want to remove the user from this lesson?', 'woothemes-sensei' ),
88
-			'remove_from_course_confirm' => __( 'Are you sure you want to remove the user from this course?', 'woothemes-sensei' ),
89
-            'remove_from_purchased_course_confirm' => __( 'Are you sure you want to remove the user from this course? This order associate with this will also be set to canceled.', 'woothemes-sensei' ),
90
-			'remove_user_from_post_nonce' => wp_create_nonce( 'remove_user_from_post_nonce' ),
91
-            'search_users_nonce' => wp_create_nonce( 'search-users' ),
92
-            'selectplaceholder'=> __( 'Select Learner', 'woothemes-sensei' )
86
+			'remove_generic_confirm' => __('Are you sure you want to remove this user?', 'woothemes-sensei'),
87
+			'remove_from_lesson_confirm' => __('Are you sure you want to remove the user from this lesson?', 'woothemes-sensei'),
88
+			'remove_from_course_confirm' => __('Are you sure you want to remove the user from this course?', 'woothemes-sensei'),
89
+            'remove_from_purchased_course_confirm' => __('Are you sure you want to remove the user from this course? This order associate with this will also be set to canceled.', 'woothemes-sensei'),
90
+			'remove_user_from_post_nonce' => wp_create_nonce('remove_user_from_post_nonce'),
91
+            'search_users_nonce' => wp_create_nonce('search-users'),
92
+            'selectplaceholder'=> __('Select Learner', 'woothemes-sensei')
93 93
 		);
94 94
 
95
-		wp_localize_script( 'sensei-learners-general', 'woo_learners_general_data', $data );
95
+		wp_localize_script('sensei-learners-general', 'woo_learners_general_data', $data);
96 96
 
97 97
 	} // End enqueue_scripts()
98 98
 
@@ -104,9 +104,9 @@  discard block
 block discarded – undo
104 104
 	 * @since 1.6.0
105 105
 	 * @return void
106 106
 	 */
107
-	public function enqueue_styles () {
107
+	public function enqueue_styles() {
108 108
 
109
-		wp_enqueue_style( 'woothemes-sensei-admin' );
109
+		wp_enqueue_style('woothemes-sensei-admin');
110 110
 
111 111
 	} // End enqueue_styles()
112 112
 
@@ -118,11 +118,11 @@  discard block
 block discarded – undo
118 118
 	public function load_data_table_files() {
119 119
 
120 120
 		// Load Learners Classes
121
-		$classes_to_load = array(	'list-table',
121
+		$classes_to_load = array('list-table',
122 122
 									'learners-main',
123 123
 									);
124
-		foreach ( $classes_to_load as $class_file ) {
125
-			Sensei()->load_class( $class_file );
124
+		foreach ($classes_to_load as $class_file) {
125
+			Sensei()->load_class($class_file);
126 126
 		} // End For Loop
127 127
 	} // End load_data_table_files()
128 128
 
@@ -134,15 +134,15 @@  discard block
 block discarded – undo
134 134
 	 * @param  undefined  $optional_data optional constructor arguments
135 135
 	 * @return object                 class instance object
136 136
 	 */
137
-	public function load_data_object( $name = '', $data = 0, $optional_data = null ) {
137
+	public function load_data_object($name = '', $data = 0, $optional_data = null) {
138 138
 		// Load Analysis data
139
-		$object_name = 'WooThemes_Sensei_Learners_' . $name;
140
-		if ( is_null($optional_data) ) {
141
-			$sensei_learners_object = new $object_name( $data );
139
+		$object_name = 'WooThemes_Sensei_Learners_'.$name;
140
+		if (is_null($optional_data)) {
141
+			$sensei_learners_object = new $object_name($data);
142 142
 		} else {
143
-			$sensei_learners_object = new $object_name( $data, $optional_data );
143
+			$sensei_learners_object = new $object_name($data, $optional_data);
144 144
 		} // End If Statement
145
-		if ( 'Main' == $name ) {
145
+		if ('Main' == $name) {
146 146
 			$sensei_learners_object->prepare_items();
147 147
 		} // End If Statement
148 148
 		return $sensei_learners_object;
@@ -159,16 +159,16 @@  discard block
 block discarded – undo
159 159
 		// Load Learners data
160 160
 		$course_id = 0;
161 161
 		$lesson_id = 0;
162
-		if( isset( $_GET['course_id'] ) ) {
163
-			$course_id = intval( $_GET['course_id'] );
162
+		if (isset($_GET['course_id'])) {
163
+			$course_id = intval($_GET['course_id']);
164 164
 		}
165
-		if( isset( $_GET['lesson_id'] ) ) {
166
-			$lesson_id = intval( $_GET['lesson_id'] );
165
+		if (isset($_GET['lesson_id'])) {
166
+			$lesson_id = intval($_GET['lesson_id']);
167 167
 		}
168
-		$sensei_learners_main = $this->load_data_object( 'Main', $course_id, $lesson_id );
168
+		$sensei_learners_main = $this->load_data_object('Main', $course_id, $lesson_id);
169 169
 		// Wrappers
170
-		do_action( 'learners_before_container' );
171
-		do_action( 'learners_wrapper_container', 'top' );
170
+		do_action('learners_before_container');
171
+		do_action('learners_wrapper_container', 'top');
172 172
 		$this->learners_headers();
173 173
 		?>
174 174
 		<div id="poststuff" class="sensei-learners-wrap">
@@ -176,12 +176,12 @@  discard block
 block discarded – undo
176 176
 				<?php $sensei_learners_main->display(); ?>
177 177
 			</div>
178 178
 			<div class="sensei-learners-extra">
179
-				<?php do_action( 'sensei_learners_extra' ); ?>
179
+				<?php do_action('sensei_learners_extra'); ?>
180 180
 			</div>
181 181
 		</div>
182 182
 		<?php
183
-		do_action( 'learners_wrapper_container', 'bottom' );
184
-		do_action( 'learners_after_container' );
183
+		do_action('learners_wrapper_container', 'bottom');
184
+		do_action('learners_after_container');
185 185
 	} // End learners_default_view()
186 186
 
187 187
 	/**
@@ -189,15 +189,15 @@  discard block
 block discarded – undo
189 189
 	 * @since  1.6.0
190 190
 	 * @return void
191 191
 	 */
192
-	public function learners_headers( $args = array( 'nav' => 'default' ) ) {
192
+	public function learners_headers($args = array('nav' => 'default')) {
193 193
 
194 194
 
195
-		$function = 'learners_' . $args['nav'] . '_nav';
195
+		$function = 'learners_'.$args['nav'].'_nav';
196 196
 		$this->$function();
197 197
 		?>
198
-			<p class="powered-by-woo"><?php _e( 'Powered by', 'woothemes-sensei' ); ?><a href="http://www.woothemes.com/" title="WooThemes"><img src="<?php echo Sensei()->plugin_url; ?>assets/images/woothemes.png" alt="WooThemes" /></a></p>
198
+			<p class="powered-by-woo"><?php _e('Powered by', 'woothemes-sensei'); ?><a href="http://www.woothemes.com/" title="WooThemes"><img src="<?php echo Sensei()->plugin_url; ?>assets/images/woothemes.png" alt="WooThemes" /></a></p>
199 199
 		<?php
200
-		do_action( 'sensei_learners_after_headers' );
200
+		do_action('sensei_learners_after_headers');
201 201
 	} // End learners_headers()
202 202
 
203 203
 	/**
@@ -206,10 +206,10 @@  discard block
 block discarded – undo
206 206
 	 * @param $which string
207 207
 	 * @return void
208 208
 	 */
209
-	public function wrapper_container( $which ) {
210
-		if ( 'top' == $which ) {
209
+	public function wrapper_container($which) {
210
+		if ('top' == $which) {
211 211
 			?><div id="woothemes-sensei" class="wrap woothemes-sensei"><?php
212
-		} elseif ( 'bottom' == $which ) {
212
+		} elseif ('bottom' == $which) {
213 213
 			?></div><!--/#woothemes-sensei--><?php
214 214
 		} // End If Statement
215 215
 	} // End wrapper_container()
@@ -220,18 +220,18 @@  discard block
 block discarded – undo
220 220
 	 * @return void
221 221
 	 */
222 222
 	public function learners_default_nav() {
223
-		$title = sprintf( '<a href="%s">%s</a>', esc_url( add_query_arg( array( 'page' => $this->page_slug ), admin_url( 'admin.php' ) ) ), esc_html( $this->name ) );
224
-		if ( isset( $_GET['course_id'] ) ) { 
225
-			$course_id = intval( $_GET['course_id'] );
226
-			$url = add_query_arg( array( 'page' => $this->page_slug, 'course_id' => $course_id, 'view' => 'learners' ), admin_url( 'admin.php' ) );
227
-			$title .= sprintf( '&nbsp;&nbsp;<span class="course-title">&gt;&nbsp;&nbsp;<a href="%s">%s</a></span>', esc_url( $url ), get_the_title( $course_id ) );
223
+		$title = sprintf('<a href="%s">%s</a>', esc_url(add_query_arg(array('page' => $this->page_slug), admin_url('admin.php'))), esc_html($this->name));
224
+		if (isset($_GET['course_id'])) { 
225
+			$course_id = intval($_GET['course_id']);
226
+			$url = add_query_arg(array('page' => $this->page_slug, 'course_id' => $course_id, 'view' => 'learners'), admin_url('admin.php'));
227
+			$title .= sprintf('&nbsp;&nbsp;<span class="course-title">&gt;&nbsp;&nbsp;<a href="%s">%s</a></span>', esc_url($url), get_the_title($course_id));
228 228
 		}
229
-		if ( isset( $_GET['lesson_id'] ) ) { 
230
-			$lesson_id = intval( $_GET['lesson_id'] );
231
-			$title .= '&nbsp;&nbsp;<span class="lesson-title">&gt;&nbsp;&nbsp;' . get_the_title( intval( $lesson_id ) ) . '</span>'; 
229
+		if (isset($_GET['lesson_id'])) { 
230
+			$lesson_id = intval($_GET['lesson_id']);
231
+			$title .= '&nbsp;&nbsp;<span class="lesson-title">&gt;&nbsp;&nbsp;'.get_the_title(intval($lesson_id)).'</span>'; 
232 232
 		}
233 233
 		?>
234
-			<h2><?php echo apply_filters( 'sensei_learners_nav_title', $title ); ?></h2>
234
+			<h2><?php echo apply_filters('sensei_learners_nav_title', $title); ?></h2>
235 235
 		<?php
236 236
 	} // End learners_default_nav()
237 237
 
@@ -240,13 +240,13 @@  discard block
 block discarded – undo
240 240
 		// Parse POST data
241 241
 		$data = $_POST['data'];
242 242
 		$course_data = array();
243
-		parse_str( $data, $course_data );
243
+		parse_str($data, $course_data);
244 244
 
245
-		$course_cat = intval( $course_data['course_cat'] );
245
+		$course_cat = intval($course_data['course_cat']);
246 246
 
247
-		$redirect_url = apply_filters( 'sensei_ajax_redirect_url', add_query_arg( array( 'page' => $this->page_slug, 'course_cat' => $course_cat ), admin_url( 'admin.php' ) ) );
247
+		$redirect_url = apply_filters('sensei_ajax_redirect_url', add_query_arg(array('page' => $this->page_slug, 'course_cat' => $course_cat), admin_url('admin.php')));
248 248
 
249
-		echo esc_url_raw( $redirect_url );
249
+		echo esc_url_raw($redirect_url);
250 250
 		die();
251 251
 	}
252 252
 
@@ -257,38 +257,38 @@  discard block
 block discarded – undo
257 257
 
258 258
 		// Security check
259 259
 		$nonce = '';
260
-		if ( isset($_POST['remove_user_from_post_nonce']) ) {
261
-			$nonce = esc_html( $_POST['remove_user_from_post_nonce'] );
260
+		if (isset($_POST['remove_user_from_post_nonce'])) {
261
+			$nonce = esc_html($_POST['remove_user_from_post_nonce']);
262 262
 		}
263
-		if ( ! wp_verify_nonce( $nonce, 'remove_user_from_post_nonce' ) ) {
264
-			die( $return );
263
+		if ( ! wp_verify_nonce($nonce, 'remove_user_from_post_nonce')) {
264
+			die($return);
265 265
 		}
266 266
 
267 267
 		// Parse POST data
268 268
 		$data = $_POST['data'];
269 269
 		$action_data = array();
270
-		parse_str( $data, $action_data );
270
+		parse_str($data, $action_data);
271 271
 
272
-		if( $action_data['user_id'] && $action_data['post_id'] && $action_data['post_type'] ) {
272
+		if ($action_data['user_id'] && $action_data['post_id'] && $action_data['post_type']) {
273 273
 
274
-			$user_id = intval( $action_data['user_id'] );
275
-			$post_id = intval( $action_data['post_id'] );
276
-			$post_type = sanitize_text_field( $action_data['post_type'] );
277
-            $order_id = sanitize_text_field( $action_data['order_id'] );
274
+			$user_id = intval($action_data['user_id']);
275
+			$post_id = intval($action_data['post_id']);
276
+			$post_type = sanitize_text_field($action_data['post_type']);
277
+            $order_id = sanitize_text_field($action_data['order_id']);
278 278
 
279
-			$user = get_userdata( $user_id );
279
+			$user = get_userdata($user_id);
280 280
 
281
-			switch( $post_type ) {
281
+			switch ($post_type) {
282 282
 
283 283
 				case 'course':
284
-					$removed = Sensei_Utils::sensei_remove_user_from_course( $post_id, $user_id );
284
+					$removed = Sensei_Utils::sensei_remove_user_from_course($post_id, $user_id);
285 285
 
286
-                    if( ! empty( $order_id ) && Sensei_WC::is_woocommerce_active()  ){
286
+                    if ( ! empty($order_id) && Sensei_WC::is_woocommerce_active()) {
287 287
 
288 288
                         $order = new WC_Order($order_id);
289 289
 
290
-                        if (!empty($order)) {
291
-                            $order->update_status( 'cancelled' );
290
+                        if ( ! empty($order)) {
291
+                            $order->update_status('cancelled');
292 292
                         }
293 293
 
294 294
                     }
@@ -296,126 +296,126 @@  discard block
 block discarded – undo
296 296
 				break;
297 297
 
298 298
 				case 'lesson':
299
-					$removed = Sensei_Utils::sensei_remove_user_from_lesson( $post_id, $user_id );
299
+					$removed = Sensei_Utils::sensei_remove_user_from_lesson($post_id, $user_id);
300 300
 				break;
301 301
 
302 302
 			}
303 303
 
304
-			if( $removed ) {
304
+			if ($removed) {
305 305
 				$return = 'removed';
306 306
 			}
307 307
 
308 308
 		}
309 309
 
310
-		die( $return );
310
+		die($return);
311 311
 	}
312 312
 
313 313
 	public function json_search_users() {
314 314
 
315 315
 
316
-		check_ajax_referer( 'search-users', 'security' );
316
+		check_ajax_referer('search-users', 'security');
317 317
 
318
-		$term = sanitize_text_field( stripslashes( $_GET['term'] ) );
318
+		$term = sanitize_text_field(stripslashes($_GET['term']));
319 319
 
320
-		if ( empty( $term ) ) {
320
+		if (empty($term)) {
321 321
 			die();
322 322
 		}
323 323
 
324
-		$default = isset( $_GET['default'] ) ? $_GET['default'] : __( 'None', 'woocommerce' );
324
+		$default = isset($_GET['default']) ? $_GET['default'] : __('None', 'woocommerce');
325 325
 
326
-		$found_users = array( '' => $default );
326
+		$found_users = array('' => $default);
327 327
 
328
-		$users_query = new WP_User_Query( apply_filters( 'sensei_json_search_users_query', array(
328
+		$users_query = new WP_User_Query(apply_filters('sensei_json_search_users_query', array(
329 329
 			'fields'         => 'all',
330 330
 			'orderby'        => 'display_name',
331
-			'search'         => '*' . $term . '*',
332
-			'search_columns' => array( 'ID', 'user_login', 'user_email', 'user_nicename','user_firstname','user_lastname' )
333
-		), $term ) );
331
+			'search'         => '*'.$term.'*',
332
+			'search_columns' => array('ID', 'user_login', 'user_email', 'user_nicename', 'user_firstname', 'user_lastname')
333
+		), $term));
334 334
 
335 335
 		$users = $users_query->get_results();
336 336
 
337
-		if ( $users ) {
338
-			foreach ( $users as $user ) {
339
-                $full_name = Sensei_Student::get_full_name( $user->ID );
337
+		if ($users) {
338
+			foreach ($users as $user) {
339
+                $full_name = Sensei_Student::get_full_name($user->ID);
340 340
 
341
-                if( trim($user->display_name ) == trim( $full_name ) ){
341
+                if (trim($user->display_name) == trim($full_name)) {
342 342
 
343 343
                     $name = $full_name;
344 344
 
345
-                }else{
345
+                } else {
346 346
 
347
-                    $name = $full_name . ' ['. $user->display_name .']';
347
+                    $name = $full_name.' ['.$user->display_name.']';
348 348
 
349 349
                 }
350 350
 
351
-                $found_users[ $user->ID ] = $name  . ' (#' . $user->ID . ' &ndash; ' . sanitize_email( $user->user_email ) . ')';
351
+                $found_users[$user->ID] = $name.' (#'.$user->ID.' &ndash; '.sanitize_email($user->user_email).')';
352 352
 			}
353 353
 		}
354 354
 
355
-		wp_send_json( $found_users );
355
+		wp_send_json($found_users);
356 356
 	}
357 357
 
358 358
 	public function add_new_learners() {
359 359
 
360 360
 		$result = false;
361 361
 
362
-		if( ! isset( $_POST['add_learner_submit'] ) ) return $result;
362
+		if ( ! isset($_POST['add_learner_submit'])) return $result;
363 363
 
364
-		if ( ! isset( $_POST['add_learner_nonce'] ) || ! wp_verify_nonce( $_POST['add_learner_nonce'], 'add_learner_to_sensei' ) ) return $result;
364
+		if ( ! isset($_POST['add_learner_nonce']) || ! wp_verify_nonce($_POST['add_learner_nonce'], 'add_learner_to_sensei')) return $result;
365 365
 
366
-		if( ( ! isset( $_POST['add_user_id'] ) || '' ==  $_POST['add_user_id'] ) || ! isset( $_POST['add_post_type'] ) || ! isset( $_POST['add_course_id'] ) || ! isset( $_POST['add_lesson_id'] ) ) return $result;
366
+		if (( ! isset($_POST['add_user_id']) || '' == $_POST['add_user_id']) || ! isset($_POST['add_post_type']) || ! isset($_POST['add_course_id']) || ! isset($_POST['add_lesson_id'])) return $result;
367 367
 
368 368
 		$post_type = $_POST['add_post_type'];
369
-		$user_id = absint( $_POST['add_user_id'] );
370
-		$course_id = absint( $_POST['add_course_id'] );
369
+		$user_id = absint($_POST['add_user_id']);
370
+		$course_id = absint($_POST['add_course_id']);
371 371
 
372
-		switch( $post_type ) {
372
+		switch ($post_type) {
373 373
 			case 'course':
374 374
 
375
-				$result = Sensei_Utils::user_start_course( $user_id, $course_id );
375
+				$result = Sensei_Utils::user_start_course($user_id, $course_id);
376 376
 
377 377
 				// Complete each lesson if course is set to be completed
378
-				if( isset( $_POST['add_complete_course'] ) && 'yes' == $_POST['add_complete_course'] ) {
378
+				if (isset($_POST['add_complete_course']) && 'yes' == $_POST['add_complete_course']) {
379 379
 
380
-					$lesson_ids = Sensei()->course->course_lessons( $course_id, 'any', 'ids' );
380
+					$lesson_ids = Sensei()->course->course_lessons($course_id, 'any', 'ids');
381 381
 
382
-					foreach( $lesson_ids as $id ) {
383
-						Sensei_Utils::sensei_start_lesson( $id, $user_id, true );
382
+					foreach ($lesson_ids as $id) {
383
+						Sensei_Utils::sensei_start_lesson($id, $user_id, true);
384 384
 					}
385 385
 
386 386
 					// Updates the Course status and it's meta data
387
-					Sensei_Utils::user_complete_course( $course_id, $user_id );
387
+					Sensei_Utils::user_complete_course($course_id, $user_id);
388 388
 
389
-					do_action( 'sensei_user_course_end', $user_id, $course_id );
389
+					do_action('sensei_user_course_end', $user_id, $course_id);
390 390
 				}
391 391
 
392 392
 			break;
393 393
 
394 394
 			case 'lesson':
395
-                $lesson_id = absint( $_POST['add_lesson_id'] );
395
+                $lesson_id = absint($_POST['add_lesson_id']);
396 396
 				$complete = false;
397
-				if( isset( $_POST['add_complete_lesson'] ) && 'yes' == $_POST['add_complete_lesson'] ) {
397
+				if (isset($_POST['add_complete_lesson']) && 'yes' == $_POST['add_complete_lesson']) {
398 398
 					$complete = true;
399 399
 				}
400 400
 
401
-				$result = Sensei_Utils::sensei_start_lesson( $lesson_id, $user_id, $complete );
401
+				$result = Sensei_Utils::sensei_start_lesson($lesson_id, $user_id, $complete);
402 402
 
403 403
 				// Updates the Course status and it's meta data
404
-				Sensei_Utils::user_complete_course( $course_id, $user_id );
404
+				Sensei_Utils::user_complete_course($course_id, $user_id);
405 405
 
406 406
 			break;
407 407
 		}
408 408
 
409 409
 		// Set redirect URL after adding user to course/lesson
410
-		$query_args = array( 'page' => $this->page_slug, 'view' => 'learners' );
410
+		$query_args = array('page' => $this->page_slug, 'view' => 'learners');
411 411
 
412
-		if( $result ) {
412
+		if ($result) {
413 413
 
414
-			if( $course_id ) {
414
+			if ($course_id) {
415 415
 				$query_args['course_id'] = $course_id;
416 416
 			}
417 417
 
418
-			if( $lesson_id ) {
418
+			if ($lesson_id) {
419 419
 				$query_args['lesson_id'] = $lesson_id;
420 420
 			}
421 421
 
@@ -425,23 +425,23 @@  discard block
 block discarded – undo
425 425
 			$query_args['message'] = 'error';
426 426
 		}
427 427
 
428
-		$redirect_url = apply_filters( 'sensei_learners_add_learner_redirect_url', add_query_arg( $query_args, admin_url( 'admin.php' ) ) );
428
+		$redirect_url = apply_filters('sensei_learners_add_learner_redirect_url', add_query_arg($query_args, admin_url('admin.php')));
429 429
 
430
-		wp_safe_redirect( esc_url_raw( $redirect_url ) );
430
+		wp_safe_redirect(esc_url_raw($redirect_url));
431 431
 		exit;
432 432
 	}
433 433
 
434 434
 	public function add_learner_notices() {
435
-		if( isset( $_GET['page'] ) && $this->page_slug == $_GET['page'] && isset( $_GET['message'] ) && $_GET['message'] ) {
436
-			if( 'success' == $_GET['message'] ) {
435
+		if (isset($_GET['page']) && $this->page_slug == $_GET['page'] && isset($_GET['message']) && $_GET['message']) {
436
+			if ('success' == $_GET['message']) {
437 437
 				$msg = array(
438 438
 					'updated',
439
-					__( 'Learner added successfully!', 'woothemes-sensei' ),
439
+					__('Learner added successfully!', 'woothemes-sensei'),
440 440
 				);
441 441
 			} else {
442 442
 				$msg = array(
443 443
 					'error',
444
-					__( 'Error adding learner.', 'woothemes-sensei' ),
444
+					__('Error adding learner.', 'woothemes-sensei'),
445 445
 				);
446 446
 			}
447 447
 			?>
@@ -464,9 +464,9 @@  discard block
 block discarded – undo
464 464
      *
465 465
      * @return string $full_name
466 466
      */
467
-    public function get_learner_full_name( $user_id ){
467
+    public function get_learner_full_name($user_id) {
468 468
 
469
-        return Sensei_Student::get_full_name( $user_id );
469
+        return Sensei_Student::get_full_name($user_id);
470 470
 
471 471
     } // end get_learner_full_name
472 472
 
@@ -477,4 +477,4 @@  discard block
 block discarded – undo
477 477
  * for backward compatibility
478 478
  * @since 1.9.0
479 479
  */
480
-class WooThemes_Sensei_Learners extends Sensei_Learner_Management{}
480
+class WooThemes_Sensei_Learners extends Sensei_Learner_Management {}
Please login to merge, or discard this patch.
Braces   +14 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,5 +1,8 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
2
+if ( ! defined( 'ABSPATH' ) ) {
3
+	exit;
4
+}
5
+// Exit if accessed directly
3 6
 
4 7
 /**
5 8
  * Sensei Learners Class
@@ -342,7 +345,7 @@  discard block
 block discarded – undo
342 345
 
343 346
                     $name = $full_name;
344 347
 
345
-                }else{
348
+                } else{
346 349
 
347 350
                     $name = $full_name . ' ['. $user->display_name .']';
348 351
 
@@ -359,11 +362,17 @@  discard block
 block discarded – undo
359 362
 
360 363
 		$result = false;
361 364
 
362
-		if( ! isset( $_POST['add_learner_submit'] ) ) return $result;
365
+		if( ! isset( $_POST['add_learner_submit'] ) ) {
366
+			return $result;
367
+		}
363 368
 
364
-		if ( ! isset( $_POST['add_learner_nonce'] ) || ! wp_verify_nonce( $_POST['add_learner_nonce'], 'add_learner_to_sensei' ) ) return $result;
369
+		if ( ! isset( $_POST['add_learner_nonce'] ) || ! wp_verify_nonce( $_POST['add_learner_nonce'], 'add_learner_to_sensei' ) ) {
370
+			return $result;
371
+		}
365 372
 
366
-		if( ( ! isset( $_POST['add_user_id'] ) || '' ==  $_POST['add_user_id'] ) || ! isset( $_POST['add_post_type'] ) || ! isset( $_POST['add_course_id'] ) || ! isset( $_POST['add_lesson_id'] ) ) return $result;
373
+		if( ( ! isset( $_POST['add_user_id'] ) || '' ==  $_POST['add_user_id'] ) || ! isset( $_POST['add_post_type'] ) || ! isset( $_POST['add_course_id'] ) || ! isset( $_POST['add_lesson_id'] ) ) {
374
+			return $result;
375
+		}
367 376
 
368 377
 		$post_type = $_POST['add_post_type'];
369 378
 		$user_id = absint( $_POST['add_user_id'] );
Please login to merge, or discard this patch.
includes/class-sensei-learner-profiles.php 2 patches
Indentation   +47 added lines, -47 removed lines patch added patch discarded remove patch
@@ -13,10 +13,10 @@  discard block
 block discarded – undo
13 13
  * @since 1.4.0
14 14
  */
15 15
 class Sensei_Learner_Profiles {
16
-    /**
17
-     * @var string
18
-     */
19
-    private $profile_url_base;
16
+	/**
17
+	 * @var string
18
+	 */
19
+	private $profile_url_base;
20 20
 
21 21
 	/**
22 22
 	 * Constructor.
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
 		if( isset( $wp_query->query_vars['learner_profile'] ) ) {
64 64
 			$learner_user = get_user_by( 'login', $wp_query->query_vars['learner_profile'] );
65 65
 
66
-            $name = Sensei_Student::get_full_name( $learner_user->ID );
66
+			$name = Sensei_Student::get_full_name( $learner_user->ID );
67 67
 
68 68
 			$title = apply_filters( 'sensei_learner_profile_courses_heading', sprintf( __( 'Courses %s is taking', 'woothemes-sensei' ), $name ) ) . ' ' . $sep . ' ';
69 69
 		}
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
 
112 112
 			if( isset( $wp_query->query_vars['learner_profile'] ) ) {
113 113
 
114
-                Sensei_Templates::get_template( 'learner-profile/learner-info.php' );
114
+				Sensei_Templates::get_template( 'learner-profile/learner-info.php' );
115 115
 
116 116
 			}
117 117
 		}
@@ -141,43 +141,43 @@  discard block
 block discarded – undo
141 141
 	 */
142 142
 	public static function user_info( $user ) {
143 143
 
144
-        /**
145
-         * This hooke fires inside the Sensei_Learner_Profiles::user_info function.
146
-         * just before the htmls is generated.
147
-         * @since 1.0.0
148
-         */
149
-        do_action( 'sensei_learner_profile_info', $user );
150
-
151
-        /**
152
-         * This filter runs inside the Sensei_Learner_Profiles::user_info function.
153
-         * Here you can change the user avatar.
154
-         *
155
-         * @since 1.0.0
156
-         *
157
-         * @param false|string `<img>` $user_avatar
158
-         */
144
+		/**
145
+		 * This hooke fires inside the Sensei_Learner_Profiles::user_info function.
146
+		 * just before the htmls is generated.
147
+		 * @since 1.0.0
148
+		 */
149
+		do_action( 'sensei_learner_profile_info', $user );
150
+
151
+		/**
152
+		 * This filter runs inside the Sensei_Learner_Profiles::user_info function.
153
+		 * Here you can change the user avatar.
154
+		 *
155
+		 * @since 1.0.0
156
+		 *
157
+		 * @param false|string `<img>` $user_avatar
158
+		 */
159 159
 		$learner_avatar = apply_filters( 'sensei_learner_profile_info_avatar', get_avatar( $user->ID, 120 ), $user->ID );
160 160
 
161
-        /**
162
-         * This filter runs inside the Sensei_Learner_Profiles::user_info function.
163
-         * Here you can change the learner profile user display name.
164
-         * @since 1.0.0
165
-         *
166
-         * @param string $user_display_name
167
-         * @param string $user_id
168
-         */
161
+		/**
162
+		 * This filter runs inside the Sensei_Learner_Profiles::user_info function.
163
+		 * Here you can change the learner profile user display name.
164
+		 * @since 1.0.0
165
+		 *
166
+		 * @param string $user_display_name
167
+		 * @param string $user_id
168
+		 */
169 169
 		$learner_name = apply_filters( 'sensei_learner_profile_info_name', $user->display_name, $user->ID );
170 170
 
171
-        /**
172
-         * This filter runs inside the Sensei_Learner_Profiles::user_info function.
173
-         * With this filter can change the users description on the learner user info
174
-         * output.
175
-         *
176
-         * @since 1.0.0
177
-         *
178
-         * @param string $user_description
179
-         * @param string $user_id
180
-         */
171
+		/**
172
+		 * This filter runs inside the Sensei_Learner_Profiles::user_info function.
173
+		 * With this filter can change the users description on the learner user info
174
+		 * output.
175
+		 *
176
+		 * @since 1.0.0
177
+		 *
178
+		 * @param string $user_description
179
+		 * @param string $user_id
180
+		 */
181 181
 		$learner_bio = apply_filters( 'sensei_learner_profile_info_bio', $user->description, $user->ID );
182 182
 		?>
183 183
 
@@ -211,16 +211,16 @@  discard block
 block discarded – undo
211 211
 		return $classes;
212 212
 	}
213 213
 
214
-    /**
215
-     * Deprecate the deprecate_sensei_learner_profile_content hook
216
-     *
217
-     * @since 1.9.0
218
-     */
219
-    public static function deprecate_sensei_learner_profile_content_hook(){
214
+	/**
215
+	 * Deprecate the deprecate_sensei_learner_profile_content hook
216
+	 *
217
+	 * @since 1.9.0
218
+	 */
219
+	public static function deprecate_sensei_learner_profile_content_hook(){
220 220
 
221
-        sensei_do_deprecated_action( 'sensei_learner_profile_content', '1.9.0', 'sensei_learner_profile_content_before' );
221
+		sensei_do_deprecated_action( 'sensei_learner_profile_content', '1.9.0', 'sensei_learner_profile_content_before' );
222 222
 
223
-    }
223
+	}
224 224
 
225 225
 
226 226
 } // End Class
Please login to merge, or discard this patch.
Spacing   +40 added lines, -40 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
2
+if ( ! defined('ABSPATH')) exit; // Exit if accessed directly
3 3
 
4 4
 /**
5 5
  * Sensei Learner Profiles Class
@@ -22,20 +22,20 @@  discard block
 block discarded – undo
22 22
 	 * Constructor.
23 23
 	 * @since  1.4.0
24 24
 	 */
25
-	public function __construct () {
25
+	public function __construct() {
26 26
 
27 27
 		// Setup learner profile URL base
28
-		$this->profile_url_base = apply_filters( 'sensei_learner_profiles_url_base', __( 'learner', 'woothemes-sensei') );
28
+		$this->profile_url_base = apply_filters('sensei_learner_profiles_url_base', __('learner', 'woothemes-sensei'));
29 29
 
30 30
 		// Setup permalink structure for learner profiles
31
-		add_action( 'init', array( $this, 'setup_permastruct' ) );
32
-		add_filter( 'wp_title', array( $this, 'page_title' ), 10, 2 );
31
+		add_action('init', array($this, 'setup_permastruct'));
32
+		add_filter('wp_title', array($this, 'page_title'), 10, 2);
33 33
 
34 34
 		// Set heading for courses section of learner profiles
35
-		add_action( 'sensei_learner_profile_info', array( $this, 'learner_profile_courses_heading' ), 30, 1 );
35
+		add_action('sensei_learner_profile_info', array($this, 'learner_profile_courses_heading'), 30, 1);
36 36
 
37 37
 		// Add class to body tag
38
-		add_filter( 'body_class', array( $this, 'learner_profile_body_class' ), 10, 1 );
38
+		add_filter('body_class', array($this, 'learner_profile_body_class'), 10, 1);
39 39
 	} // End __construct()
40 40
 
41 41
 	/**
@@ -46,9 +46,9 @@  discard block
 block discarded – undo
46 46
 	public function setup_permastruct() {
47 47
 
48 48
 
49
-		if( isset( Sensei()->settings->settings[ 'learner_profile_enable' ] ) && Sensei()->settings->settings[ 'learner_profile_enable' ] ) {
50
-			add_rewrite_rule( '^' . $this->profile_url_base . '/([^/]*)/?', 'index.php?learner_profile=$matches[1]', 'top' );
51
-			add_rewrite_tag( '%learner_profile%', '([^&]+)' );
49
+		if (isset(Sensei()->settings->settings['learner_profile_enable']) && Sensei()->settings->settings['learner_profile_enable']) {
50
+			add_rewrite_rule('^'.$this->profile_url_base.'/([^/]*)/?', 'index.php?learner_profile=$matches[1]', 'top');
51
+			add_rewrite_tag('%learner_profile%', '([^&]+)');
52 52
 		}
53 53
 	}
54 54
 
@@ -58,14 +58,14 @@  discard block
 block discarded – undo
58 58
 	 * @param  string $sep   Seeparator string
59 59
 	 * @return string        Modified title
60 60
 	 */
61
-	public function page_title( $title, $sep = null ) {
61
+	public function page_title($title, $sep = null) {
62 62
 		global $wp_query;
63
-		if( isset( $wp_query->query_vars['learner_profile'] ) ) {
64
-			$learner_user = get_user_by( 'login', $wp_query->query_vars['learner_profile'] );
63
+		if (isset($wp_query->query_vars['learner_profile'])) {
64
+			$learner_user = get_user_by('login', $wp_query->query_vars['learner_profile']);
65 65
 
66
-            $name = Sensei_Student::get_full_name( $learner_user->ID );
66
+            $name = Sensei_Student::get_full_name($learner_user->ID);
67 67
 
68
-			$title = apply_filters( 'sensei_learner_profile_courses_heading', sprintf( __( 'Courses %s is taking', 'woothemes-sensei' ), $name ) ) . ' ' . $sep . ' ';
68
+			$title = apply_filters('sensei_learner_profile_courses_heading', sprintf(__('Courses %s is taking', 'woothemes-sensei'), $name)).' '.$sep.' ';
69 69
 		}
70 70
 		return $title;
71 71
 	}
@@ -76,23 +76,23 @@  discard block
 block discarded – undo
76 76
 	 * @param  integer $user_id ID of user
77 77
 	 * @return string           The learner profile permalink
78 78
 	 */
79
-	public function get_permalink( $user_id = 0 ) {
79
+	public function get_permalink($user_id = 0) {
80 80
 		$user = false;
81
-		if( $user_id == 0 ) {
81
+		if ($user_id == 0) {
82 82
 			global $current_user;
83 83
 			wp_get_current_user();
84 84
 			$user = $current_user;
85 85
 		} else {
86
-			$user = get_userdata( $user_id );
86
+			$user = get_userdata($user_id);
87 87
 		}
88 88
 
89 89
 		$permalink = '';
90 90
 
91
-		if( $user ) {
92
-			if ( get_option('permalink_structure') ) {
93
-				$permalink = trailingslashit( get_site_url() ) . $this->profile_url_base . '/' . $user->user_nicename;
91
+		if ($user) {
92
+			if (get_option('permalink_structure')) {
93
+				$permalink = trailingslashit(get_site_url()).$this->profile_url_base.'/'.$user->user_nicename;
94 94
 			} else {
95
-				$permalink = trailingslashit( get_site_url() ) . '?learner_profile=' . $user->user_nicename;
95
+				$permalink = trailingslashit(get_site_url()).'?learner_profile='.$user->user_nicename;
96 96
 			}
97 97
 		}
98 98
 
@@ -105,13 +105,13 @@  discard block
 block discarded – undo
105 105
 	 * @return void
106 106
 	 */
107 107
 	public function content() {
108
-		global $wp_query,  $learner_user, $current_user;
108
+		global $wp_query, $learner_user, $current_user;
109 109
 
110
-		if( isset( Sensei()->settings->settings[ 'learner_profile_enable' ] ) && Sensei()->settings->settings[ 'learner_profile_enable' ] ) {
110
+		if (isset(Sensei()->settings->settings['learner_profile_enable']) && Sensei()->settings->settings['learner_profile_enable']) {
111 111
 
112
-			if( isset( $wp_query->query_vars['learner_profile'] ) ) {
112
+			if (isset($wp_query->query_vars['learner_profile'])) {
113 113
 
114
-                Sensei_Templates::get_template( 'learner-profile/learner-info.php' );
114
+                Sensei_Templates::get_template('learner-profile/learner-info.php');
115 115
 
116 116
 			}
117 117
 		}
@@ -123,14 +123,14 @@  discard block
 block discarded – undo
123 123
 	 * @param  object $user Queried user object
124 124
 	 * @return void
125 125
 	 */
126
-	public function learner_profile_courses_heading( $user ) {
127
-		if( strlen( $user->first_name ) > 0 ) {
126
+	public function learner_profile_courses_heading($user) {
127
+		if (strlen($user->first_name) > 0) {
128 128
 			$name = $user->first_name;
129 129
 		} else {
130 130
 			$name = $user->display_name;
131 131
 		}
132
-		$name = apply_filters( 'sensei_learner_profile_courses_heading_name', $name );
133
-		echo '<h2>' . apply_filters( 'sensei_learner_profile_courses_heading', sprintf( __( 'Courses %s is taking', 'woothemes-sensei' ), $name ) ) . '</h2>';
132
+		$name = apply_filters('sensei_learner_profile_courses_heading_name', $name);
133
+		echo '<h2>'.apply_filters('sensei_learner_profile_courses_heading', sprintf(__('Courses %s is taking', 'woothemes-sensei'), $name)).'</h2>';
134 134
 	}
135 135
 
136 136
 	/**
@@ -139,14 +139,14 @@  discard block
 block discarded – undo
139 139
 	 * @param  object $user Queried user object
140 140
 	 * @return void
141 141
 	 */
142
-	public static function user_info( $user ) {
142
+	public static function user_info($user) {
143 143
 
144 144
         /**
145 145
          * This hooke fires inside the Sensei_Learner_Profiles::user_info function.
146 146
          * just before the htmls is generated.
147 147
          * @since 1.0.0
148 148
          */
149
-        do_action( 'sensei_learner_profile_info', $user );
149
+        do_action('sensei_learner_profile_info', $user);
150 150
 
151 151
         /**
152 152
          * This filter runs inside the Sensei_Learner_Profiles::user_info function.
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
          *
157 157
          * @param false|string `<img>` $user_avatar
158 158
          */
159
-		$learner_avatar = apply_filters( 'sensei_learner_profile_info_avatar', get_avatar( $user->ID, 120 ), $user->ID );
159
+		$learner_avatar = apply_filters('sensei_learner_profile_info_avatar', get_avatar($user->ID, 120), $user->ID);
160 160
 
161 161
         /**
162 162
          * This filter runs inside the Sensei_Learner_Profiles::user_info function.
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
          * @param string $user_display_name
167 167
          * @param string $user_id
168 168
          */
169
-		$learner_name = apply_filters( 'sensei_learner_profile_info_name', $user->display_name, $user->ID );
169
+		$learner_name = apply_filters('sensei_learner_profile_info_name', $user->display_name, $user->ID);
170 170
 
171 171
         /**
172 172
          * This filter runs inside the Sensei_Learner_Profiles::user_info function.
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
          * @param string $user_description
179 179
          * @param string $user_id
180 180
          */
181
-		$learner_bio = apply_filters( 'sensei_learner_profile_info_bio', $user->description, $user->ID );
181
+		$learner_bio = apply_filters('sensei_learner_profile_info_bio', $user->description, $user->ID);
182 182
 		?>
183 183
 
184 184
 		<div id="learner-info">
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
 
190 190
 				<h2><?php echo $learner_name; ?></h2>
191 191
 
192
-				<div class="description"><?php echo wpautop( $learner_bio ); ?></div>
192
+				<div class="description"><?php echo wpautop($learner_bio); ?></div>
193 193
 
194 194
 			</div>
195 195
 
@@ -203,9 +203,9 @@  discard block
 block discarded – undo
203 203
 	 * @param  array $classes Existing classes
204 204
 	 * @return array          Modified classes
205 205
 	 */
206
-	public function learner_profile_body_class( $classes ) {
206
+	public function learner_profile_body_class($classes) {
207 207
 		global $wp_query;
208
-		if( isset( $wp_query->query_vars['learner_profile'] ) ) {
208
+		if (isset($wp_query->query_vars['learner_profile'])) {
209 209
 			$classes[] = 'learner-profile';
210 210
 		}
211 211
 		return $classes;
@@ -216,9 +216,9 @@  discard block
 block discarded – undo
216 216
      *
217 217
      * @since 1.9.0
218 218
      */
219
-    public static function deprecate_sensei_learner_profile_content_hook(){
219
+    public static function deprecate_sensei_learner_profile_content_hook() {
220 220
 
221
-        sensei_do_deprecated_action( 'sensei_learner_profile_content', '1.9.0', 'sensei_learner_profile_content_before' );
221
+        sensei_do_deprecated_action('sensei_learner_profile_content', '1.9.0', 'sensei_learner_profile_content_before');
222 222
 
223 223
     }
224 224
 
Please login to merge, or discard this patch.
includes/class-sensei-analysis-lesson-list-table.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -234,9 +234,9 @@
 block discarded – undo
234 234
 		}
235 235
 
236 236
 		// Output users data
237
-        $user_name = Sensei_Student::get_full_name( $item->user_id );
237
+		$user_name = Sensei_Student::get_full_name( $item->user_id );
238 238
 
239
-        if ( !$this->csv_output ) {
239
+		if ( !$this->csv_output ) {
240 240
 			$url = add_query_arg( array( 'page' => $this->page_slug, 'user_id' => $item->user_id, 'course_id' => $this->course_id ), admin_url( 'admin.php' ) );
241 241
 
242 242
 			$user_name = '<strong><a class="row-title" href="' . esc_url( $url ) . '">' . $user_name . '</a></strong>';
Please login to merge, or discard this patch.
Spacing   +95 added lines, -95 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
2
+if ( ! defined('ABSPATH')) exit; // Exit if accessed directly
3 3
 
4 4
 /**
5 5
  * Sensei Analysis Lesson List Table Class
@@ -22,18 +22,18 @@  discard block
 block discarded – undo
22 22
 	 * @since  1.2.0
23 23
 	 * @return  void
24 24
 	 */
25
-	public function __construct ( $lesson_id = 0 ) {
26
-		$this->lesson_id = intval( $lesson_id );
27
-		$this->course_id = intval( get_post_meta( $this->lesson_id, '_lesson_course', true ) );
25
+	public function __construct($lesson_id = 0) {
26
+		$this->lesson_id = intval($lesson_id);
27
+		$this->course_id = intval(get_post_meta($this->lesson_id, '_lesson_course', true));
28 28
 
29 29
 		// Load Parent token into constructor
30
-		parent::__construct( 'analysis_lesson' );
30
+		parent::__construct('analysis_lesson');
31 31
 
32 32
 		// Actions
33
-		add_action( 'sensei_before_list_table', array( $this, 'data_table_header' ) );
34
-		add_action( 'sensei_after_list_table', array( $this, 'data_table_footer' ) );
33
+		add_action('sensei_before_list_table', array($this, 'data_table_header'));
34
+		add_action('sensei_after_list_table', array($this, 'data_table_footer'));
35 35
 
36
-		add_filter( 'sensei_list_table_search_button_text', array( $this, 'search_button' ) );
36
+		add_filter('sensei_list_table_search_button_text', array($this, 'search_button'));
37 37
 	} // End __construct()
38 38
 
39 39
 	/**
@@ -43,13 +43,13 @@  discard block
 block discarded – undo
43 43
 	 */
44 44
 	function get_columns() {
45 45
 		$columns = array(
46
-			'title' => __( 'Learner', 'woothemes-sensei' ),
47
-			'started' => __( 'Date Started', 'woothemes-sensei' ),
48
-			'completed' => __( 'Date Completed', 'woothemes-sensei' ),
49
-			'status' => __( 'Status', 'woothemes-sensei' ),
50
-			'grade' => __( 'Grade', 'woothemes-sensei' ),
46
+			'title' => __('Learner', 'woothemes-sensei'),
47
+			'started' => __('Date Started', 'woothemes-sensei'),
48
+			'completed' => __('Date Completed', 'woothemes-sensei'),
49
+			'status' => __('Status', 'woothemes-sensei'),
50
+			'grade' => __('Grade', 'woothemes-sensei'),
51 51
 		);
52
-		$columns = apply_filters( 'sensei_analysis_lesson_columns', $columns, $this );
52
+		$columns = apply_filters('sensei_analysis_lesson_columns', $columns, $this);
53 53
 		return $columns;
54 54
 	}
55 55
 
@@ -60,13 +60,13 @@  discard block
 block discarded – undo
60 60
 	 */
61 61
 	function get_sortable_columns() {
62 62
 		$columns = array(
63
-			'title' => array( 'title', false ),
64
-			'started' => array( 'started', false ),
65
-			'completed' => array( 'completed', false ),
66
-			'status' => array( 'status', false ),
67
-			'grade' => array( 'grade', false ),
63
+			'title' => array('title', false),
64
+			'started' => array('started', false),
65
+			'completed' => array('completed', false),
66
+			'status' => array('status', false),
67
+			'grade' => array('grade', false),
68 68
 		);
69
-		$columns = apply_filters( 'sensei_analysis_lesson_columns_sortable', $columns, $this );
69
+		$columns = apply_filters('sensei_analysis_lesson_columns_sortable', $columns, $this);
70 70
 		return $columns;
71 71
 	}
72 72
 
@@ -80,32 +80,32 @@  discard block
 block discarded – undo
80 80
 
81 81
 		// Handle orderby (needs work)
82 82
 		$orderby = '';
83
-		if ( !empty( $_GET['orderby'] ) ) {
84
-			if ( array_key_exists( esc_html( $_GET['orderby'] ), $this->get_sortable_columns() ) ) {
85
-				$orderby = esc_html( $_GET['orderby'] );
83
+		if ( ! empty($_GET['orderby'])) {
84
+			if (array_key_exists(esc_html($_GET['orderby']), $this->get_sortable_columns())) {
85
+				$orderby = esc_html($_GET['orderby']);
86 86
 			} // End If Statement
87 87
 		}
88 88
 
89 89
 		// Handle order
90 90
 		$order = 'ASC';
91
-		if ( !empty( $_GET['order'] ) ) {
92
-			$order = ( 'ASC' == strtoupper($_GET['order']) ) ? 'ASC' : 'DESC';
91
+		if ( ! empty($_GET['order'])) {
92
+			$order = ('ASC' == strtoupper($_GET['order'])) ? 'ASC' : 'DESC';
93 93
 		}
94 94
 
95 95
 		// Handle search, need 4.1 version of WP to be able to restrict statuses to known post_ids
96 96
 		$search = false;
97
-		if ( !empty( $_GET['s'] ) ) {
98
-			$search = esc_html( $_GET['s'] );
97
+		if ( ! empty($_GET['s'])) {
98
+			$search = esc_html($_GET['s']);
99 99
 		} // End If Statement
100 100
 		$this->search = $search;
101 101
 
102
-		$per_page = $this->get_items_per_page( 'sensei_comments_per_page' );
103
-		$per_page = apply_filters( 'sensei_comments_per_page', $per_page, 'sensei_comments' );
102
+		$per_page = $this->get_items_per_page('sensei_comments_per_page');
103
+		$per_page = apply_filters('sensei_comments_per_page', $per_page, 'sensei_comments');
104 104
 
105 105
 		$paged = $this->get_pagenum();
106 106
 		$offset = 0;
107
-		if ( !empty($paged) ) {
108
-			$offset = $per_page * ( $paged - 1 );
107
+		if ( ! empty($paged)) {
108
+			$offset = $per_page * ($paged - 1);
109 109
 		} // End If Statement
110 110
 
111 111
 		$args = array(
@@ -114,19 +114,19 @@  discard block
 block discarded – undo
114 114
 			'orderby' => $orderby,
115 115
 			'order' => $order,
116 116
 		);
117
-		if ( $this->search ) {
117
+		if ($this->search) {
118 118
 			$args['search'] = $this->search;
119 119
 		} // End If Statement
120 120
 
121
-		$this->items = $this->get_lesson_statuses( $args );
121
+		$this->items = $this->get_lesson_statuses($args);
122 122
 
123 123
 		$total_items = $this->total_items;
124
-		$total_pages = ceil( $total_items / $per_page );
125
-		$this->set_pagination_args( array(
124
+		$total_pages = ceil($total_items / $per_page);
125
+		$this->set_pagination_args(array(
126 126
 			'total_items' => $total_items,
127 127
 			'total_pages' => $total_pages,
128 128
 			'per_page' => $per_page
129
-		) );
129
+		));
130 130
 	}
131 131
 
132 132
 	/**
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
 	 * @since  1.7.0
135 135
 	 * @return data
136 136
 	 */
137
-	public function generate_report( $report ) {
137
+	public function generate_report($report) {
138 138
 
139 139
 		$data = array();
140 140
 
@@ -142,22 +142,22 @@  discard block
 block discarded – undo
142 142
 
143 143
 		// Handle orderby
144 144
 		$orderby = '';
145
-		if ( !empty( $_GET['orderby'] ) ) {
146
-			if ( array_key_exists( esc_html( $_GET['orderby'] ), $this->get_sortable_columns() ) ) {
147
-				$orderby = esc_html( $_GET['orderby'] );
145
+		if ( ! empty($_GET['orderby'])) {
146
+			if (array_key_exists(esc_html($_GET['orderby']), $this->get_sortable_columns())) {
147
+				$orderby = esc_html($_GET['orderby']);
148 148
 			} // End If Statement
149 149
 		}
150 150
 
151 151
 		// Handle order
152 152
 		$order = 'ASC';
153
-		if ( !empty( $_GET['order'] ) ) {
154
-			$order = ( 'ASC' == strtoupper($_GET['order']) ) ? 'ASC' : 'DESC';
153
+		if ( ! empty($_GET['order'])) {
154
+			$order = ('ASC' == strtoupper($_GET['order'])) ? 'ASC' : 'DESC';
155 155
 		}
156 156
 
157 157
 		// Handle search
158 158
 		$search = false;
159
-		if ( !empty( $_GET['s'] ) ) {
160
-			$search = esc_html( $_GET['s'] );
159
+		if ( ! empty($_GET['s'])) {
160
+			$search = esc_html($_GET['s']);
161 161
 		} // End If Statement
162 162
 		$this->search = $search;
163 163
 
@@ -165,23 +165,23 @@  discard block
 block discarded – undo
165 165
 			'orderby' => $orderby,
166 166
 			'order' => $order,
167 167
 		);
168
-		if ( $this->search ) {
168
+		if ($this->search) {
169 169
 			$args['search'] = $this->search;
170 170
 		} // End If Statement
171 171
 
172 172
 		// Start the csv with the column headings
173 173
 		$column_headers = array();
174 174
 		$columns = $this->get_columns();
175
-		foreach( $columns AS $key => $title ) {
175
+		foreach ($columns AS $key => $title) {
176 176
 			$column_headers[] = $title;
177 177
 		}
178 178
 		$data[] = $column_headers;
179 179
 
180
-		$this->items = $this->get_lesson_statuses( $args );
180
+		$this->items = $this->get_lesson_statuses($args);
181 181
 
182 182
 		// Process each row
183
-		foreach( $this->items AS $item) {
184
-			$data[] = $this->get_row_data( $item );
183
+		foreach ($this->items AS $item) {
184
+			$data[] = $this->get_row_data($item);
185 185
 		}
186 186
 
187 187
 		return $data;
@@ -193,64 +193,64 @@  discard block
 block discarded – undo
193 193
 	 * @since  1.7.0
194 194
 	 * @param object $item The current item
195 195
 	 */
196
-	protected function get_row_data( $item ) {
196
+	protected function get_row_data($item) {
197 197
 
198
-		$user_start_date = get_comment_meta( $item->comment_ID, 'start', true );
198
+		$user_start_date = get_comment_meta($item->comment_ID, 'start', true);
199 199
 		$user_end_date = $item->comment_date;
200 200
 		$status_class = $grade = '';
201 201
 
202
-		if( 'complete' == $item->comment_approved ) {
203
-			$status =  __( 'Completed', 'woothemes-sensei' );
202
+		if ('complete' == $item->comment_approved) {
203
+			$status = __('Completed', 'woothemes-sensei');
204 204
 			$status_class = 'graded';
205 205
 
206
-			$grade =  __( 'No Grade', 'woothemes-sensei' );
206
+			$grade = __('No Grade', 'woothemes-sensei');
207 207
 		}
208
-		elseif( 'graded' == $item->comment_approved ) {
209
-			$status = __( 'Graded', 'woothemes-sensei' ) ;
208
+		elseif ('graded' == $item->comment_approved) {
209
+			$status = __('Graded', 'woothemes-sensei');
210 210
 			$status_class = 'graded';
211 211
 
212
-			$grade = get_comment_meta( $item->comment_ID, 'grade', true);
212
+			$grade = get_comment_meta($item->comment_ID, 'grade', true);
213 213
 		}
214
-		elseif( 'passed' == $item->comment_approved ) {
215
-			$status =  __( 'Passed', 'woothemes-sensei' );
214
+		elseif ('passed' == $item->comment_approved) {
215
+			$status = __('Passed', 'woothemes-sensei');
216 216
 			$status_class = 'graded';
217 217
 
218
-			$grade = get_comment_meta( $item->comment_ID, 'grade', true);
218
+			$grade = get_comment_meta($item->comment_ID, 'grade', true);
219 219
 		}
220
-		elseif( 'failed' == $item->comment_approved ) {
221
-			$status = __( 'Failed', 'woothemes-sensei' );
220
+		elseif ('failed' == $item->comment_approved) {
221
+			$status = __('Failed', 'woothemes-sensei');
222 222
 			$status_class = 'failed';
223 223
 
224
-			$grade = get_comment_meta( $item->comment_ID, 'grade', true);
224
+			$grade = get_comment_meta($item->comment_ID, 'grade', true);
225 225
 		}
226
-		elseif( 'ungraded' == $item->comment_approved ) {
227
-			$status =  __( 'Ungraded', 'woothemes-sensei' );
226
+		elseif ('ungraded' == $item->comment_approved) {
227
+			$status = __('Ungraded', 'woothemes-sensei');
228 228
 			$status_class = 'ungraded';
229 229
 
230 230
 		}
231 231
 		else {
232
-			$status =  __( 'In Progress', 'woothemes-sensei' );
232
+			$status = __('In Progress', 'woothemes-sensei');
233 233
 			$user_end_date = '';
234 234
 		}
235 235
 
236 236
 		// Output users data
237
-        $user_name = Sensei_Student::get_full_name( $item->user_id );
237
+        $user_name = Sensei_Student::get_full_name($item->user_id);
238 238
 
239
-        if ( !$this->csv_output ) {
240
-			$url = add_query_arg( array( 'page' => $this->page_slug, 'user_id' => $item->user_id, 'course_id' => $this->course_id ), admin_url( 'admin.php' ) );
239
+        if ( ! $this->csv_output) {
240
+			$url = add_query_arg(array('page' => $this->page_slug, 'user_id' => $item->user_id, 'course_id' => $this->course_id), admin_url('admin.php'));
241 241
 
242
-			$user_name = '<strong><a class="row-title" href="' . esc_url( $url ) . '">' . $user_name . '</a></strong>';
243
-			$status = sprintf( '<span class="%s">%s</span>', $item->comment_approved, $status );
244
-			if ( is_numeric($grade) ) {
242
+			$user_name = '<strong><a class="row-title" href="'.esc_url($url).'">'.$user_name.'</a></strong>';
243
+			$status = sprintf('<span class="%s">%s</span>', $item->comment_approved, $status);
244
+			if (is_numeric($grade)) {
245 245
 				$grade .= '%';
246 246
 			}
247 247
 		} // End If Statement
248
-		$column_data = apply_filters( 'sensei_analysis_lesson_column_data', array( 'title' => $user_name,
248
+		$column_data = apply_filters('sensei_analysis_lesson_column_data', array('title' => $user_name,
249 249
 										'started' => $user_start_date,
250 250
 										'completed' => $user_end_date,
251 251
 										'status' => $status,
252 252
 										'grade' => $grade,
253
-									), $item, $this );
253
+									), $item, $this);
254 254
 
255 255
 		return $column_data;
256 256
 	}
@@ -260,7 +260,7 @@  discard block
 block discarded – undo
260 260
 	 * @since  1.7.0
261 261
 	 * @return array statuses
262 262
 	 */
263
-	private function get_lesson_statuses( $args ) {
263
+	private function get_lesson_statuses($args) {
264 264
 
265 265
 		$activity_args = array( 
266 266
 				'post_id' => $this->lesson_id,
@@ -273,34 +273,34 @@  discard block
 block discarded – undo
273 273
 			);
274 274
 
275 275
 		// Searching users on statuses requires sub-selecting the statuses by user_ids
276
-		if ( $this->search ) {
276
+		if ($this->search) {
277 277
 			$user_args = array(
278
-				'search' => '*' . $this->search . '*',
278
+				'search' => '*'.$this->search.'*',
279 279
 				'fields' => 'ID',
280 280
 			);
281 281
 			// Filter for extending
282
-			$user_args = apply_filters( 'sensei_analysis_lesson_search_users', $user_args );
283
-			if ( !empty( $user_args ) ) {
284
-				$learners_search = new WP_User_Query( $user_args );
282
+			$user_args = apply_filters('sensei_analysis_lesson_search_users', $user_args);
283
+			if ( ! empty($user_args)) {
284
+				$learners_search = new WP_User_Query($user_args);
285 285
 				// Store for reuse on counts
286 286
 				$activity_args['user_id'] = (array) $learners_search->get_results();
287 287
 			}
288 288
 		} // End If Statement
289 289
 
290
-		$activity_args = apply_filters( 'sensei_analysis_lesson_filter_statuses', $activity_args );
290
+		$activity_args = apply_filters('sensei_analysis_lesson_filter_statuses', $activity_args);
291 291
 
292 292
 		// WP_Comment_Query doesn't support SQL_CALC_FOUND_ROWS, so instead do this twice
293
-		$this->total_items = Sensei_Utils::sensei_check_for_activity( array_merge( $activity_args, array('count' => true, 'offset' => 0, 'number' => 0) ) );
293
+		$this->total_items = Sensei_Utils::sensei_check_for_activity(array_merge($activity_args, array('count' => true, 'offset' => 0, 'number' => 0)));
294 294
 
295 295
 		// Ensure we change our range to fit (in case a search threw off the pagination) - Should this be added to all views?
296
-		if ( $this->total_items < $activity_args['offset'] ) {
297
-			$new_paged = floor( $total_statuses / $activity_args['number'] );
296
+		if ($this->total_items < $activity_args['offset']) {
297
+			$new_paged = floor($total_statuses / $activity_args['number']);
298 298
 			$activity_args['offset'] = $new_paged * $activity_args['number'];
299 299
 		}
300
-		$statuses = Sensei_Utils::sensei_check_for_activity( $activity_args, true );
300
+		$statuses = Sensei_Utils::sensei_check_for_activity($activity_args, true);
301 301
 		// Need to always return an array, even with only 1 item
302
-		if ( !is_array($statuses) ) {
303
-			$statuses = array( $statuses );
302
+		if ( ! is_array($statuses)) {
303
+			$statuses = array($statuses);
304 304
 		}
305 305
 		return $statuses;
306 306
 	} // End get_lesson_statuses()
@@ -312,7 +312,7 @@  discard block
 block discarded – undo
312 312
 	 * @return void
313 313
 	 */
314 314
 	public function no_items() {
315
-		 _e( 'No learners found.', 'woothemes-sensei' );
315
+		 _e('No learners found.', 'woothemes-sensei');
316 316
 	} // End no_items()
317 317
 
318 318
 	/**
@@ -321,7 +321,7 @@  discard block
 block discarded – undo
321 321
 	 * @return void
322 322
 	 */
323 323
 	public function data_table_header() {
324
-		echo '<strong>' . __( 'Learners taking this Lesson', 'woothemes-sensei' ) . '</strong>';
324
+		echo '<strong>'.__('Learners taking this Lesson', 'woothemes-sensei').'</strong>';
325 325
 	} // End data_table_header()
326 326
 
327 327
 	/**
@@ -330,10 +330,10 @@  discard block
 block discarded – undo
330 330
 	 * @return void
331 331
 	 */
332 332
 	public function data_table_footer() {
333
-		$lesson = get_post( $this->lesson_id );
334
-		$report = sanitize_title( $lesson->post_title ) . '-learners-overview';
335
-		$url = add_query_arg( array( 'page' => $this->page_slug, 'lesson_id' => $this->lesson_id, 'sensei_report_download' => $report ), admin_url( 'admin.php' ) );
336
-		echo '<a class="button button-primary" href="' . esc_url( wp_nonce_url( $url, 'sensei_csv_download-' . $report, '_sdl_nonce' ) ) . '">' . __( 'Export all rows (CSV)', 'woothemes-sensei' ) . '</a>';
333
+		$lesson = get_post($this->lesson_id);
334
+		$report = sanitize_title($lesson->post_title).'-learners-overview';
335
+		$url = add_query_arg(array('page' => $this->page_slug, 'lesson_id' => $this->lesson_id, 'sensei_report_download' => $report), admin_url('admin.php'));
336
+		echo '<a class="button button-primary" href="'.esc_url(wp_nonce_url($url, 'sensei_csv_download-'.$report, '_sdl_nonce')).'">'.__('Export all rows (CSV)', 'woothemes-sensei').'</a>';
337 337
 	} // End data_table_footer()
338 338
 
339 339
 	/**
@@ -341,8 +341,8 @@  discard block
 block discarded – undo
341 341
 	 * @since  1.7.0
342 342
 	 * @return void
343 343
 	 */
344
-	public function search_button( $text = '' ) {
345
-		return __( 'Search Learners', 'woothemes-sensei' );;
344
+	public function search_button($text = '') {
345
+		return __('Search Learners', 'woothemes-sensei'); ;
346 346
 	}
347 347
 } // End Class
348 348
 
Please login to merge, or discard this patch.
includes/class-sensei-question.php 1 patch
Indentation   +567 added lines, -567 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
 	 * @since  1.0.0
22 22
 	 */
23 23
 	public function __construct () {
24
-        $this->token = 'question';
24
+		$this->token = 'question';
25 25
 		$this->question_types = $this->question_types();
26 26
 		$this->meta_fields = array( 'question_right_answer', 'question_wrong_answers' );
27 27
 		if ( is_admin() ) {
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
 
119 119
 			if( isset( $post->ID ) ) {
120 120
 
121
-                $question_type = Sensei()->question->get_question_type( $post->ID );
121
+				$question_type = Sensei()->question->get_question_type( $post->ID );
122 122
 
123 123
 				if( $question_type ) {
124 124
 					$type = $this->question_types[ $question_type ];
@@ -238,15 +238,15 @@  discard block
 block discarded – undo
238 238
 	public function save_question( $post_id = 0 ) {
239 239
 
240 240
 		if( ! isset( $_POST['post_type']
241
-            ) || 'question' != $_POST['post_type'] ) {
242
-            return;
243
-        }
241
+			) || 'question' != $_POST['post_type'] ) {
242
+			return;
243
+		}
244 244
 
245 245
 
246 246
 
247
-        //setup the data for saving
247
+		//setup the data for saving
248 248
 		$data = $_POST ;
249
-        $data['quiz_id'] = 0;
249
+		$data['quiz_id'] = 0;
250 250
 		$data['question_id'] = $post_id;
251 251
 
252 252
 		if ( ! wp_is_post_revision( $post_id ) ){
@@ -340,34 +340,34 @@  discard block
 block discarded – undo
340 340
 		return $request;
341 341
 	}
342 342
 
343
-    /**
344
-     * Get the type of question by id
345
-     *
346
-     * This function uses the post terms to determine which question type
347
-     * the passed question id belongs to.
348
-     *
349
-     * @since 1.7.4
350
-     *
351
-     * @param int $question_id
352
-     *
353
-     * @return string $question_type | bool
354
-     */
355
-    public function get_question_type( $question_id ){
356
-
357
-        if( empty( $question_id ) || ! intval( $question_id ) > 0
358
-            || 'question' != get_post_type( $question_id )   ){
359
-            return false;
360
-        }
361
-
362
-        $question_type = 'multiple-choice';
363
-        $question_types = wp_get_post_terms( $question_id, 'question-type' );
364
-        foreach( $question_types as $type ) {
365
-            $question_type = $type->slug;
366
-        }
367
-
368
-        return $question_type;
369
-
370
-    }// end get_question_type
343
+	/**
344
+	 * Get the type of question by id
345
+	 *
346
+	 * This function uses the post terms to determine which question type
347
+	 * the passed question id belongs to.
348
+	 *
349
+	 * @since 1.7.4
350
+	 *
351
+	 * @param int $question_id
352
+	 *
353
+	 * @return string $question_type | bool
354
+	 */
355
+	public function get_question_type( $question_id ){
356
+
357
+		if( empty( $question_id ) || ! intval( $question_id ) > 0
358
+			|| 'question' != get_post_type( $question_id )   ){
359
+			return false;
360
+		}
361
+
362
+		$question_type = 'multiple-choice';
363
+		$question_types = wp_get_post_terms( $question_id, 'question-type' );
364
+		foreach( $question_types as $type ) {
365
+			$question_type = $type->slug;
366
+		}
367
+
368
+		return $question_type;
369
+
370
+	}// end get_question_type
371 371
 
372 372
 	/**
373 373
 	 * Given a question ID, return the grade that can be achieved.
@@ -399,317 +399,317 @@  discard block
 block discarded – undo
399 399
 	} // end get_question_grade
400 400
 
401 401
 
402
-    /**
403
-     * This function simply loads the question type template
404
-     *
405
-     * @since 1.9.0
406
-     * @param $question_type
407
-     */
408
-    public static function load_question_template( $question_type ){
409
-
410
-        Sensei_Templates::get_template  ( 'single-quiz/question_type-' . $question_type . '.php' );
411
-    }
412
-
413
-    /**
414
-     * Echo the sensei question title.
415
-     *
416
-     * @uses WooThemes_Sensei_Question::get_the_question_title
417
-     *
418
-     * @since 1.9.0
419
-     * @param $question_id
420
-     */
421
-    public static function the_question_title( $question_id ){
422
-
423
-        echo self::get_the_question_title( $question_id );
424
-
425
-    }// end the_question_title
426
-
427
-    /**
428
-     * Generate the question title with it's grade.
429
-     *
430
-     * @since 1.9.0
431
-     *
432
-     * @param $question_id
433
-     * @return string
434
-     */
435
-    public static function get_the_question_title( $question_id ){
436
-
437
-        /**
438
-         * Filter the sensei question title
439
-         *
440
-         * @since 1.3.0
441
-         * @param $question_title
442
-         */
443
-        $title = apply_filters( 'sensei_question_title', get_the_title( $question_id ) );
444
-
445
-        /**
446
-         * hook document in class-woothemes-sensei-message.php the_title()
447
-         */
448
-        $title = apply_filters( 'sensei_single_title', $title, 'question');
449
-
450
-        $title_html  = '<span class="question question-title">';
451
-        $title_html .= $title;
452
-        $title_html .= '<span class="grade"><?php sensi_the_question_grade()?></span>';
453
-        $title_html .='</span>';
454
-
455
-        return $title_html;
456
-    }
457
-
458
-    /**
459
-     * Tech the question description
460
-     *
461
-     * @param $question_id
462
-     * @return string
463
-     */
464
-    public static function get_the_question_description( $question_id ){
465
-
466
-        $question = get_post( $question_id );
467
-
468
-        /**
469
-         * Already documented within WordPress Core
470
-         */
471
-        return apply_filters( 'the_content', $question->post_content );
472
-
473
-    }
474
-
475
-    /**
476
-     * Output the question description
477
-     *
478
-     * @since 1.9.0
479
-     * @param $question_id
480
-     */
481
-    public static function the_question_description( $question_id  ){
482
-
483
-        echo self::get_the_question_description( $question_id );
484
-
485
-    }
486
-
487
-    /**
488
-     * Get the questions media markup
489
-     *
490
-     * @since 1.9.0
491
-     * @param $question_id
492
-     * @return string
493
-     */
494
-    public static function get_the_question_media( $question_id ){
495
-
496
-        $question_media = get_post_meta( $question_id, '_question_media', true );
497
-        $question_media_link = '';
498
-        if( 0 < intval( $question_media ) ) {
499
-            $mimetype = get_post_mime_type( $question_media );
500
-            if( $mimetype ) {
501
-                $mimetype_array = explode( '/', $mimetype);
502
-                if( isset( $mimetype_array[0] ) && $mimetype_array[0] ) {
503
-                    $question_media_type = $mimetype_array[0];
504
-                    $question_media_url = wp_get_attachment_url( $question_media );
505
-                    $attachment = get_post( $question_media );
506
-                    $question_media_title = $attachment->post_title;
507
-                    $question_media_description = $attachment->post_content;
508
-                    switch( $question_media_type ) {
509
-                        case 'image':
510
-                            $image_size = apply_filters( 'sensei_question_image_size', 'medium', $question_id );
511
-                            $attachment_src = wp_get_attachment_image_src( $question_media, $image_size );
512
-                            $question_media_link = '<a class="' . esc_attr( $question_media_type ) . '" title="' . esc_attr( $question_media_title ) . '" href="' . esc_url( $question_media_url ) . '" target="_blank"><img src="' . $attachment_src[0] . '" width="' . $attachment_src[1] . '" height="' . $attachment_src[2] . '" /></a>';
513
-                            break;
514
-
515
-                        case 'audio':
516
-                            $question_media_link = wp_audio_shortcode( array( 'src' => $question_media_url ) );
517
-                            break;
518
-
519
-                        case 'video':
520
-                            $question_media_link = wp_video_shortcode( array( 'src' => $question_media_url ) );
521
-                            break;
522
-
523
-                        default:
524
-                            $question_media_filename = basename( $question_media_url );
525
-                            $question_media_link = '<a class="' . esc_attr( $question_media_type ) . '" title="' . esc_attr( $question_media_title ) . '" href="' . esc_url( $question_media_url ) . '" target="_blank">' . $question_media_filename . '</a>';
526
-                            break;
527
-                    }
528
-                }
529
-            }
530
-        }
531
-
532
-        $output = '';
533
-        if( $question_media_link ) {
534
-
535
-                $output .= '<div class="question_media_display">';
536
-                $output .=      $question_media_link;
537
-                $output .= '<dl>';
538
-
539
-                if( $question_media_title ) {
540
-
541
-                   $output .= '<dt>'. $question_media_title. '</dt>';
542
-
543
-                 }
544
-
545
-                if( $question_media_description ) {
546
-
547
-                    $output .= '<dd>' . $question_media_description . '</dd>';
548
-
549
-                }
550
-
551
-                $output .= '</dl>';
552
-                $output .= '</div>';
402
+	/**
403
+	 * This function simply loads the question type template
404
+	 *
405
+	 * @since 1.9.0
406
+	 * @param $question_type
407
+	 */
408
+	public static function load_question_template( $question_type ){
409
+
410
+		Sensei_Templates::get_template  ( 'single-quiz/question_type-' . $question_type . '.php' );
411
+	}
412
+
413
+	/**
414
+	 * Echo the sensei question title.
415
+	 *
416
+	 * @uses WooThemes_Sensei_Question::get_the_question_title
417
+	 *
418
+	 * @since 1.9.0
419
+	 * @param $question_id
420
+	 */
421
+	public static function the_question_title( $question_id ){
422
+
423
+		echo self::get_the_question_title( $question_id );
424
+
425
+	}// end the_question_title
426
+
427
+	/**
428
+	 * Generate the question title with it's grade.
429
+	 *
430
+	 * @since 1.9.0
431
+	 *
432
+	 * @param $question_id
433
+	 * @return string
434
+	 */
435
+	public static function get_the_question_title( $question_id ){
436
+
437
+		/**
438
+		 * Filter the sensei question title
439
+		 *
440
+		 * @since 1.3.0
441
+		 * @param $question_title
442
+		 */
443
+		$title = apply_filters( 'sensei_question_title', get_the_title( $question_id ) );
444
+
445
+		/**
446
+		 * hook document in class-woothemes-sensei-message.php the_title()
447
+		 */
448
+		$title = apply_filters( 'sensei_single_title', $title, 'question');
449
+
450
+		$title_html  = '<span class="question question-title">';
451
+		$title_html .= $title;
452
+		$title_html .= '<span class="grade"><?php sensi_the_question_grade()?></span>';
453
+		$title_html .='</span>';
454
+
455
+		return $title_html;
456
+	}
457
+
458
+	/**
459
+	 * Tech the question description
460
+	 *
461
+	 * @param $question_id
462
+	 * @return string
463
+	 */
464
+	public static function get_the_question_description( $question_id ){
465
+
466
+		$question = get_post( $question_id );
467
+
468
+		/**
469
+		 * Already documented within WordPress Core
470
+		 */
471
+		return apply_filters( 'the_content', $question->post_content );
472
+
473
+	}
474
+
475
+	/**
476
+	 * Output the question description
477
+	 *
478
+	 * @since 1.9.0
479
+	 * @param $question_id
480
+	 */
481
+	public static function the_question_description( $question_id  ){
482
+
483
+		echo self::get_the_question_description( $question_id );
484
+
485
+	}
486
+
487
+	/**
488
+	 * Get the questions media markup
489
+	 *
490
+	 * @since 1.9.0
491
+	 * @param $question_id
492
+	 * @return string
493
+	 */
494
+	public static function get_the_question_media( $question_id ){
495
+
496
+		$question_media = get_post_meta( $question_id, '_question_media', true );
497
+		$question_media_link = '';
498
+		if( 0 < intval( $question_media ) ) {
499
+			$mimetype = get_post_mime_type( $question_media );
500
+			if( $mimetype ) {
501
+				$mimetype_array = explode( '/', $mimetype);
502
+				if( isset( $mimetype_array[0] ) && $mimetype_array[0] ) {
503
+					$question_media_type = $mimetype_array[0];
504
+					$question_media_url = wp_get_attachment_url( $question_media );
505
+					$attachment = get_post( $question_media );
506
+					$question_media_title = $attachment->post_title;
507
+					$question_media_description = $attachment->post_content;
508
+					switch( $question_media_type ) {
509
+						case 'image':
510
+							$image_size = apply_filters( 'sensei_question_image_size', 'medium', $question_id );
511
+							$attachment_src = wp_get_attachment_image_src( $question_media, $image_size );
512
+							$question_media_link = '<a class="' . esc_attr( $question_media_type ) . '" title="' . esc_attr( $question_media_title ) . '" href="' . esc_url( $question_media_url ) . '" target="_blank"><img src="' . $attachment_src[0] . '" width="' . $attachment_src[1] . '" height="' . $attachment_src[2] . '" /></a>';
513
+							break;
514
+
515
+						case 'audio':
516
+							$question_media_link = wp_audio_shortcode( array( 'src' => $question_media_url ) );
517
+							break;
518
+
519
+						case 'video':
520
+							$question_media_link = wp_video_shortcode( array( 'src' => $question_media_url ) );
521
+							break;
522
+
523
+						default:
524
+							$question_media_filename = basename( $question_media_url );
525
+							$question_media_link = '<a class="' . esc_attr( $question_media_type ) . '" title="' . esc_attr( $question_media_title ) . '" href="' . esc_url( $question_media_url ) . '" target="_blank">' . $question_media_filename . '</a>';
526
+							break;
527
+					}
528
+				}
529
+			}
530
+		}
531
+
532
+		$output = '';
533
+		if( $question_media_link ) {
553 534
 
535
+				$output .= '<div class="question_media_display">';
536
+				$output .=      $question_media_link;
537
+				$output .= '<dl>';
554 538
 
555
-         }
556
-
557
-        return $output;
558
-
559
-    } // end get_the_question_media
560
-
539
+				if( $question_media_title ) {
561 540
 
562
-    /**
563
-     * Output the question media
564
-     *
565
-     * @since 1.9.0
566
-     * @param string $question_id
567
-     */
568
-    public static function the_question_media( $question_id ){
541
+				   $output .= '<dt>'. $question_media_title. '</dt>';
569 542
 
570
-        echo self::get_the_question_media( $question_id );
543
+				 }
571 544
 
572
-    }
545
+				if( $question_media_description ) {
573 546
 
574
-    /**
575
-     * Output a special field for the question needed for question submission.
576
-     *
577
-     * @since 1.9.0
578
-     *
579
-     * @param $question_id
580
-     */
581
-    public static function the_question_hidden_fields( $question_id ){
582
-        ?>
547
+					$output .= '<dd>' . $question_media_description . '</dd>';
548
+
549
+				}
550
+
551
+				$output .= '</dl>';
552
+				$output .= '</div>';
553
+
554
+
555
+		 }
556
+
557
+		return $output;
558
+
559
+	} // end get_the_question_media
560
+
561
+
562
+	/**
563
+	 * Output the question media
564
+	 *
565
+	 * @since 1.9.0
566
+	 * @param string $question_id
567
+	 */
568
+	public static function the_question_media( $question_id ){
569
+
570
+		echo self::get_the_question_media( $question_id );
571
+
572
+	}
573
+
574
+	/**
575
+	 * Output a special field for the question needed for question submission.
576
+	 *
577
+	 * @since 1.9.0
578
+	 *
579
+	 * @param $question_id
580
+	 */
581
+	public static function the_question_hidden_fields( $question_id ){
582
+		?>
583 583
 
584 584
             <input type="hidden" name="question_id_<?php $question_id;?>" value="<?php $question_id;?>" />
585 585
             <input type="hidden" name="questions_asked[]" value="<?php esc_attr_e( $question_id ); ?>" />
586 586
 
587 587
         <?php
588
-    }
588
+	}
589 589
 
590
-    /**
591
-     * This function can only be run withing the single quiz question loop
592
-     *
593
-     * @since 1.9.0
594
-     * @param $question_id
595
-     */
596
-    public static function answer_feedback_notes( $question_id ){
590
+	/**
591
+	 * This function can only be run withing the single quiz question loop
592
+	 *
593
+	 * @since 1.9.0
594
+	 * @param $question_id
595
+	 */
596
+	public static function answer_feedback_notes( $question_id ){
597 597
 
598
-        //IDS
599
-        $quiz_id = get_the_ID();
600
-        $lesson_id = Sensei()->quiz->get_lesson_id( $quiz_id );
598
+		//IDS
599
+		$quiz_id = get_the_ID();
600
+		$lesson_id = Sensei()->quiz->get_lesson_id( $quiz_id );
601 601
 
602
-        // Data to check before showing feedback
603
-        $user_lesson_status = Sensei_Utils::user_lesson_status( $lesson_id, get_current_user_id() );
604
-        $user_quiz_grade = Sensei_Quiz::get_user_quiz_grade( $lesson_id, get_current_user_id() );
605
-        $not_empty_user_quiz_grade = !empty( $user_quiz_grade );
606
-        $reset_quiz_allowed = Sensei_Quiz::is_reset_allowed( $lesson_id );
607
-        $lesson_completed = Sensei_Utils::user_completed_lesson( $lesson_id );
608
-        $quiz_grade_type = get_post_meta( $quiz_id , '_quiz_grade_type', true );
602
+		// Data to check before showing feedback
603
+		$user_lesson_status = Sensei_Utils::user_lesson_status( $lesson_id, get_current_user_id() );
604
+		$user_quiz_grade = Sensei_Quiz::get_user_quiz_grade( $lesson_id, get_current_user_id() );
605
+		$not_empty_user_quiz_grade = !empty( $user_quiz_grade );
606
+		$reset_quiz_allowed = Sensei_Quiz::is_reset_allowed( $lesson_id );
607
+		$lesson_completed = Sensei_Utils::user_completed_lesson( $lesson_id );
608
+		$quiz_grade_type = get_post_meta( $quiz_id , '_quiz_grade_type', true );
609 609
 
610
-        if( ( $lesson_completed  && $not_empty_user_quiz_grade  )
611
-            ||  ( $lesson_completed && ! $reset_quiz_allowed && 'auto' == $quiz_grade_type )
612
-            || ( 'auto' == $quiz_grade_type && ! $reset_quiz_allowed && $not_empty_user_quiz_grade ) ) {
610
+		if( ( $lesson_completed  && $not_empty_user_quiz_grade  )
611
+			||  ( $lesson_completed && ! $reset_quiz_allowed && 'auto' == $quiz_grade_type )
612
+			|| ( 'auto' == $quiz_grade_type && ! $reset_quiz_allowed && $not_empty_user_quiz_grade ) ) {
613 613
 
614
-            $answer_notes = Sensei()->quiz->get_user_question_feedback( $lesson_id, $question_id, get_current_user_id() );
614
+			$answer_notes = Sensei()->quiz->get_user_question_feedback( $lesson_id, $question_id, get_current_user_id() );
615 615
 
616
-            if( $answer_notes ) { ?>
616
+			if( $answer_notes ) { ?>
617 617
 
618 618
                 <div class="sensei-message info info-special answer-feedback">
619 619
 
620 620
                     <?php
621 621
 
622
-                        /**
623
-                         * Filter the answer feedback
624
-                         * Since 1.9.0
625
-                         *
626
-                         * @param string $answer_notes
627
-                         * @param string $question_id
628
-                         * @param string $lesson_id
629
-                         */
630
-                        echo apply_filters( 'sensei_question_answer_notes', $answer_notes, $question_id, $lesson_id );
622
+						/**
623
+						 * Filter the answer feedback
624
+						 * Since 1.9.0
625
+						 *
626
+						 * @param string $answer_notes
627
+						 * @param string $question_id
628
+						 * @param string $lesson_id
629
+						 */
630
+						echo apply_filters( 'sensei_question_answer_notes', $answer_notes, $question_id, $lesson_id );
631 631
 
632
-                    ?>
632
+					?>
633 633
 
634 634
                 </div>
635 635
 
636 636
             <?php }
637 637
 
638
-        }// end if we can show answer feedback
638
+		}// end if we can show answer feedback
639 639
 
640
-    }// end answer_feedback_notes
640
+	}// end answer_feedback_notes
641 641
 
642
-    /**
643
-     * This function has to be run inside the quiz question loop on the single quiz page.
644
-     *
645
-     *
646
-     * @since 1.9.0
647
-     * @param string $question_id
648
-     */
649
-    public static function the_answer_result_indication( $question_id ){
642
+	/**
643
+	 * This function has to be run inside the quiz question loop on the single quiz page.
644
+	 *
645
+	 *
646
+	 * @since 1.9.0
647
+	 * @param string $question_id
648
+	 */
649
+	public static function the_answer_result_indication( $question_id ){
650 650
 
651
-        global $post,  $current_user, $sensei_question_loop;
651
+		global $post,  $current_user, $sensei_question_loop;
652 652
 
653
-        // Post Data
654
-        $quiz_id = $sensei_question_loop['quiz_id'];
655
-        $lesson_id = Sensei()->quiz->get_lesson_id( $quiz_id );
656
-        $question_item = $sensei_question_loop['current_question'];
653
+		// Post Data
654
+		$quiz_id = $sensei_question_loop['quiz_id'];
655
+		$lesson_id = Sensei()->quiz->get_lesson_id( $quiz_id );
656
+		$question_item = $sensei_question_loop['current_question'];
657 657
 
658
-        // Setup variable needed to determine if the message should show and what it should show
659
-        $user_quiz_grade = Sensei_Quiz::get_user_quiz_grade( $lesson_id, get_current_user_id() );
660
-        $lesson_complete = Sensei_Utils::user_completed_lesson( $lesson_id, get_current_user_id() );
661
-        $reset_quiz_allowed = Sensei_Quiz::is_reset_allowed( $lesson_id );
662
-        $quiz_grade_type = get_post_meta( $quiz_id, '_quiz_grade_type', true );
658
+		// Setup variable needed to determine if the message should show and what it should show
659
+		$user_quiz_grade = Sensei_Quiz::get_user_quiz_grade( $lesson_id, get_current_user_id() );
660
+		$lesson_complete = Sensei_Utils::user_completed_lesson( $lesson_id, get_current_user_id() );
661
+		$reset_quiz_allowed = Sensei_Quiz::is_reset_allowed( $lesson_id );
662
+		$quiz_grade_type = get_post_meta( $quiz_id, '_quiz_grade_type', true );
663 663
 
664
-        // retrieve the question total grade
665
-        $question_grade = Sensei()->question->get_question_grade( $question_id );
664
+		// retrieve the question total grade
665
+		$question_grade = Sensei()->question->get_question_grade( $question_id );
666 666
 
667
-        // retrieve grade the user achieved
668
-        $user_question_grade = Sensei()->quiz->get_user_question_grade( $lesson_id, $question_id, get_current_user_id() );
667
+		// retrieve grade the user achieved
668
+		$user_question_grade = Sensei()->quiz->get_user_question_grade( $lesson_id, $question_id, get_current_user_id() );
669 669
 
670
-        // Question ID
671
-        $question_id = $question_item->ID;
670
+		// Question ID
671
+		$question_id = $question_item->ID;
672 672
 
673
-        // conditions to check
674
-        $completed_with_valid_grade = $lesson_complete && $user_quiz_grade != '' ;
675
-        $completed_with_valid_grade_and_reset_not_allowed = $lesson_complete &&  $user_quiz_grade != '' && ! $reset_quiz_allowed ;
676
-        $grade_type_auto_a_valid_grade_and_reset_not_allowed =  'auto' == $quiz_grade_type && ! $reset_quiz_allowed && $user_quiz_grade != '' ;
673
+		// conditions to check
674
+		$completed_with_valid_grade = $lesson_complete && $user_quiz_grade != '' ;
675
+		$completed_with_valid_grade_and_reset_not_allowed = $lesson_complete &&  $user_quiz_grade != '' && ! $reset_quiz_allowed ;
676
+		$grade_type_auto_a_valid_grade_and_reset_not_allowed =  'auto' == $quiz_grade_type && ! $reset_quiz_allowed && $user_quiz_grade != '' ;
677 677
 
678
-        if (  $completed_with_valid_grade
679
-            || $completed_with_valid_grade_and_reset_not_allowed
680
-            || $grade_type_auto_a_valid_grade_and_reset_not_allowed  ) {
678
+		if (  $completed_with_valid_grade
679
+			|| $completed_with_valid_grade_and_reset_not_allowed
680
+			|| $grade_type_auto_a_valid_grade_and_reset_not_allowed  ) {
681 681
 
682
-            $user_correct = false;
683
-            $answer_message = __( 'Incorrect', 'woothemes-sensei' );
684
-            $answer_message_class = 'user_wrong';
685
-            // For zero grade mark as 'correct' but add no classes
686
-            if ( 0 == $question_grade ) {
682
+			$user_correct = false;
683
+			$answer_message = __( 'Incorrect', 'woothemes-sensei' );
684
+			$answer_message_class = 'user_wrong';
685
+			// For zero grade mark as 'correct' but add no classes
686
+			if ( 0 == $question_grade ) {
687 687
 
688
-                $user_correct = true;
689
-                $answer_message = '';
690
-                $answer_message_class = '';
688
+				$user_correct = true;
689
+				$answer_message = '';
690
+				$answer_message_class = '';
691 691
 
692
-            } else if( $user_question_grade > 0 ) {
692
+			} else if( $user_question_grade > 0 ) {
693 693
 
694
-                $user_correct = true;
695
-                $answer_message = sprintf( __( 'Grade: %d', 'woothemes-sensei' ), $user_question_grade );
696
-                $answer_message_class = 'user_right';
694
+				$user_correct = true;
695
+				$answer_message = sprintf( __( 'Grade: %d', 'woothemes-sensei' ), $user_question_grade );
696
+				$answer_message_class = 'user_right';
697 697
 
698
-            }
698
+			}
699 699
 
700
-            // attach the correct answer if the question is auto gradable and user got it wrong
701
-            if( !$reset_quiz_allowed && !$user_correct ){
700
+			// attach the correct answer if the question is auto gradable and user got it wrong
701
+			if( !$reset_quiz_allowed && !$user_correct ){
702 702
 
703
-                $answer_message .=  ' - '. __('Right Answer:','woothemes-sensei') . ' ' . self::get_correct_answer( $question_item->ID );
703
+				$answer_message .=  ' - '. __('Right Answer:','woothemes-sensei') . ' ' . self::get_correct_answer( $question_item->ID );
704 704
 
705
-            }
705
+			}
706 706
 
707
-            // answer feedback
708
-            $answer_notes = Sensei()->quiz->get_user_question_feedback( $lesson_id, $question_id, $current_user->ID );
709
-            if( $answer_notes ) {
710
-                $answer_message_class .= ' has_notes';
711
-            }
712
-            ?>
707
+			// answer feedback
708
+			$answer_notes = Sensei()->quiz->get_user_question_feedback( $lesson_id, $question_id, $current_user->ID );
709
+			if( $answer_notes ) {
710
+				$answer_message_class .= ' has_notes';
711
+			}
712
+			?>
713 713
 
714 714
             <div class="answer_message <?php esc_attr_e( $answer_message_class ); ?>">
715 715
 
@@ -719,387 +719,387 @@  discard block
 block discarded – undo
719 719
 
720 720
             <?php
721 721
 
722
-        } // end if user can see all the goodies
723
-
724
-    }// end the_answer_result_indication
725
-
726
-    /**
727
-     * Generate the question template data and return it as an array.
728
-     *
729
-     * @since 1.9.0
730
-     *
731
-     * @param string $question_id
732
-     * @param $quiz_id
733
-     * @return array $question_data
734
-     */
735
-    public static function get_template_data( $question_id, $quiz_id ){
736
-
737
-        $lesson_id = Sensei()->quiz->get_lesson_id( $quiz_id  );
738
-
739
-        $reset_allowed = get_post_meta( $quiz_id, '_enable_quiz_reset', true );
740
-        //backwards compatibility
741
-        if( 'on' == $reset_allowed ) {
742
-            $reset_allowed = 1;
743
-        }
744
-
745
-        // Check again that the lesson is complete
746
-        $user_lesson_end = Sensei_Utils::user_completed_lesson( Sensei()->quiz->get_lesson_id( $quiz_id), get_current_user_id() );
747
-        $user_lesson_complete = false;
748
-        if ( $user_lesson_end ) {
749
-            $user_lesson_complete = true;
750
-        }
751
-
752
-        //setup the question data
753
-        $data[ 'ID' ]                     = $question_id;
754
-        $data[ 'title' ]                  = get_the_title( $question_id );
755
-        $data[ 'content' ]                = get_post( $question_id )->post_content;
756
-        $data[ 'quiz_id' ]                = $quiz_id;
757
-        $data[ 'lesson_id' ]              = Sensei()->quiz->get_lesson_id( $quiz_id );
758
-        $data[ 'type' ]                   = Sensei()->question->get_question_type( $question_id );
759
-        $data[ 'question_grade' ]         = Sensei()->question->get_question_grade(  $question_id  );
760
-        $data[ 'user_question_grade' ]    = Sensei()->quiz->get_user_question_grade( $lesson_id,  $question_id , get_current_user_id());
761
-        $data[ 'question_right_answer' ]  = get_post_meta( $question_id , '_question_right_answer', true );
762
-        $data[ 'question_wrong_answers' ] = get_post_meta( $question_id , '_question_wrong_answers', true );
763
-        $data[ 'user_answer_entry' ]      = Sensei()->quiz->get_user_question_answer( $lesson_id,  $question_id , get_current_user_id() );
764
-        $data[ 'lesson_completed' ]       = Sensei_Utils::user_completed_course( $lesson_id, get_current_user_id( ) );
765
-        $data[ 'quiz_grade_type' ]        = get_post_meta( $quiz_id , '_quiz_grade_type', true );
766
-        $data[ 'reset_quiz_allowed' ]     = $reset_allowed;
767
-        $data[ 'lesson_complete' ]        = $user_lesson_complete;
768
-
769
-        /**
770
-         * Filter the question template data. This filter fires  in
771
-         * the get_template_data function
772
-         *
773
-         * @hooked self::boolean_load_question_data
774
-         *
775
-         * @since 1.9.0
776
-         *
777
-         * @param array $data
778
-         * @param string $question_id
779
-         * @param string $quiz_id
780
-         */
781
-        return apply_filters( 'sensei_get_question_template_data', $data, $question_id, $quiz_id );
722
+		} // end if user can see all the goodies
782 723
 
783
-    }
724
+	}// end the_answer_result_indication
784 725
 
785
-    /**
786
-     * Load multiple choice question data on the sensei_get_question_template_data
787
-     * filter.
788
-     *
789
-     * @since 1.9.0
790
-     *
791
-     * @param $question_data
792
-     * @param $question_id
793
-     * @param $quiz_id
794
-     *
795
-     * @return array()
796
-     */
797
-    public static function file_upload_load_question_data ( $question_data, $question_id, $quiz_id ){
726
+	/**
727
+	 * Generate the question template data and return it as an array.
728
+	 *
729
+	 * @since 1.9.0
730
+	 *
731
+	 * @param string $question_id
732
+	 * @param $quiz_id
733
+	 * @return array $question_data
734
+	 */
735
+	public static function get_template_data( $question_id, $quiz_id ){
798 736
 
737
+		$lesson_id = Sensei()->quiz->get_lesson_id( $quiz_id  );
799 738
 
800
-        if( 'file-upload' == Sensei()->question->get_question_type( $question_id ) ) {
739
+		$reset_allowed = get_post_meta( $quiz_id, '_enable_quiz_reset', true );
740
+		//backwards compatibility
741
+		if( 'on' == $reset_allowed ) {
742
+			$reset_allowed = 1;
743
+		}
801 744
 
802
-            // Get uploaded file
803
-            $attachment_id = $question_data[ 'user_answer_entry' ];
804
-            $answer_media_url = $answer_media_filename = '';
745
+		// Check again that the lesson is complete
746
+		$user_lesson_end = Sensei_Utils::user_completed_lesson( Sensei()->quiz->get_lesson_id( $quiz_id), get_current_user_id() );
747
+		$user_lesson_complete = false;
748
+		if ( $user_lesson_end ) {
749
+			$user_lesson_complete = true;
750
+		}
805 751
 
752
+		//setup the question data
753
+		$data[ 'ID' ]                     = $question_id;
754
+		$data[ 'title' ]                  = get_the_title( $question_id );
755
+		$data[ 'content' ]                = get_post( $question_id )->post_content;
756
+		$data[ 'quiz_id' ]                = $quiz_id;
757
+		$data[ 'lesson_id' ]              = Sensei()->quiz->get_lesson_id( $quiz_id );
758
+		$data[ 'type' ]                   = Sensei()->question->get_question_type( $question_id );
759
+		$data[ 'question_grade' ]         = Sensei()->question->get_question_grade(  $question_id  );
760
+		$data[ 'user_question_grade' ]    = Sensei()->quiz->get_user_question_grade( $lesson_id,  $question_id , get_current_user_id());
761
+		$data[ 'question_right_answer' ]  = get_post_meta( $question_id , '_question_right_answer', true );
762
+		$data[ 'question_wrong_answers' ] = get_post_meta( $question_id , '_question_wrong_answers', true );
763
+		$data[ 'user_answer_entry' ]      = Sensei()->quiz->get_user_question_answer( $lesson_id,  $question_id , get_current_user_id() );
764
+		$data[ 'lesson_completed' ]       = Sensei_Utils::user_completed_course( $lesson_id, get_current_user_id( ) );
765
+		$data[ 'quiz_grade_type' ]        = get_post_meta( $quiz_id , '_quiz_grade_type', true );
766
+		$data[ 'reset_quiz_allowed' ]     = $reset_allowed;
767
+		$data[ 'lesson_complete' ]        = $user_lesson_complete;
768
+
769
+		/**
770
+		 * Filter the question template data. This filter fires  in
771
+		 * the get_template_data function
772
+		 *
773
+		 * @hooked self::boolean_load_question_data
774
+		 *
775
+		 * @since 1.9.0
776
+		 *
777
+		 * @param array $data
778
+		 * @param string $question_id
779
+		 * @param string $quiz_id
780
+		 */
781
+		return apply_filters( 'sensei_get_question_template_data', $data, $question_id, $quiz_id );
806 782
 
807
-            $question_helptext = '';
808
-            if( isset( $question_data['question_wrong_answers'][0] ) ) {
783
+	}
809 784
 
810
-                $question_helptext =  $question_data['question_wrong_answers'][0];
785
+	/**
786
+	 * Load multiple choice question data on the sensei_get_question_template_data
787
+	 * filter.
788
+	 *
789
+	 * @since 1.9.0
790
+	 *
791
+	 * @param $question_data
792
+	 * @param $question_id
793
+	 * @param $quiz_id
794
+	 *
795
+	 * @return array()
796
+	 */
797
+	public static function file_upload_load_question_data ( $question_data, $question_id, $quiz_id ){
811 798
 
812
-            }
813 799
 
800
+		if( 'file-upload' == Sensei()->question->get_question_type( $question_id ) ) {
814 801
 
815
-            if( 0 < intval( $attachment_id ) ) {
802
+			// Get uploaded file
803
+			$attachment_id = $question_data[ 'user_answer_entry' ];
804
+			$answer_media_url = $answer_media_filename = '';
816 805
 
817
-                $answer_media_url = wp_get_attachment_url( $attachment_id );
818
-                $answer_media_filename = basename( $answer_media_url );
819 806
 
820
-            }
807
+			$question_helptext = '';
808
+			if( isset( $question_data['question_wrong_answers'][0] ) ) {
821 809
 
810
+				$question_helptext =  $question_data['question_wrong_answers'][0];
822 811
 
823
-            // Get max upload file size, formatted for display
824
-            // Code copied from wp-admin/includes/media.php:1515
825
-            $upload_size_unit = $max_upload_size = wp_max_upload_size();
826
-            $sizes = array( 'KB', 'MB', 'GB' );
827
-            for ( $u = -1; $upload_size_unit > 1024 && $u < count( $sizes ) - 1; $u++ ) {
828
-                $upload_size_unit /= 1024;
829
-            }
830
-            if ( $u < 0 ) {
812
+			}
831 813
 
832
-                $upload_size_unit = 0;
833
-                $u = 0;
834 814
 
835
-            } else {
815
+			if( 0 < intval( $attachment_id ) ) {
836 816
 
837
-                $upload_size_unit = (int) $upload_size_unit;
817
+				$answer_media_url = wp_get_attachment_url( $attachment_id );
818
+				$answer_media_filename = basename( $answer_media_url );
838 819
 
839
-            }
840
-            $max_upload_size = sprintf( __( 'Maximum upload file size: %d%s' ), esc_html( $upload_size_unit ), esc_html( $sizes[ $u ] ) );
820
+			}
841 821
 
842
-            // Assemble all the data needed by the file upload template
843
-            $question_data[ 'answer_media_url' ]      = $answer_media_url;
844
-            $question_data[ 'answer_media_filename' ] = $answer_media_filename;
845
-            $question_data[ 'max_upload_size' ]       = $max_upload_size;
846 822
 
847
-            $question_data[ 'question_helptext' ]     = $question_helptext;
823
+			// Get max upload file size, formatted for display
824
+			// Code copied from wp-admin/includes/media.php:1515
825
+			$upload_size_unit = $max_upload_size = wp_max_upload_size();
826
+			$sizes = array( 'KB', 'MB', 'GB' );
827
+			for ( $u = -1; $upload_size_unit > 1024 && $u < count( $sizes ) - 1; $u++ ) {
828
+				$upload_size_unit /= 1024;
829
+			}
830
+			if ( $u < 0 ) {
848 831
 
849
-        }// end if is file upload type
832
+				$upload_size_unit = 0;
833
+				$u = 0;
850 834
 
851
-        return $question_data;
835
+			} else {
852 836
 
853
-    }// end file_upload_load_question_data
837
+				$upload_size_unit = (int) $upload_size_unit;
854 838
 
855
-    /**
856
-     * Load multiple choice question data on the sensei_get_question_template_data
857
-     * filter.
858
-     *
859
-     * @since 1.9.0
860
-     *
861
-     * @param $question_data
862
-     * @param $question_id
863
-     * @param $quiz_id
864
-     *
865
-     * @return array()
866
-     */
867
-    public static function multiple_choice_load_question_data( $question_data, $question_id, $quiz_id ){
839
+			}
840
+			$max_upload_size = sprintf( __( 'Maximum upload file size: %d%s' ), esc_html( $upload_size_unit ), esc_html( $sizes[ $u ] ) );
868 841
 
869
-        if( 'multiple-choice' == Sensei()->question->get_question_type( $question_id ) ) {
842
+			// Assemble all the data needed by the file upload template
843
+			$question_data[ 'answer_media_url' ]      = $answer_media_url;
844
+			$question_data[ 'answer_media_filename' ] = $answer_media_filename;
845
+			$question_data[ 'max_upload_size' ]       = $max_upload_size;
870 846
 
847
+			$question_data[ 'question_helptext' ]     = $question_helptext;
871 848
 
872
-            $answer_type = 'radio';
873
-            if ( is_array( $question_data[ 'question_right_answer' ] ) && ( 1 < count( $question_data[ 'question_right_answer' ] ) ) ) {
849
+		}// end if is file upload type
874 850
 
875
-                $answer_type = 'checkbox';
851
+		return $question_data;
876 852
 
877
-            }
853
+	}// end file_upload_load_question_data
878 854
 
879
-            // Merge right and wrong answers
880
-            if ( is_array( $question_data[ 'question_right_answer' ] ) ) {
855
+	/**
856
+	 * Load multiple choice question data on the sensei_get_question_template_data
857
+	 * filter.
858
+	 *
859
+	 * @since 1.9.0
860
+	 *
861
+	 * @param $question_data
862
+	 * @param $question_id
863
+	 * @param $quiz_id
864
+	 *
865
+	 * @return array()
866
+	 */
867
+	public static function multiple_choice_load_question_data( $question_data, $question_id, $quiz_id ){
881 868
 
882
-                $merged_options = array_merge( $question_data[ 'question_wrong_answers' ], $question_data[ 'question_right_answer' ] );
869
+		if( 'multiple-choice' == Sensei()->question->get_question_type( $question_id ) ) {
883 870
 
884
-            }  else {
885 871
 
886
-                array_push( $question_data[ 'question_wrong_answers' ], $question_data[ 'question_right_answer' ] );
887
-                $merged_options = $question_data[ 'question_wrong_answers' ];
872
+			$answer_type = 'radio';
873
+			if ( is_array( $question_data[ 'question_right_answer' ] ) && ( 1 < count( $question_data[ 'question_right_answer' ] ) ) ) {
888 874
 
889
-            }
875
+				$answer_type = 'checkbox';
890 876
 
891
-            // Setup answer options array.
892
-            $question_answers_options = array();
893
-            $count = 0;
877
+			}
894 878
 
895
-            foreach( $merged_options as $answer ) {
879
+			// Merge right and wrong answers
880
+			if ( is_array( $question_data[ 'question_right_answer' ] ) ) {
896 881
 
897
-                $count++;
898
-                $question_option = array();
882
+				$merged_options = array_merge( $question_data[ 'question_wrong_answers' ], $question_data[ 'question_right_answer' ] );
899 883
 
900
-                if( ( $question_data[ 'lesson_completed' ] && $question_data[ 'user_quiz_grade' ] != '' )
901
-                    || ( $question_data[ 'lesson_completed' ] && ! $question_data[ 'reset_quiz_allowed' ] && $question_data[ 'user_quiz_grade' ] != '' )
902
-                    || ( 'auto' == $question_data[ 'quiz_grade_type' ] && ! $question_data[ 'reset_quiz_allowed' ]  && ! empty( $question_data[ 'user_quiz_grade' ] ) ) ) {
884
+			}  else {
903 885
 
904
-                    $user_correct = false;
886
+				array_push( $question_data[ 'question_wrong_answers' ], $question_data[ 'question_right_answer' ] );
887
+				$merged_options = $question_data[ 'question_wrong_answers' ];
905 888
 
889
+			}
906 890
 
907
-                    // For zero grade mark as 'correct' but add no classes
908
-                    if ( 0 == $question_data[ 'question_grade' ] ) {
891
+			// Setup answer options array.
892
+			$question_answers_options = array();
893
+			$count = 0;
909 894
 
910
-                        $user_correct = true;
895
+			foreach( $merged_options as $answer ) {
911 896
 
912
-                    }  else if( $question_data[ 'user_question_grade' ] > 0 ) {
897
+				$count++;
898
+				$question_option = array();
913 899
 
914
-                        $user_correct = true;
900
+				if( ( $question_data[ 'lesson_completed' ] && $question_data[ 'user_quiz_grade' ] != '' )
901
+					|| ( $question_data[ 'lesson_completed' ] && ! $question_data[ 'reset_quiz_allowed' ] && $question_data[ 'user_quiz_grade' ] != '' )
902
+					|| ( 'auto' == $question_data[ 'quiz_grade_type' ] && ! $question_data[ 'reset_quiz_allowed' ]  && ! empty( $question_data[ 'user_quiz_grade' ] ) ) ) {
915 903
 
916
-                    }
904
+					$user_correct = false;
917 905
 
918
-                }
919 906
 
920
-                // setup the option specific classes
921
-                $answer_class = '';
922
-                if( isset( $user_correct ) && 0 < $question_data[ 'question_grade' ] ) {
923
-                    if ( is_array( $question_data['question_right_answer'] ) && in_array($answer, $question_data['question_right_answer']) ) {
907
+					// For zero grade mark as 'correct' but add no classes
908
+					if ( 0 == $question_data[ 'question_grade' ] ) {
924 909
 
925
-                        $answer_class .= ' right_answer';
910
+						$user_correct = true;
926 911
 
927
-                    }  elseif( !is_array($question_data['question_right_answer']) && $question_data['question_right_answer'] == $answer ) {
912
+					}  else if( $question_data[ 'user_question_grade' ] > 0 ) {
928 913
 
929
-                        $answer_class .= ' right_answer';
914
+						$user_correct = true;
930 915
 
931
-                    } elseif( ( is_array( $question_data['user_answer_entry']  ) && in_array($answer, $question_data['user_answer_entry'] ) )
932
-                        ||  ( !  $question_data['user_answer_entry'] &&  $question_data['user_answer_entry'] == $answer ) ) {
916
+					}
933 917
 
934
-                        $answer_class = 'user_wrong';
935
-                        if( $user_correct ) {
918
+				}
936 919
 
937
-                            $answer_class = 'user_right';
920
+				// setup the option specific classes
921
+				$answer_class = '';
922
+				if( isset( $user_correct ) && 0 < $question_data[ 'question_grade' ] ) {
923
+					if ( is_array( $question_data['question_right_answer'] ) && in_array($answer, $question_data['question_right_answer']) ) {
938 924
 
939
-                        }
925
+						$answer_class .= ' right_answer';
940 926
 
941
-                    }
927
+					}  elseif( !is_array($question_data['question_right_answer']) && $question_data['question_right_answer'] == $answer ) {
942 928
 
943
-                }
929
+						$answer_class .= ' right_answer';
944 930
 
945
-                // determine if the current option must be checked
946
-                $checked = '';
947
-                if ( isset( $question_data['user_answer_entry'] ) && 0 < count( $question_data['user_answer_entry'] ) ) {
948
-                    if ( is_array( $question_data['user_answer_entry'] ) && in_array( $answer, $question_data['user_answer_entry'] ) ) {
931
+					} elseif( ( is_array( $question_data['user_answer_entry']  ) && in_array($answer, $question_data['user_answer_entry'] ) )
932
+						||  ( !  $question_data['user_answer_entry'] &&  $question_data['user_answer_entry'] == $answer ) ) {
949 933
 
950
-                        $checked = 'checked="checked"';
934
+						$answer_class = 'user_wrong';
935
+						if( $user_correct ) {
951 936
 
952
-                    } elseif ( !is_array( $question_data['user_answer_entry'] ) ) {
937
+							$answer_class = 'user_right';
953 938
 
954
-                        $checked = checked( $answer, $question_data['user_answer_entry'] , false );
939
+						}
955 940
 
956
-                    }
941
+					}
957 942
 
958
-                } // End If Statement
943
+				}
959 944
 
960
-                //Load the answer option data
961
-                $question_option[ 'ID' ]          = Sensei()->lesson->get_answer_id( $answer );
962
-                $question_option[ 'answer' ]      = $answer;
963
-                $question_option[ 'option_class'] = $answer_class;
964
-                $question_option[ 'checked']      = $checked;
965
-                $question_option[ 'count' ]       = $count;
966
-                $question_option[ 'type' ] = $answer_type;
945
+				// determine if the current option must be checked
946
+				$checked = '';
947
+				if ( isset( $question_data['user_answer_entry'] ) && 0 < count( $question_data['user_answer_entry'] ) ) {
948
+					if ( is_array( $question_data['user_answer_entry'] ) && in_array( $answer, $question_data['user_answer_entry'] ) ) {
967 949
 
968
-                // add the speci  fic option to the list of options for this question
969
-                $question_answers_options[] = $question_option;
950
+						$checked = 'checked="checked"';
970 951
 
971
-            } // end for each option
952
+					} elseif ( !is_array( $question_data['user_answer_entry'] ) ) {
972 953
 
954
+						$checked = checked( $answer, $question_data['user_answer_entry'] , false );
973 955
 
974
-            // Shuffle the array depending on the settings
975
-            $answer_options_sorted = array();
976
-            $random_order = get_post_meta( $question_data['ID'], '_random_order', true );
977
-            if(  $random_order && $random_order == 'yes' ) {
956
+					}
978 957
 
979
-                $answer_options_sorted = $question_answers_options;
980
-                shuffle( $answer_options_sorted );
958
+				} // End If Statement
981 959
 
982
-            } else {
960
+				//Load the answer option data
961
+				$question_option[ 'ID' ]          = Sensei()->lesson->get_answer_id( $answer );
962
+				$question_option[ 'answer' ]      = $answer;
963
+				$question_option[ 'option_class'] = $answer_class;
964
+				$question_option[ 'checked']      = $checked;
965
+				$question_option[ 'count' ]       = $count;
966
+				$question_option[ 'type' ] = $answer_type;
983 967
 
984
-                $answer_order = array();
985
-                $answer_order_string = get_post_meta( $question_data['ID'], '_answer_order', true );
986
-                if( $answer_order_string ) {
968
+				// add the speci  fic option to the list of options for this question
969
+				$question_answers_options[] = $question_option;
987 970
 
988
-                    $answer_order = array_filter( explode( ',', $answer_order_string ) );
989
-                    if( count( $answer_order ) > 0 ) {
971
+			} // end for each option
990 972
 
991
-                        foreach( $answer_order as $answer_id ) {
992 973
 
993
-                            if( isset( $question_answers_options[ $answer_id ] ) ) {
974
+			// Shuffle the array depending on the settings
975
+			$answer_options_sorted = array();
976
+			$random_order = get_post_meta( $question_data['ID'], '_random_order', true );
977
+			if(  $random_order && $random_order == 'yes' ) {
994 978
 
995
-                                $answer_options_sorted[ $answer_id ] = $question_answers_options[ $answer_id ];
996
-                                unset( $question_answers_options[ $answer_id ] );
979
+				$answer_options_sorted = $question_answers_options;
980
+				shuffle( $answer_options_sorted );
997 981
 
998
-                            }
982
+			} else {
999 983
 
1000
-                        }
984
+				$answer_order = array();
985
+				$answer_order_string = get_post_meta( $question_data['ID'], '_answer_order', true );
986
+				if( $answer_order_string ) {
1001 987
 
1002
-                        if( count( $question_answers_options ) > 0 ) {
1003
-                            foreach( $question_answers_options as $id => $answer ) {
988
+					$answer_order = array_filter( explode( ',', $answer_order_string ) );
989
+					if( count( $answer_order ) > 0 ) {
1004 990
 
1005
-                                $answer_options_sorted[ $id ] = $answer;
991
+						foreach( $answer_order as $answer_id ) {
1006 992
 
1007
-                            }
1008
-                        }
993
+							if( isset( $question_answers_options[ $answer_id ] ) ) {
1009 994
 
1010
-                    }else{
995
+								$answer_options_sorted[ $answer_id ] = $question_answers_options[ $answer_id ];
996
+								unset( $question_answers_options[ $answer_id ] );
1011 997
 
1012
-                        $answer_options_sorted = $question_answers_options;
998
+							}
1013 999
 
1014
-                    }
1000
+						}
1015 1001
 
1016
-                }else{
1002
+						if( count( $question_answers_options ) > 0 ) {
1003
+							foreach( $question_answers_options as $id => $answer ) {
1017 1004
 
1018
-                    $answer_options_sorted = $question_answers_options;
1005
+								$answer_options_sorted[ $id ] = $answer;
1019 1006
 
1020
-                } // end if $answer_order_string
1007
+							}
1008
+						}
1021 1009
 
1022
-            } // end if random order
1010
+					}else{
1023 1011
 
1012
+						$answer_options_sorted = $question_answers_options;
1024 1013
 
1025
-            // assemble and setup the data for the templates data array
1026
-            $question_data[ 'answer_options' ]    =  $answer_options_sorted;
1014
+					}
1027 1015
 
1028
-        }
1016
+				}else{
1029 1017
 
1030
-        return $question_data;
1018
+					$answer_options_sorted = $question_answers_options;
1031 1019
 
1032
-    }//  end multiple_choice_load_question_data
1020
+				} // end if $answer_order_string
1033 1021
 
1034
-    /**
1035
-     * Load the gap fill question data on the sensei_get_question_template_data
1036
-     * filter.
1037
-     *
1038
-     * @since 1.9.0
1039
-     *
1040
-     * @param $question_data
1041
-     * @param $question_id
1042
-     * @param $quiz_id
1043
-     *
1044
-     * @return array()
1045
-     */
1046
-    public static function gap_fill_load_question_data( $question_data, $question_id, $quiz_id ){
1022
+			} // end if random order
1047 1023
 
1048
-        if( 'gap-fill' == Sensei()->question->get_question_type( $question_id ) ) {
1049 1024
 
1050
-            $gapfill_array = explode( '||', $question_data[ 'question_right_answer' ] );
1051
-            $question_data[ 'gapfill_pre' ]  = isset( $gapfill_array[0] ) ? $gapfill_array[0] : '';
1052
-            $question_data[ 'gapfill_gap' ]  = isset( $gapfill_array[1] ) ? $gapfill_array[1] : '';
1053
-            $question_data[ 'gapfill_post' ] = isset( $gapfill_array[2] ) ? $gapfill_array[2] : '';
1025
+			// assemble and setup the data for the templates data array
1026
+			$question_data[ 'answer_options' ]    =  $answer_options_sorted;
1054 1027
 
1055
-        }
1028
+		}
1056 1029
 
1057
-        return $question_data;
1030
+		return $question_data;
1058 1031
 
1059
-    }//  end gap_fill_load_question_data
1032
+	}//  end multiple_choice_load_question_data
1033
+
1034
+	/**
1035
+	 * Load the gap fill question data on the sensei_get_question_template_data
1036
+	 * filter.
1037
+	 *
1038
+	 * @since 1.9.0
1039
+	 *
1040
+	 * @param $question_data
1041
+	 * @param $question_id
1042
+	 * @param $quiz_id
1043
+	 *
1044
+	 * @return array()
1045
+	 */
1046
+	public static function gap_fill_load_question_data( $question_data, $question_id, $quiz_id ){
1047
+
1048
+		if( 'gap-fill' == Sensei()->question->get_question_type( $question_id ) ) {
1049
+
1050
+			$gapfill_array = explode( '||', $question_data[ 'question_right_answer' ] );
1051
+			$question_data[ 'gapfill_pre' ]  = isset( $gapfill_array[0] ) ? $gapfill_array[0] : '';
1052
+			$question_data[ 'gapfill_gap' ]  = isset( $gapfill_array[1] ) ? $gapfill_array[1] : '';
1053
+			$question_data[ 'gapfill_post' ] = isset( $gapfill_array[2] ) ? $gapfill_array[2] : '';
1054
+
1055
+		}
1056
+
1057
+		return $question_data;
1058
+
1059
+	}//  end gap_fill_load_question_data
1060 1060
 
1061 1061
 
1062
-    /**
1063
-     * Get the correct answer for a question
1064
-     *
1065
-     * @param $question_id
1066
-     * @return string $correct_answer or empty
1067
-     */
1068
-    public static function get_correct_answer( $question_id ){
1062
+	/**
1063
+	 * Get the correct answer for a question
1064
+	 *
1065
+	 * @param $question_id
1066
+	 * @return string $correct_answer or empty
1067
+	 */
1068
+	public static function get_correct_answer( $question_id ){
1069 1069
 
1070
-        $right_answer = get_post_meta( $question_id, '_question_right_answer', true );
1071
-        $type = Sensei()->question->get_question_type( $question_id );
1072
-        $type_name = __( 'Multiple Choice', 'woothemes-sensei' );
1073
-        $grade_type = 'manual-grade';
1070
+		$right_answer = get_post_meta( $question_id, '_question_right_answer', true );
1071
+		$type = Sensei()->question->get_question_type( $question_id );
1072
+		$type_name = __( 'Multiple Choice', 'woothemes-sensei' );
1073
+		$grade_type = 'manual-grade';
1074 1074
 
1075
-        if ('boolean'== $type ) {
1075
+		if ('boolean'== $type ) {
1076 1076
 
1077
-            $right_answer = ucfirst($right_answer);
1077
+			$right_answer = ucfirst($right_answer);
1078 1078
 
1079
-        }elseif( 'multiple-choice' == $type ) {
1079
+		}elseif( 'multiple-choice' == $type ) {
1080 1080
 
1081
-            $right_answer = (array) $right_answer;
1082
-            $right_answer = implode( ', ', $right_answer );
1081
+			$right_answer = (array) $right_answer;
1082
+			$right_answer = implode( ', ', $right_answer );
1083 1083
 
1084
-        }elseif( 'gap-fill' == $type ) {
1084
+		}elseif( 'gap-fill' == $type ) {
1085 1085
 
1086
-            $right_answer_array = explode( '||', $right_answer );
1087
-            if ( isset( $right_answer_array[0] ) ) { $gapfill_pre = $right_answer_array[0]; } else { $gapfill_pre = ''; }
1088
-            if ( isset( $right_answer_array[1] ) ) { $gapfill_gap = $right_answer_array[1]; } else { $gapfill_gap = ''; }
1089
-            if ( isset( $right_answer_array[2] ) ) { $gapfill_post = $right_answer_array[2]; } else { $gapfill_post = ''; }
1086
+			$right_answer_array = explode( '||', $right_answer );
1087
+			if ( isset( $right_answer_array[0] ) ) { $gapfill_pre = $right_answer_array[0]; } else { $gapfill_pre = ''; }
1088
+			if ( isset( $right_answer_array[1] ) ) { $gapfill_gap = $right_answer_array[1]; } else { $gapfill_gap = ''; }
1089
+			if ( isset( $right_answer_array[2] ) ) { $gapfill_post = $right_answer_array[2]; } else { $gapfill_post = ''; }
1090 1090
 
1091
-            $right_answer = $gapfill_pre . ' <span class="highlight">' . $gapfill_gap . '</span> ' . $gapfill_post;
1091
+			$right_answer = $gapfill_pre . ' <span class="highlight">' . $gapfill_gap . '</span> ' . $gapfill_post;
1092 1092
 
1093
-        }else{
1093
+		}else{
1094 1094
 
1095
-            // for non auto gradable question types no answer should be returned.
1096
-            $right_answer = '';
1095
+			// for non auto gradable question types no answer should be returned.
1096
+			$right_answer = '';
1097 1097
 
1098
-        }
1098
+		}
1099 1099
 
1100
-        return $right_answer;
1100
+		return $right_answer;
1101 1101
 
1102
-    } // get_correct_answer
1102
+	} // get_correct_answer
1103 1103
 
1104 1104
 } // End Class
1105 1105
 
Please login to merge, or discard this patch.
includes/class-sensei-course.php 2 patches
Indentation   +1397 added lines, -1397 removed lines patch added patch discarded remove patch
@@ -13,21 +13,21 @@  discard block
 block discarded – undo
13 13
  * @since 1.0.0
14 14
  */
15 15
 class Sensei_Course {
16
-    /**
17
-     * @var $token
18
-     */
16
+	/**
17
+	 * @var $token
18
+	 */
19 19
 	public $token;
20 20
 
21
-    /**
22
-     * @var array $meta_fields
23
-     */
21
+	/**
22
+	 * @var array $meta_fields
23
+	 */
24 24
 	public $meta_fields;
25 25
 
26
-    /**
27
-     * @var string|bool $my_courses_page reference to the sites
28
-     * my courses page, false if none was set
29
-     */
30
-    public  $my_courses_page;
26
+	/**
27
+	 * @var string|bool $my_courses_page reference to the sites
28
+	 * my courses page, false if none was set
29
+	 */
30
+	public  $my_courses_page;
31 31
 
32 32
 	/**
33 33
 	 * Constructor.
@@ -35,14 +35,14 @@  discard block
 block discarded – undo
35 35
 	 */
36 36
 	public function __construct () {
37 37
 
38
-        $this->token = 'course';
38
+		$this->token = 'course';
39 39
 
40 40
 		// Setup meta fields for this post type
41 41
 		$this->meta_fields = array( 'course_prerequisite', 'course_featured', 'course_video_embed', 'course_woocommerce_product' );
42 42
 		// Admin actions
43 43
 		if ( is_admin() ) {
44 44
 			// Metabox functions
45
-            add_action( 'add_meta_boxes', array( $this, 'meta_box_setup' ), 20 );
45
+			add_action( 'add_meta_boxes', array( $this, 'meta_box_setup' ), 20 );
46 46
 			add_action( 'save_post', array( $this, 'meta_box_save' ) );
47 47
 			// Custom Write Panel Columns
48 48
 			add_filter( 'manage_edit-course_columns', array( $this, 'add_column_headings' ), 10, 1 );
@@ -58,47 +58,47 @@  discard block
 block discarded – undo
58 58
 		// Update course completion upon grading of a quiz
59 59
 		add_action( 'sensei_user_quiz_grade', array( $this, 'update_status_after_quiz_submission' ), 10, 2 );
60 60
 
61
-        // show the progress bar ont he single course page
62
-        add_action( 'sensei_single_course_content_inside_before' , array( $this, 'the_progress_statement' ), 15 );
63
-        add_action( 'sensei_single_course_content_inside_before' , array( $this, 'the_progress_meter' ), 16 );
61
+		// show the progress bar ont he single course page
62
+		add_action( 'sensei_single_course_content_inside_before' , array( $this, 'the_progress_statement' ), 15 );
63
+		add_action( 'sensei_single_course_content_inside_before' , array( $this, 'the_progress_meter' ), 16 );
64 64
 
65
-        // provide an option to block all emails related to a selected course
66
-        add_filter( 'sensei_send_emails', array( $this, 'block_notification_emails' ) );
67
-        add_action( 'save_post', array( $this, 'save_course_notification_meta_box' ) );
65
+		// provide an option to block all emails related to a selected course
66
+		add_filter( 'sensei_send_emails', array( $this, 'block_notification_emails' ) );
67
+		add_action( 'save_post', array( $this, 'save_course_notification_meta_box' ) );
68 68
 
69
-        // preview lessons on the course content
70
-        add_action( 'sensei_course_content_inside_after',array( $this, 'the_course_free_lesson_preview' ) );
69
+		// preview lessons on the course content
70
+		add_action( 'sensei_course_content_inside_after',array( $this, 'the_course_free_lesson_preview' ) );
71 71
 
72
-        // the course meta
73
-        add_action('sensei_course_content_inside_before', array( $this, 'the_course_meta' ) );
72
+		// the course meta
73
+		add_action('sensei_course_content_inside_before', array( $this, 'the_course_meta' ) );
74 74
 
75
-        // backwards compatible template hooks
76
-        add_action('sensei_course_content_inside_before', array( $this, 'content_before_backwards_compatibility_hooks' ));
77
-        add_action('sensei_loop_course_before', array( $this,'loop_before_backwards_compatibility_hooks' ) );
75
+		// backwards compatible template hooks
76
+		add_action('sensei_course_content_inside_before', array( $this, 'content_before_backwards_compatibility_hooks' ));
77
+		add_action('sensei_loop_course_before', array( $this,'loop_before_backwards_compatibility_hooks' ) );
78 78
 
79
-        // add the user status on the course to the markup as a class
80
-        add_filter('post_class', array( __CLASS__ , 'add_course_user_status_class' ), 20, 3 );
79
+		// add the user status on the course to the markup as a class
80
+		add_filter('post_class', array( __CLASS__ , 'add_course_user_status_class' ), 20, 3 );
81 81
 
82
-        //filter the course query in Sensei specific instances
83
-        add_filter( 'pre_get_posts', array( __CLASS__, 'course_query_filter' ) );
82
+		//filter the course query in Sensei specific instances
83
+		add_filter( 'pre_get_posts', array( __CLASS__, 'course_query_filter' ) );
84 84
 
85
-        //attache the sorting to the course archive
86
-        add_action ( 'sensei_archive_before_course_loop' , array( 'Sensei_Course', 'course_archive_sorting' ) );
85
+		//attache the sorting to the course archive
86
+		add_action ( 'sensei_archive_before_course_loop' , array( 'Sensei_Course', 'course_archive_sorting' ) );
87 87
 
88
-        //attach the filter links to the course archive
89
-        add_action ( 'sensei_archive_before_course_loop' , array( 'Sensei_Course', 'course_archive_filters' ) );
88
+		//attach the filter links to the course archive
89
+		add_action ( 'sensei_archive_before_course_loop' , array( 'Sensei_Course', 'course_archive_filters' ) );
90 90
 
91
-        //filter the course query when featured filter is applied
92
-        add_filter( 'pre_get_posts',  array( __CLASS__, 'course_archive_featured_filter'));
91
+		//filter the course query when featured filter is applied
92
+		add_filter( 'pre_get_posts',  array( __CLASS__, 'course_archive_featured_filter'));
93 93
 
94
-        // handle the order by title post submission
95
-        add_filter( 'pre_get_posts',  array( __CLASS__, 'course_archive_order_by_title'));
94
+		// handle the order by title post submission
95
+		add_filter( 'pre_get_posts',  array( __CLASS__, 'course_archive_order_by_title'));
96 96
 
97
-        // ensure the course category page respects the manual order set for courses
98
-        add_filter( 'pre_get_posts',  array( __CLASS__, 'alter_course_category_order'));
97
+		// ensure the course category page respects the manual order set for courses
98
+		add_filter( 'pre_get_posts',  array( __CLASS__, 'alter_course_category_order'));
99 99
 
100
-        // flush rewrite rules when saving a course
101
-        add_action('save_post', array( 'Sensei_Course', 'flush_rewrite_rules' ) );
100
+		// flush rewrite rules when saving a course
101
+		add_action('save_post', array( 'Sensei_Course', 'flush_rewrite_rules' ) );
102 102
 
103 103
 	} // End __construct()
104 104
 
@@ -151,13 +151,13 @@  discard block
 block discarded – undo
151 151
 		add_meta_box( 'course-video', __( 'Course Video', 'woothemes-sensei' ), array( $this, 'course_video_meta_box_content' ), $this->token, 'normal', 'default' );
152 152
 		// Add Meta Box for Course Lessons
153 153
 		add_meta_box( 'course-lessons', __( 'Course Lessons', 'woothemes-sensei' ), array( $this, 'course_lessons_meta_box_content' ), $this->token, 'normal', 'default' );
154
-        // Add Meta Box to link to Manage Learners
155
-        add_meta_box( 'course-manage', __( 'Course Management', 'woothemes-sensei' ), array( $this, 'course_manage_meta_box_content' ), $this->token, 'side', 'default' );
156
-        // Remove "Custom Settings" meta box.
154
+		// Add Meta Box to link to Manage Learners
155
+		add_meta_box( 'course-manage', __( 'Course Management', 'woothemes-sensei' ), array( $this, 'course_manage_meta_box_content' ), $this->token, 'side', 'default' );
156
+		// Remove "Custom Settings" meta box.
157 157
 		remove_meta_box( 'woothemes-settings', $this->token, 'normal' );
158 158
 
159
-        // add Disable email notification box
160
-        add_meta_box( 'course-notifications', __( 'Course Notifications', 'woothemes-sensei' ), array( $this, 'course_notification_meta_box_content' ), 'course', 'normal', 'default' );
159
+		// add Disable email notification box
160
+		add_meta_box( 'course-notifications', __( 'Course Notifications', 'woothemes-sensei' ), array( $this, 'course_notification_meta_box_content' ), 'course', 'normal', 'default' );
161 161
 
162 162
 	} // End meta_box_setup()
163 163
 
@@ -175,10 +175,10 @@  discard block
 block discarded – undo
175 175
 		$post_args = array(	'post_type' 		=> array( 'product', 'product_variation' ),
176 176
 							'posts_per_page' 		=> -1,
177 177
 							'orderby'         	=> 'title',
178
-    						'order'           	=> 'DESC',
179
-    						'exclude' 			=> $post->ID,
180
-    						'post_status'		=> array( 'publish', 'private', 'draft' ),
181
-    						'tax_query'			=> array(
178
+							'order'           	=> 'DESC',
179
+							'exclude' 			=> $post->ID,
180
+							'post_status'		=> array( 'publish', 'private', 'draft' ),
181
+							'tax_query'			=> array(
182 182
 								array(
183 183
 									'taxonomy'	=> 'product_type',
184 184
 									'field'		=> 'slug',
@@ -206,21 +206,21 @@  discard block
 block discarded – undo
206 206
 						$product_object = get_product( $post_item->ID );
207 207
 						$parent_id = wp_get_post_parent_id( $post_item->ID );
208 208
 
209
-                        if( sensei_check_woocommerce_version( '2.1' ) ) {
209
+						if( sensei_check_woocommerce_version( '2.1' ) ) {
210 210
 							$formatted_variation = wc_get_formatted_variation( $product_object->variation_data, true );
211 211
 
212 212
 						} else {
213
-                            // fall back to pre wc 2.1
213
+							// fall back to pre wc 2.1
214 214
 							$formatted_variation = woocommerce_get_formatted_variation( $product_object->variation_data, true );
215 215
 
216 216
 						}
217 217
 
218
-                        $product_name = ucwords( $formatted_variation );
219
-                        if( empty( $product_name ) ){
218
+						$product_name = ucwords( $formatted_variation );
219
+						if( empty( $product_name ) ){
220 220
 
221
-                            $product_name = __( 'Variation #', 'woothemes-sensei' ) . $product_object->variation_id;
221
+							$product_name = __( 'Variation #', 'woothemes-sensei' ) . $product_object->variation_id;
222 222
 
223
-                        }
223
+						}
224 224
 
225 225
 					} else {
226 226
 
@@ -270,7 +270,7 @@  discard block
 block discarded – undo
270 270
 
271 271
 			} else {
272 272
 
273
-                $html .= '<p>' . "\n";
273
+				$html .= '<p>' . "\n";
274 274
 					$html .= esc_html( __( 'No products exist yet.', 'woothemes-sensei' ) ) . "\n";
275 275
 				$html .= '</p>'."\n";
276 276
 
@@ -296,8 +296,8 @@  discard block
 block discarded – undo
296 296
 		$post_args = array(	'post_type' 		=> 'course',
297 297
 							'posts_per_page' 		=> -1,
298 298
 							'orderby'         	=> 'title',
299
-    						'order'           	=> 'DESC',
300
-    						'exclude' 			=> $post->ID,
299
+							'order'           	=> 'DESC',
300
+							'exclude' 			=> $post->ID,
301 301
 							'suppress_filters' 	=> 0
302 302
 							);
303 303
 		$posts_array = get_posts( $post_args );
@@ -338,7 +338,7 @@  discard block
 block discarded – undo
338 338
 
339 339
 		$checked = '';
340 340
 		if ( isset( $course_featured ) && ( '' != $course_featured ) ) {
341
-	 	    $checked = checked( 'featured', $course_featured, false );
341
+	 		$checked = checked( 'featured', $course_featured, false );
342 342
 	 	} // End If Statement
343 343
 
344 344
 	 	$html .= '<input type="checkbox" name="course_featured" value="featured" ' . $checked . '>&nbsp;' . __( 'Feature this course', 'woothemes-sensei' ) . '<br>';
@@ -433,8 +433,8 @@  discard block
 block discarded – undo
433 433
 			$new_meta_value = ( isset( $_POST[$post_key] ) ? sanitize_html_class( $_POST[$post_key] ) : '' );
434 434
 		} // End If Statement
435 435
 
436
-        // update field with the new value
437
-        return update_post_meta( $post_id, $meta_key, $new_meta_value );
436
+		// update field with the new value
437
+		return update_post_meta( $post_id, $meta_key, $new_meta_value );
438 438
 
439 439
 	} // End save_post_meta()
440 440
 
@@ -458,8 +458,8 @@  discard block
 block discarded – undo
458 458
 
459 459
 		$html = '';
460 460
 		$html .= '<input type="hidden" name="' . esc_attr( 'woo_' . $this->token . '_noonce' ) . '" id="'
461
-                 . esc_attr( 'woo_' . $this->token . '_noonce' )
462
-                 . '" value="' . esc_attr( wp_create_nonce( plugin_basename(__FILE__) ) ) . '" />';
461
+				 . esc_attr( 'woo_' . $this->token . '_noonce' )
462
+				 . '" value="' . esc_attr( wp_create_nonce( plugin_basename(__FILE__) ) ) . '" />';
463 463
 
464 464
 		if ( count( $posts_array ) > 0 ) {
465 465
 
@@ -480,8 +480,8 @@  discard block
 block discarded – undo
480 480
 			$html .= '<p>' . esc_html( __( 'No lessons exist yet for this course.', 'woothemes-sensei' ) ) . "\n";
481 481
 
482 482
 				$html .= '<a href="' . admin_url( 'post-new.php?post_type=lesson' . $course_id )
483
-                         . '" title="' . esc_attr( __( 'Add a Lesson', 'woothemes-sensei' ) ) . '">'
484
-                         . __( 'Please add some.', 'woothemes-sensei' ) . '</a>' . "\n";
483
+						 . '" title="' . esc_attr( __( 'Add a Lesson', 'woothemes-sensei' ) ) . '">'
484
+						 . __( 'Please add some.', 'woothemes-sensei' ) . '</a>' . "\n";
485 485
 
486 486
 			$html .= '</p>'."\n";
487 487
 		} // End If Statement
@@ -490,29 +490,29 @@  discard block
 block discarded – undo
490 490
 
491 491
 	} // End course_lessons_meta_box_content()
492 492
 
493
-    /**
494
-     * course_manage_meta_box_content function.
495
-     *
496
-     * @since 1.9.0
497
-     * @access public
498
-     * @return void
499
-     */
493
+	/**
494
+	 * course_manage_meta_box_content function.
495
+	 *
496
+	 * @since 1.9.0
497
+	 * @access public
498
+	 * @return void
499
+	 */
500 500
 
501
-    public function course_manage_meta_box_content () {
502
-        global $post;
501
+	public function course_manage_meta_box_content () {
502
+		global $post;
503 503
         
504
-        $manage_url = esc_url( add_query_arg( array( 'page' => 'sensei_learners', 'course_id' => $post->ID, 'view' => 'learners' ), admin_url( 'admin.php') ) );
504
+		$manage_url = esc_url( add_query_arg( array( 'page' => 'sensei_learners', 'course_id' => $post->ID, 'view' => 'learners' ), admin_url( 'admin.php') ) );
505 505
 
506
-        $grading_url = esc_url( add_query_arg( array( 'page' => 'sensei_grading', 'course_id' => $post->ID, 'view' => 'learners' ), admin_url( 'admin.php') ) );
506
+		$grading_url = esc_url( add_query_arg( array( 'page' => 'sensei_grading', 'course_id' => $post->ID, 'view' => 'learners' ), admin_url( 'admin.php') ) );
507 507
 
508 508
 
509
-        echo "<ul><li><a href='$manage_url'>".__("Manage Learners", 'woothemes-sensei')."</a></li>";
509
+		echo "<ul><li><a href='$manage_url'>".__("Manage Learners", 'woothemes-sensei')."</a></li>";
510 510
 
511
-        echo "<li><a href='$grading_url'>".__("Manage Grading", 'woothemes-sensei')."</a></li></ul>";
511
+		echo "<li><a href='$grading_url'>".__("Manage Grading", 'woothemes-sensei')."</a></li></ul>";
512 512
 
513 513
 
514 514
 
515
-    } // End course_manage_meta_box_content()
515
+	} // End course_manage_meta_box_content()
516 516
 
517 517
 	/**
518 518
 	 * Add column headings to the "lesson" post list screen.
@@ -653,92 +653,92 @@  discard block
 block discarded – undo
653 653
 			} // End If Statement
654 654
 		} // End If Statement
655 655
 
656
-        $stored_order = get_option( 'sensei_course_order', '' );
657
-        $order = 'ASC';
658
-        $orderby = 'menu_order';
659
-        if( empty( $stored_order ) ){
656
+		$stored_order = get_option( 'sensei_course_order', '' );
657
+		$order = 'ASC';
658
+		$orderby = 'menu_order';
659
+		if( empty( $stored_order ) ){
660 660
 
661
-            $order = 'DESC';
662
-            $orderby = 'date';
661
+			$order = 'DESC';
662
+			$orderby = 'date';
663 663
 
664
-        }
664
+		}
665 665
 
666 666
 		switch ($type) {
667 667
 
668 668
 			case 'usercourses':
669 669
 				$post_args = array(	'post_type' 		=> 'course',
670 670
 									'orderby'         	=> $orderby,
671
-    								'order'           	=> $order,
672
-    								'post_status'      	=> 'publish',
673
-    								'include'			=> $includes,
674
-    								'exclude'			=> $excludes,
675
-    								'suppress_filters' 	=> 0
671
+									'order'           	=> $order,
672
+									'post_status'      	=> 'publish',
673
+									'include'			=> $includes,
674
+									'exclude'			=> $excludes,
675
+									'suppress_filters' 	=> 0
676 676
 									);
677 677
 				break;
678 678
 			case 'freecourses':
679 679
 
680
-                $post_args = array(
681
-                    'post_type' 		=> 'course',
682
-                    'orderby'         	=> $orderby,
683
-                    'order'           	=> $order,
684
-                    'post_status'      	=> 'publish',
685
-                    'exclude'			=> $excludes,
686
-                    'suppress_filters' 	=> 0
687
-                );
688
-                // Sub Query to get all WooCommerce Products that have Zero price
689
-                $post_args['meta_query'] = Sensei_WC::get_free_courses_meta_query_args();
680
+				$post_args = array(
681
+					'post_type' 		=> 'course',
682
+					'orderby'         	=> $orderby,
683
+					'order'           	=> $order,
684
+					'post_status'      	=> 'publish',
685
+					'exclude'			=> $excludes,
686
+					'suppress_filters' 	=> 0
687
+				);
688
+				// Sub Query to get all WooCommerce Products that have Zero price
689
+				$post_args['meta_query'] = Sensei_WC::get_free_courses_meta_query_args();
690 690
 
691
-                break;
691
+				break;
692 692
 
693 693
 			case 'paidcourses':
694 694
 
695
-                $post_args = array(
696
-                    'post_type' 		=> 'course',
697
-                    'orderby'         	=> $orderby,
698
-                    'order'           	=> $order,
699
-                    'post_status'      	=> 'publish',
700
-                    'exclude'			=> $excludes,
701
-                    'suppress_filters' 	=> 0
702
-                );
695
+				$post_args = array(
696
+					'post_type' 		=> 'course',
697
+					'orderby'         	=> $orderby,
698
+					'order'           	=> $order,
699
+					'post_status'      	=> 'publish',
700
+					'exclude'			=> $excludes,
701
+					'suppress_filters' 	=> 0
702
+				);
703 703
 
704
-                // Sub Query to get all WooCommerce Products that have price greater than zero
705
-                $post_args['meta_query'] = Sensei_WC::get_paid_courses_meta_query_args();
704
+				// Sub Query to get all WooCommerce Products that have price greater than zero
705
+				$post_args['meta_query'] = Sensei_WC::get_paid_courses_meta_query_args();
706 706
 
707 707
 				break;
708 708
 
709 709
 			case 'featuredcourses':
710
-                $post_args = array(	'post_type' 		=> 'course',
711
-                                    'orderby'         	=> $orderby,
712
-                                    'order'           	=> $order,
713
-    								'post_status'      	=> 'publish',
714
-    								'meta_value' 		=> 'featured',
715
-    								'meta_key' 			=> '_course_featured',
716
-    								'meta_compare' 		=> '=',
717
-    								'exclude'			=> $excludes,
718
-    								'suppress_filters' 	=> 0
710
+				$post_args = array(	'post_type' 		=> 'course',
711
+									'orderby'         	=> $orderby,
712
+									'order'           	=> $order,
713
+									'post_status'      	=> 'publish',
714
+									'meta_value' 		=> 'featured',
715
+									'meta_key' 			=> '_course_featured',
716
+									'meta_compare' 		=> '=',
717
+									'exclude'			=> $excludes,
718
+									'suppress_filters' 	=> 0
719 719
 									);
720 720
 				break;
721 721
 			default:
722 722
 				$post_args = array(	'post_type' 		=> 'course',
723
-                                    'orderby'         	=> $orderby,
724
-                                    'order'           	=> $order,
725
-    								'post_status'      	=> 'publish',
726
-    								'exclude'			=> $excludes,
727
-    								'suppress_filters' 	=> 0
723
+									'orderby'         	=> $orderby,
724
+									'order'           	=> $order,
725
+									'post_status'      	=> 'publish',
726
+									'exclude'			=> $excludes,
727
+									'suppress_filters' 	=> 0
728 728
 									);
729 729
 				break;
730 730
 
731 731
 		}
732 732
 
733
-        $post_args['posts_per_page'] = $amount;
734
-        $paged = $wp_query->get( 'paged' );
735
-        $post_args['paged'] = empty( $paged) ? 1 : $paged;
733
+		$post_args['posts_per_page'] = $amount;
734
+		$paged = $wp_query->get( 'paged' );
735
+		$post_args['paged'] = empty( $paged) ? 1 : $paged;
736 736
 
737
-        if( 'newcourses' == $type ){
737
+		if( 'newcourses' == $type ){
738 738
 
739
-            $post_args[ 'orderby' ] = 'date';
740
-            $post_args[ 'order' ] = 'DESC';
741
-        }
739
+			$post_args[ 'orderby' ] = 'date';
740
+			$post_args[ 'order' ] = 'DESC';
741
+		}
742 742
 
743 743
 		return $post_args;
744 744
 	}
@@ -748,22 +748,22 @@  discard block
 block discarded – undo
748 748
 	 * course_image function.
749 749
 	 *
750 750
 	 * Outputs the courses image, or first image from a lesson within a course
751
-     *
752
-     * Will echo the image unless return true is specified.
751
+	 *
752
+	 * Will echo the image unless return true is specified.
753 753
 	 *
754 754
 	 * @access public
755 755
 	 * @param int | WP_Post $course_id (default: 0)
756 756
 	 * @param string $width (default: '100')
757 757
 	 * @param string $height (default: '100')
758
-     * @param bool $return default false
759
-     *
758
+	 * @param bool $return default false
759
+	 *
760 760
 	 * @return string | void
761 761
 	 */
762 762
 	public function course_image( $course_id = 0, $width = '100', $height = '100', $return = false ) {
763 763
 
764
-        if( is_a( $course_id, 'WP_Post' ) ){
765
-            $course_id = $course_id->ID;
766
-        }
764
+		if( is_a( $course_id, 'WP_Post' ) ){
765
+			$course_id = $course_id->ID;
766
+		}
767 767
 
768 768
 		$html = '';
769 769
 
@@ -820,7 +820,7 @@  discard block
 block discarded – undo
820 820
  				// Display Image Placeholder if none
821 821
 				if ( Sensei()->settings->get( 'placeholder_images_enable' ) ) {
822 822
 
823
-                    $img_url = apply_filters( 'sensei_course_placeholder_image_url', '<img src="http://placehold.it/' . $width . 'x' . $height . '" class="woo-image thumbnail alignleft" />' );
823
+					$img_url = apply_filters( 'sensei_course_placeholder_image_url', '<img src="http://placehold.it/' . $width . 'x' . $height . '" class="woo-image thumbnail alignleft" />' );
824 824
 
825 825
 				} // End If Statement
826 826
 
@@ -834,15 +834,15 @@  discard block
 block discarded – undo
834 834
 
835 835
 		} // End If Statement
836 836
 
837
-        if( $return ){
837
+		if( $return ){
838 838
 
839
-            return $html;
839
+			return $html;
840 840
 
841
-        }else{
841
+		}else{
842 842
 
843
-            echo $html;
843
+			echo $html;
844 844
 
845
-        }
845
+		}
846 846
 
847 847
 	} // End course_image()
848 848
 
@@ -886,9 +886,9 @@  discard block
 block discarded – undo
886 886
 	 */
887 887
 	public function course_lessons( $course_id = 0, $post_status = 'publish', $fields = 'all' ) {
888 888
 
889
-        if( is_a( $course_id, 'WP_Post' ) ){
890
-            $course_id = $course_id->ID;
891
-        }
889
+		if( is_a( $course_id, 'WP_Post' ) ){
890
+			$course_id = $course_id->ID;
891
+		}
892 892
 
893 893
 		$post_args = array(	'post_type'         => 'lesson',
894 894
 							'posts_per_page'       => -1,
@@ -904,67 +904,67 @@  discard block
 block discarded – undo
904 904
 							'suppress_filters'  => 0,
905 905
 							);
906 906
 		$query_results = new WP_Query( $post_args );
907
-        $lessons = $query_results->posts;
908
-
909
-        // re order the lessons. This could not be done via the OR meta query as there may be lessons
910
-        // with the course order for a different course and this should not be included. It could also not
911
-        // be done via the AND meta query as it excludes lesson that does not have the _order_$course_id but
912
-        // that have been added to the course.
913
-        if( count( $lessons) > 1  ){
914
-
915
-            foreach( $lessons as $lesson ){
916
-
917
-                $order = intval( get_post_meta( $lesson->ID, '_order_'. $course_id, true ) );
918
-                // for lessons with no order set it to be 10000 so that it show up at the end
919
-                $lesson->course_order = $order ? $order : 100000;
920
-            }
921
-
922
-            uasort( $lessons, array( $this, '_short_course_lessons_callback' )   );
923
-        }
924
-
925
-        /**
926
-         * Filter runs inside Sensei_Course::course_lessons function
927
-         *
928
-         * Returns all lessons for a given course
929
-         *
930
-         * @param array $lessons
931
-         * @param int $course_id
932
-         */
933
-        $lessons = apply_filters( 'sensei_course_get_lessons', $lessons, $course_id  );
934
-
935
-        //return the requested fields
936
-        // runs after the sensei_course_get_lessons filter so the filter always give an array of lesson
937
-        // objects
938
-        if( 'ids' == $fields ) {
939
-            $lesson_objects = $lessons;
940
-            $lessons = array();
941
-
942
-            foreach ($lesson_objects as $lesson) {
943
-                $lessons[] = $lesson->ID;
944
-            }
945
-        }
946
-
947
-        return $lessons;
907
+		$lessons = $query_results->posts;
908
+
909
+		// re order the lessons. This could not be done via the OR meta query as there may be lessons
910
+		// with the course order for a different course and this should not be included. It could also not
911
+		// be done via the AND meta query as it excludes lesson that does not have the _order_$course_id but
912
+		// that have been added to the course.
913
+		if( count( $lessons) > 1  ){
914
+
915
+			foreach( $lessons as $lesson ){
916
+
917
+				$order = intval( get_post_meta( $lesson->ID, '_order_'. $course_id, true ) );
918
+				// for lessons with no order set it to be 10000 so that it show up at the end
919
+				$lesson->course_order = $order ? $order : 100000;
920
+			}
921
+
922
+			uasort( $lessons, array( $this, '_short_course_lessons_callback' )   );
923
+		}
924
+
925
+		/**
926
+		 * Filter runs inside Sensei_Course::course_lessons function
927
+		 *
928
+		 * Returns all lessons for a given course
929
+		 *
930
+		 * @param array $lessons
931
+		 * @param int $course_id
932
+		 */
933
+		$lessons = apply_filters( 'sensei_course_get_lessons', $lessons, $course_id  );
934
+
935
+		//return the requested fields
936
+		// runs after the sensei_course_get_lessons filter so the filter always give an array of lesson
937
+		// objects
938
+		if( 'ids' == $fields ) {
939
+			$lesson_objects = $lessons;
940
+			$lessons = array();
941
+
942
+			foreach ($lesson_objects as $lesson) {
943
+				$lessons[] = $lesson->ID;
944
+			}
945
+		}
946
+
947
+		return $lessons;
948 948
 
949 949
 	} // End course_lessons()
950 950
 
951
-    /**
952
-     * Used for the uasort in $this->course_lessons()
953
-     * @since 1.8.0
954
-     * @access protected
955
-     *
956
-     * @param array $lesson_1
957
-     * @param array $lesson_2
958
-     * @return int
959
-     */
960
-    protected function _short_course_lessons_callback( $lesson_1, $lesson_2 ){
951
+	/**
952
+	 * Used for the uasort in $this->course_lessons()
953
+	 * @since 1.8.0
954
+	 * @access protected
955
+	 *
956
+	 * @param array $lesson_1
957
+	 * @param array $lesson_2
958
+	 * @return int
959
+	 */
960
+	protected function _short_course_lessons_callback( $lesson_1, $lesson_2 ){
961 961
 
962
-        if ( $lesson_1->course_order == $lesson_2->course_order ) {
963
-            return 0;
964
-        }
962
+		if ( $lesson_1->course_order == $lesson_2->course_order ) {
963
+			return 0;
964
+		}
965 965
 
966
-        return ($lesson_1->course_order < $lesson_2->course_order) ? -1 : 1;
967
-    }
966
+		return ($lesson_1->course_order < $lesson_2->course_order) ? -1 : 1;
967
+	}
968 968
 
969 969
 	/**
970 970
 	 * Fetch all quiz ids in a course
@@ -1027,15 +1027,15 @@  discard block
 block discarded – undo
1027 1027
 	 */
1028 1028
 	public function course_author_lesson_count( $author_id = 0, $course_id = 0 ) {
1029 1029
 
1030
-        $lesson_args = array(	'post_type' 		=> 'lesson',
1030
+		$lesson_args = array(	'post_type' 		=> 'lesson',
1031 1031
 								'posts_per_page' 		=> -1,
1032
-		    					'author'         	=> $author_id,
1033
-		    					'meta_key'        	=> '_lesson_course',
1034
-    							'meta_value'      	=> $course_id,
1035
-    	    					'post_status'      	=> 'publish',
1036
-    	    					'suppress_filters' 	=> 0,
1032
+								'author'         	=> $author_id,
1033
+								'meta_key'        	=> '_lesson_course',
1034
+								'meta_value'      	=> $course_id,
1035
+								'post_status'      	=> 'publish',
1036
+								'suppress_filters' 	=> 0,
1037 1037
 								'fields'            => 'ids', // less data to retrieve
1038
-		    				);
1038
+							);
1039 1039
 		$lessons_array = get_posts( $lesson_args );
1040 1040
 		$count = count( $lessons_array );
1041 1041
 		return $count;
@@ -1053,17 +1053,17 @@  discard block
 block discarded – undo
1053 1053
 
1054 1054
 		$lesson_args = array(	'post_type' 		=> 'lesson',
1055 1055
 								'posts_per_page' 		=> -1,
1056
-		    					'meta_key'        	=> '_lesson_course',
1057
-    							'meta_value'      	=> $course_id,
1058
-    	    					'post_status'      	=> 'publish',
1059
-    	    					'suppress_filters' 	=> 0,
1056
+								'meta_key'        	=> '_lesson_course',
1057
+								'meta_value'      	=> $course_id,
1058
+								'post_status'      	=> 'publish',
1059
+								'suppress_filters' 	=> 0,
1060 1060
 								'fields'            => 'ids', // less data to retrieve
1061
-		    				);
1061
+							);
1062 1062
 		$lessons_array = get_posts( $lesson_args );
1063 1063
 
1064
-        $count = count( $lessons_array );
1064
+		$count = count( $lessons_array );
1065 1065
 
1066
-        return $count;
1066
+		return $count;
1067 1067
 
1068 1068
 	} // End course_lesson_count()
1069 1069
 
@@ -1078,9 +1078,9 @@  discard block
 block discarded – undo
1078 1078
 
1079 1079
 		$lesson_args = array(	'post_type' 		=> 'lesson',
1080 1080
 								'posts_per_page' 		=> -1,
1081
-    	    					'post_status'      	=> 'publish',
1082
-    	    					'suppress_filters' 	=> 0,
1083
-    	    					'meta_query' => array(
1081
+								'post_status'      	=> 'publish',
1082
+								'suppress_filters' 	=> 0,
1083
+								'meta_query' => array(
1084 1084
 									array(
1085 1085
 										'key' => '_lesson_course',
1086 1086
 										'value' => $course_id
@@ -1091,12 +1091,12 @@  discard block
 block discarded – undo
1091 1091
 									)
1092 1092
 								),
1093 1093
 								'fields'            => 'ids', // less data to retrieve
1094
-		    				);
1094
+							);
1095 1095
 		$lessons_array = get_posts( $lesson_args );
1096 1096
 
1097 1097
 		$count = count( $lessons_array );
1098 1098
 
1099
-        return $count;
1099
+		return $count;
1100 1100
 
1101 1101
 	} // End course_lesson_count()
1102 1102
 
@@ -1115,8 +1115,8 @@  discard block
 block discarded – undo
1115 1115
 			$post_args = array(	'post_type' 		=> 'course',
1116 1116
 								'posts_per_page' 		=> -1,
1117 1117
 								'meta_key'        	=> '_course_woocommerce_product',
1118
-	    						'meta_value'      	=> $product_id,
1119
-	    						'post_status'       => 'publish',
1118
+								'meta_value'      	=> $product_id,
1119
+								'post_status'       => 'publish',
1120 1120
 								'suppress_filters' 	=> 0,
1121 1121
 								'orderby' 			=> 'menu_order date',
1122 1122
 								'order' 			=> 'ASC',
@@ -1157,9 +1157,9 @@  discard block
 block discarded – undo
1157 1157
 
1158 1158
 	/**
1159 1159
 	 * load_user_courses_content generates HTML for user's active & completed courses
1160
-     *
1161
-     * This function also ouputs the html so no need to echo the content.
1162
-     *
1160
+	 *
1161
+	 * This function also ouputs the html so no need to echo the content.
1162
+	 *
1163 1163
 	 * @since  1.4.0
1164 1164
 	 * @param  object  $user   Queried user object
1165 1165
 	 * @param  boolean $manage Whether the user has permission to manage the courses
@@ -1168,17 +1168,17 @@  discard block
 block discarded – undo
1168 1168
 	public function load_user_courses_content( $user = false ) {
1169 1169
 		global $course, $my_courses_page, $my_courses_section;
1170 1170
 
1171
-        if( ! isset( Sensei()->settings->settings[ 'learner_profile_show_courses' ] )
1172
-            || ! Sensei()->settings->settings[ 'learner_profile_show_courses' ] ) {
1171
+		if( ! isset( Sensei()->settings->settings[ 'learner_profile_show_courses' ] )
1172
+			|| ! Sensei()->settings->settings[ 'learner_profile_show_courses' ] ) {
1173 1173
 
1174
-            // do not show the content if the settings doesn't allow for it
1175
-            return;
1174
+			// do not show the content if the settings doesn't allow for it
1175
+			return;
1176 1176
 
1177
-        }
1177
+		}
1178 1178
 
1179
-        $manage = ( $user->ID == get_current_user_id() ) ? true : false;
1179
+		$manage = ( $user->ID == get_current_user_id() ) ? true : false;
1180 1180
 
1181
-        do_action( 'sensei_before_learner_course_content', $user );
1181
+		do_action( 'sensei_before_learner_course_content', $user );
1182 1182
 
1183 1183
 		// Build Output HTML
1184 1184
 		$complete_html = $active_html = '';
@@ -1193,7 +1193,7 @@  discard block
 block discarded – undo
1193 1193
 			// Logic for Active and Completed Courses
1194 1194
 			$per_page = 20;
1195 1195
 			if ( isset( Sensei()->settings->settings[ 'my_course_amount' ] )
1196
-                && ( 0 < absint( Sensei()->settings->settings[ 'my_course_amount' ] ) ) ) {
1196
+				&& ( 0 < absint( Sensei()->settings->settings[ 'my_course_amount' ] ) ) ) {
1197 1197
 
1198 1198
 				$per_page = absint( Sensei()->settings->settings[ 'my_course_amount' ] );
1199 1199
 
@@ -1239,111 +1239,111 @@  discard block
 block discarded – undo
1239 1239
 					}
1240 1240
 				}
1241 1241
 
1242
-			    // Get Course Categories
1243
-			    $category_output = get_the_term_list( $course_item->ID, 'course-category', '', ', ', '' );
1242
+				// Get Course Categories
1243
+				$category_output = get_the_term_list( $course_item->ID, 'course-category', '', ', ', '' );
1244 1244
 
1245
-                $active_html .= '<article class="' . esc_attr( join( ' ', get_post_class( array( 'course', 'post' ), $course_item->ID ) ) ) . '">';
1245
+				$active_html .= '<article class="' . esc_attr( join( ' ', get_post_class( array( 'course', 'post' ), $course_item->ID ) ) ) . '">';
1246 1246
 
1247
-                // Image
1248
-                $active_html .= Sensei()->course->course_image( absint( $course_item->ID ), '100','100', true );
1247
+				// Image
1248
+				$active_html .= Sensei()->course->course_image( absint( $course_item->ID ), '100','100', true );
1249 1249
 
1250
-                // Title
1251
-                $active_html .= '<header>';
1250
+				// Title
1251
+				$active_html .= '<header>';
1252 1252
 
1253
-                $active_html .= '<h2><a href="' . esc_url( get_permalink( absint( $course_item->ID ) ) ) . '" title="' . esc_attr( $course_item->post_title ) . '">' . esc_html( $course_item->post_title ) . '</a></h2>';
1253
+				$active_html .= '<h2><a href="' . esc_url( get_permalink( absint( $course_item->ID ) ) ) . '" title="' . esc_attr( $course_item->post_title ) . '">' . esc_html( $course_item->post_title ) . '</a></h2>';
1254 1254
 
1255
-                $active_html .= '</header>';
1255
+				$active_html .= '</header>';
1256 1256
 
1257
-                $active_html .= '<section class="entry">';
1257
+				$active_html .= '<section class="entry">';
1258 1258
 
1259
-                $active_html .= '<p class="sensei-course-meta">';
1259
+				$active_html .= '<p class="sensei-course-meta">';
1260 1260
 
1261
-                // Author
1262
-                $user_info = get_userdata( absint( $course_item->post_author ) );
1263
-                if ( isset( Sensei()->settings->settings[ 'course_author' ] )
1264
-                    && ( Sensei()->settings->settings[ 'course_author' ] ) ) {
1261
+				// Author
1262
+				$user_info = get_userdata( absint( $course_item->post_author ) );
1263
+				if ( isset( Sensei()->settings->settings[ 'course_author' ] )
1264
+					&& ( Sensei()->settings->settings[ 'course_author' ] ) ) {
1265 1265
 
1266
-                    $active_html .= '<span class="course-author">'
1267
-                        . __( 'by ', 'woothemes-sensei' )
1268
-                        . '<a href="' . esc_url( get_author_posts_url( absint( $course_item->post_author ) ) )
1269
-                        . '" title="' . esc_attr( $user_info->display_name ) . '">'
1270
-                        . esc_html( $user_info->display_name )
1271
-                        . '</a></span>';
1266
+					$active_html .= '<span class="course-author">'
1267
+						. __( 'by ', 'woothemes-sensei' )
1268
+						. '<a href="' . esc_url( get_author_posts_url( absint( $course_item->post_author ) ) )
1269
+						. '" title="' . esc_attr( $user_info->display_name ) . '">'
1270
+						. esc_html( $user_info->display_name )
1271
+						. '</a></span>';
1272 1272
 
1273
-                } // End If Statement
1273
+				} // End If Statement
1274 1274
 
1275
-                // Lesson count for this author
1276
-                $lesson_count = Sensei()->course->course_lesson_count( absint( $course_item->ID ) );
1277
-                // Handle Division by Zero
1278
-                if ( 0 == $lesson_count ) {
1275
+				// Lesson count for this author
1276
+				$lesson_count = Sensei()->course->course_lesson_count( absint( $course_item->ID ) );
1277
+				// Handle Division by Zero
1278
+				if ( 0 == $lesson_count ) {
1279 1279
 
1280
-                    $lesson_count = 1;
1280
+					$lesson_count = 1;
1281 1281
 
1282
-                } // End If Statement
1283
-                $active_html .= '<span class="course-lesson-count">' . $lesson_count . '&nbsp;' .  __( 'Lessons', 'woothemes-sensei' ) . '</span>';
1284
-                // Course Categories
1285
-                if ( '' != $category_output ) {
1282
+				} // End If Statement
1283
+				$active_html .= '<span class="course-lesson-count">' . $lesson_count . '&nbsp;' .  __( 'Lessons', 'woothemes-sensei' ) . '</span>';
1284
+				// Course Categories
1285
+				if ( '' != $category_output ) {
1286 1286
 
1287
-                    $active_html .= '<span class="course-category">' . sprintf( __( 'in %s', 'woothemes-sensei' ), $category_output ) . '</span>';
1287
+					$active_html .= '<span class="course-category">' . sprintf( __( 'in %s', 'woothemes-sensei' ), $category_output ) . '</span>';
1288 1288
 
1289
-                } // End If Statement
1290
-                $active_html .= '<span class="course-lesson-progress">' . sprintf( __( '%1$d of %2$d lessons completed', 'woothemes-sensei' ) , $lessons_completed, $lesson_count  ) . '</span>';
1289
+				} // End If Statement
1290
+				$active_html .= '<span class="course-lesson-progress">' . sprintf( __( '%1$d of %2$d lessons completed', 'woothemes-sensei' ) , $lessons_completed, $lesson_count  ) . '</span>';
1291 1291
 
1292
-                $active_html .= '</p>';
1292
+				$active_html .= '</p>';
1293 1293
 
1294
-                $active_html .= '<p class="course-excerpt">' . $course_item->post_excerpt . '</p>';
1294
+				$active_html .= '<p class="course-excerpt">' . $course_item->post_excerpt . '</p>';
1295 1295
 
1296 1296
 
1297 1297
 
1298
-                $progress_percentage = abs( round( ( doubleval( $lessons_completed ) * 100 ) / ( $lesson_count ), 0 ) );
1298
+				$progress_percentage = abs( round( ( doubleval( $lessons_completed ) * 100 ) / ( $lesson_count ), 0 ) );
1299 1299
 
1300
-                $active_html .= $this->get_progress_meter( $progress_percentage );
1300
+				$active_html .= $this->get_progress_meter( $progress_percentage );
1301 1301
 
1302
-                $active_html .= '</section>';
1302
+				$active_html .= '</section>';
1303 1303
 
1304
-                if( is_user_logged_in() ) {
1304
+				if( is_user_logged_in() ) {
1305 1305
 
1306
-                    $active_html .= '<section class="entry-actions">';
1306
+					$active_html .= '<section class="entry-actions">';
1307 1307
 
1308
-                    $active_html .= '<form method="POST" action="' . esc_url( remove_query_arg( array( 'active_page', 'completed_page' ) ) ) . '">';
1308
+					$active_html .= '<form method="POST" action="' . esc_url( remove_query_arg( array( 'active_page', 'completed_page' ) ) ) . '">';
1309 1309
 
1310
-                    $active_html .= '<input type="hidden" name="' . esc_attr( 'woothemes_sensei_complete_course_noonce' ) . '" id="' . esc_attr( 'woothemes_sensei_complete_course_noonce' ) . '" value="' . esc_attr( wp_create_nonce( 'woothemes_sensei_complete_course_noonce' ) ) . '" />';
1310
+					$active_html .= '<input type="hidden" name="' . esc_attr( 'woothemes_sensei_complete_course_noonce' ) . '" id="' . esc_attr( 'woothemes_sensei_complete_course_noonce' ) . '" value="' . esc_attr( wp_create_nonce( 'woothemes_sensei_complete_course_noonce' ) ) . '" />';
1311 1311
 
1312
-                    $active_html .= '<input type="hidden" name="course_complete_id" id="course-complete-id" value="' . esc_attr( absint( $course_item->ID ) ) . '" />';
1312
+					$active_html .= '<input type="hidden" name="course_complete_id" id="course-complete-id" value="' . esc_attr( absint( $course_item->ID ) ) . '" />';
1313 1313
 
1314
-                    if ( 0 < absint( count( $course_lessons ) ) && Sensei()->settings->settings['course_completion'] == 'complete' ) {
1314
+					if ( 0 < absint( count( $course_lessons ) ) && Sensei()->settings->settings['course_completion'] == 'complete' ) {
1315 1315
 
1316
-                        $active_html .= '<span><input name="course_complete" type="submit" class="course-complete" value="'
1317
-                            .  __( 'Mark as Complete', 'woothemes-sensei' ) . '"/> </span>';
1316
+						$active_html .= '<span><input name="course_complete" type="submit" class="course-complete" value="'
1317
+							.  __( 'Mark as Complete', 'woothemes-sensei' ) . '"/> </span>';
1318 1318
 
1319
-                    } // End If Statement
1319
+					} // End If Statement
1320 1320
 
1321
-                    $course_purchased = false;
1322
-                    if ( Sensei_WC::is_woocommerce_active() ) {
1321
+					$course_purchased = false;
1322
+					if ( Sensei_WC::is_woocommerce_active() ) {
1323 1323
 
1324
-                        // Get the product ID
1325
-                        $wc_post_id = get_post_meta( absint( $course_item->ID ), '_course_woocommerce_product', true );
1326
-                        if ( 0 < $wc_post_id ) {
1324
+						// Get the product ID
1325
+						$wc_post_id = get_post_meta( absint( $course_item->ID ), '_course_woocommerce_product', true );
1326
+						if ( 0 < $wc_post_id ) {
1327 1327
 
1328
-                            $course_purchased = Sensei_WC::has_customer_bought_product(  $user->ID, $wc_post_id );
1328
+							$course_purchased = Sensei_WC::has_customer_bought_product(  $user->ID, $wc_post_id );
1329 1329
 
1330
-                        } // End If Statement
1330
+						} // End If Statement
1331 1331
 
1332
-                    } // End If Statement
1332
+					} // End If Statement
1333 1333
 
1334
-                    if ( false == $course_purchased ) {
1334
+					if ( false == $course_purchased ) {
1335 1335
 
1336
-                        $active_html .= '<span><input name="course_complete" type="submit" class="course-delete" value="'
1337
-                            .  __( 'Delete Course', 'woothemes-sensei' ) . '"/></span>';
1336
+						$active_html .= '<span><input name="course_complete" type="submit" class="course-delete" value="'
1337
+							.  __( 'Delete Course', 'woothemes-sensei' ) . '"/></span>';
1338 1338
 
1339
-                    } // End If Statement
1339
+					} // End If Statement
1340 1340
 
1341
-                    $active_html .= '</form>';
1341
+					$active_html .= '</form>';
1342 1342
 
1343
-                    $active_html .= '</section>';
1344
-                }
1343
+					$active_html .= '</section>';
1344
+				}
1345 1345
 
1346
-                $active_html .= '</article>';
1346
+				$active_html .= '</article>';
1347 1347
 			}
1348 1348
 
1349 1349
 			// Active pagination
@@ -1383,49 +1383,49 @@  discard block
 block discarded – undo
1383 1383
 			foreach ( $completed_courses as $course_item ) {
1384 1384
 				$course = $course_item;
1385 1385
 
1386
-			    // Get Course Categories
1387
-			    $category_output = get_the_term_list( $course_item->ID, 'course-category', '', ', ', '' );
1386
+				// Get Course Categories
1387
+				$category_output = get_the_term_list( $course_item->ID, 'course-category', '', ', ', '' );
1388 1388
 
1389
-		    	$complete_html .= '<article class="' . join( ' ', get_post_class( array( 'course', 'post' ), $course_item->ID ) ) . '">';
1389
+				$complete_html .= '<article class="' . join( ' ', get_post_class( array( 'course', 'post' ), $course_item->ID ) ) . '">';
1390 1390
 
1391
-		    	    // Image
1392
-		    		$complete_html .= Sensei()->course->course_image( absint( $course_item->ID ),100, 100, true );
1391
+					// Image
1392
+					$complete_html .= Sensei()->course->course_image( absint( $course_item->ID ),100, 100, true );
1393 1393
 
1394
-		    		// Title
1395
-		    		$complete_html .= '<header>';
1394
+					// Title
1395
+					$complete_html .= '<header>';
1396 1396
 
1397
-		    		    $complete_html .= '<h2><a href="' . esc_url( get_permalink( absint( $course_item->ID ) ) ) . '" title="' . esc_attr( $course_item->post_title ) . '">' . esc_html( $course_item->post_title ) . '</a></h2>';
1397
+						$complete_html .= '<h2><a href="' . esc_url( get_permalink( absint( $course_item->ID ) ) ) . '" title="' . esc_attr( $course_item->post_title ) . '">' . esc_html( $course_item->post_title ) . '</a></h2>';
1398 1398
 
1399
-		    		$complete_html .= '</header>';
1399
+					$complete_html .= '</header>';
1400 1400
 
1401
-		    		$complete_html .= '<section class="entry">';
1401
+					$complete_html .= '<section class="entry">';
1402 1402
 
1403
-		    			$complete_html .= '<p class="sensei-course-meta">';
1403
+						$complete_html .= '<p class="sensei-course-meta">';
1404 1404
 
1405
-		    		    	// Author
1406
-		    		    	$user_info = get_userdata( absint( $course_item->post_author ) );
1407
-		    		    	if ( isset( Sensei()->settings->settings[ 'course_author' ] ) && ( Sensei()->settings->settings[ 'course_author' ] ) ) {
1408
-		    		    		$complete_html .= '<span class="course-author">' . __( 'by ', 'woothemes-sensei' ) . '<a href="' . esc_url( get_author_posts_url( absint( $course_item->post_author ) ) ) . '" title="' . esc_attr( $user_info->display_name ) . '">' . esc_html( $user_info->display_name ) . '</a></span>';
1409
-		    		    	} // End If Statement
1405
+							// Author
1406
+							$user_info = get_userdata( absint( $course_item->post_author ) );
1407
+							if ( isset( Sensei()->settings->settings[ 'course_author' ] ) && ( Sensei()->settings->settings[ 'course_author' ] ) ) {
1408
+								$complete_html .= '<span class="course-author">' . __( 'by ', 'woothemes-sensei' ) . '<a href="' . esc_url( get_author_posts_url( absint( $course_item->post_author ) ) ) . '" title="' . esc_attr( $user_info->display_name ) . '">' . esc_html( $user_info->display_name ) . '</a></span>';
1409
+							} // End If Statement
1410 1410
 
1411
-		    		    	// Lesson count for this author
1412
-		    		    	$complete_html .= '<span class="course-lesson-count">'
1413
-                                . Sensei()->course->course_lesson_count( absint( $course_item->ID ) )
1414
-                                . '&nbsp;' .  __( 'Lessons', 'woothemes-sensei' )
1415
-                                . '</span>';
1411
+							// Lesson count for this author
1412
+							$complete_html .= '<span class="course-lesson-count">'
1413
+								. Sensei()->course->course_lesson_count( absint( $course_item->ID ) )
1414
+								. '&nbsp;' .  __( 'Lessons', 'woothemes-sensei' )
1415
+								. '</span>';
1416 1416
 
1417
-		    		    	// Course Categories
1418
-		    		    	if ( '' != $category_output ) {
1417
+							// Course Categories
1418
+							if ( '' != $category_output ) {
1419 1419
 
1420
-		    		    		$complete_html .= '<span class="course-category">' . sprintf( __( 'in %s', 'woothemes-sensei' ), $category_output ) . '</span>';
1420
+								$complete_html .= '<span class="course-category">' . sprintf( __( 'in %s', 'woothemes-sensei' ), $category_output ) . '</span>';
1421 1421
 
1422
-		    		    	} // End If Statement
1422
+							} // End If Statement
1423 1423
 
1424 1424
 						$complete_html .= '</p>';
1425 1425
 
1426 1426
 						$complete_html .= '<p class="course-excerpt">' . $course_item->post_excerpt . '</p>';
1427 1427
 
1428
-                        $complete_html .= $this->get_progress_meter( 100 );
1428
+						$complete_html .= $this->get_progress_meter( 100 );
1429 1429
 
1430 1430
 						if( $manage ) {
1431 1431
 							$has_quizzes = Sensei()->course->course_quizzes( $course_item->ID, true );
@@ -1438,9 +1438,9 @@  discard block
 block discarded – undo
1438 1438
 								if( $has_quizzes ) {
1439 1439
 
1440 1440
 									$results_link = '<a class="button view-results" href="'
1441
-                                        . Sensei()->course_results->get_permalink( $course_item->ID )
1442
-                                        . '">' . __( 'View results', 'woothemes-sensei' )
1443
-                                        . '</a>';
1441
+										. Sensei()->course_results->get_permalink( $course_item->ID )
1442
+										. '">' . __( 'View results', 'woothemes-sensei' )
1443
+										. '</a>';
1444 1444
 								}
1445 1445
 								$complete_html .= apply_filters( 'sensei_results_links', $results_link );
1446 1446
 								$complete_html .= '</p>';
@@ -1448,9 +1448,9 @@  discard block
 block discarded – undo
1448 1448
 							}
1449 1449
 						}
1450 1450
 
1451
-		    		$complete_html .= '</section>';
1451
+					$complete_html .= '</section>';
1452 1452
 
1453
-		    	$complete_html .= '</article>';
1453
+				$complete_html .= '</article>';
1454 1454
 			}
1455 1455
 
1456 1456
 			// Active pagination
@@ -1525,16 +1525,16 @@  discard block
 block discarded – undo
1525 1525
 		    <?php do_action( 'sensei_before_active_user_courses' ); ?>
1526 1526
 
1527 1527
 		    <?php
1528
-            $course_page_url = Sensei_Course::get_courses_page_url();
1529
-            ?>
1528
+			$course_page_url = Sensei_Course::get_courses_page_url();
1529
+			?>
1530 1530
 
1531 1531
 		    <div id="active-courses">
1532 1532
 
1533 1533
 		    	<?php if ( '' != $active_html ) {
1534 1534
 
1535
-		    		echo $active_html;
1535
+					echo $active_html;
1536 1536
 
1537
-		    	} else { ?>
1537
+				} else { ?>
1538 1538
 
1539 1539
 		    		<div class="sensei-message info">
1540 1540
 
@@ -1560,9 +1560,9 @@  discard block
 block discarded – undo
1560 1560
 
1561 1561
 		    	<?php if ( '' != $complete_html ) {
1562 1562
 
1563
-		    		echo $complete_html;
1563
+					echo $complete_html;
1564 1564
 
1565
-		    	} else { ?>
1565
+				} else { ?>
1566 1566
 
1567 1567
 		    		<div class="sensei-message info">
1568 1568
 
@@ -1581,355 +1581,355 @@  discard block
 block discarded – undo
1581 1581
 		<?php do_action( 'sensei_after_user_courses' ); ?>
1582 1582
 
1583 1583
 		<?php
1584
-        echo ob_get_clean();
1584
+		echo ob_get_clean();
1585 1585
 
1586
-        do_action( 'sensei_after_learner_course_content', $user );
1586
+		do_action( 'sensei_after_learner_course_content', $user );
1587 1587
 
1588 1588
 	} // end load_user_courses_content
1589 1589
 
1590
-    /**
1591
-     * Returns a list of all courses
1592
-     *
1593
-     * @since 1.8.0
1594
-     * @return array $courses{
1595
-     *  @type $course WP_Post
1596
-     * }
1597
-     */
1598
-    public static function get_all_courses(){
1599
-
1600
-        $args = array(
1601
-               'post_type' => 'course',
1602
-                'posts_per_page' 		=> -1,
1603
-                'orderby'         	=> 'title',
1604
-                'order'           	=> 'ASC',
1605
-                'post_status'      	=> 'any',
1606
-                'suppress_filters' 	=> 0,
1607
-        );
1608
-
1609
-        $wp_query_obj =  new WP_Query( $args );
1610
-
1611
-        /**
1612
-         * sensei_get_all_courses filter
1613
-         *
1614
-         * This filter runs inside Sensei_Course::get_all_courses.
1615
-         *
1616
-         * @param array $courses{
1617
-         *  @type WP_Post
1618
-         * }
1619
-         * @param array $attributes
1620
-         */
1621
-        return apply_filters( 'sensei_get_all_courses' , $wp_query_obj->posts );
1622
-
1623
-    }// end get_all_courses
1624
-
1625
-    /**
1626
-     * Generate the course meter component
1627
-     *
1628
-     * @since 1.8.0
1629
-     * @param int $progress_percentage 0 - 100
1630
-     * @return string $progress_bar_html
1631
-     */
1632
-    public function get_progress_meter( $progress_percentage ){
1633
-
1634
-        if ( 50 < $progress_percentage ) {
1635
-            $class = ' green';
1636
-        } elseif ( 25 <= $progress_percentage && 50 >= $progress_percentage ) {
1637
-            $class = ' orange';
1638
-        } else {
1639
-            $class = ' red';
1640
-        }
1641
-        $progress_bar_html = '<div class="meter' . esc_attr( $class ) . '"><span style="width: ' . $progress_percentage . '%">' . round( $progress_percentage ) . '%</span></div>';
1642
-
1643
-        return $progress_bar_html;
1644
-
1645
-    }// end get_progress_meter
1646
-
1647
-    /**
1648
-     * Generate a statement that tells users
1649
-     * how far they are in the course.
1650
-     *
1651
-     * @param int $course_id
1652
-     * @param int $user_id
1653
-     *
1654
-     * @return string $statement_html
1655
-     */
1656
-    public function get_progress_statement( $course_id, $user_id ){
1657
-
1658
-        if( empty( $course_id ) || empty( $user_id )
1659
-        || ! Sensei_Utils::user_started_course( $course_id, $user_id ) ){
1660
-            return '';
1661
-        }
1662
-
1663
-        $completed = count( $this->get_completed_lesson_ids( $course_id, $user_id ) );
1664
-        $total_lessons = count( $this->course_lessons( $course_id ) );
1665
-
1666
-        $statement = sprintf( _n('Currently completed %s lesson of %s in total', 'Currently completed %s lessons of %s in total', $completed, 'woothemes-sensei'), $completed, $total_lessons );
1667
-
1668
-        /**
1669
-         * Filter the course completion statement.
1670
-         * Default Currently completed $var lesson($plural) of $var in total
1671
-         *
1672
-         * @param string $statement
1673
-         */
1674
-        return apply_filters( 'sensei_course_completion_statement', $statement );
1675
-
1676
-    }// end generate_progress_statement
1677
-
1678
-    /**
1679
-     * Output the course progress statement
1680
-     *
1681
-     * @param $course_id
1682
-     * @return void
1683
-     */
1684
-    public function the_progress_statement( $course_id = 0, $user_id = 0 ){
1685
-        if( empty( $course_id ) ){
1686
-            global $post;
1687
-            $course_id = $post->ID;
1688
-        }
1689
-
1690
-        if( empty( $user_id ) ){
1691
-            $user_id = get_current_user_id();
1692
-        }
1693
-
1694
-        echo '<span class="progress statement  course-completion-rate">' . $this->get_progress_statement( $course_id, $user_id  ) . '</span>';
1695
-    }
1696
-
1697
-    /**
1698
-     * Output the course progress bar
1699
-     *
1700
-     * @param $course_id
1701
-     * @return void
1702
-     */
1703
-    public function the_progress_meter( $course_id = 0, $user_id = 0 ){
1704
-
1705
-        if( empty( $course_id ) ){
1706
-            global $post;
1707
-            $course_id = $post->ID;
1708
-        }
1709
-
1710
-        if( empty( $user_id ) ){
1711
-            $user_id = get_current_user_id();
1712
-        }
1713
-
1714
-        if( 'course' != get_post_type( $course_id ) || ! get_userdata( $user_id )
1715
-            || ! Sensei_Utils::user_started_course( $course_id ,$user_id ) ){
1716
-            return;
1717
-        }
1718
-        $percentage_completed = $this->get_completion_percentage( $course_id, $user_id );
1719
-
1720
-        echo $this->get_progress_meter( $percentage_completed );
1721
-
1722
-    }// end the_progress_meter
1723
-
1724
-    /**
1725
-     * Checks how many lessons are completed
1726
-     *
1727
-     * @since 1.8.0
1728
-     *
1729
-     * @param int $course_id
1730
-     * @param int $user_id
1731
-     * @return array $completed_lesson_ids
1732
-     */
1733
-    public function get_completed_lesson_ids( $course_id, $user_id = 0 ){
1734
-
1735
-        if( !( intval( $user_id ) ) > 0 ){
1736
-            $user_id = get_current_user_id();
1737
-        }
1590
+	/**
1591
+	 * Returns a list of all courses
1592
+	 *
1593
+	 * @since 1.8.0
1594
+	 * @return array $courses{
1595
+	 *  @type $course WP_Post
1596
+	 * }
1597
+	 */
1598
+	public static function get_all_courses(){
1599
+
1600
+		$args = array(
1601
+			   'post_type' => 'course',
1602
+				'posts_per_page' 		=> -1,
1603
+				'orderby'         	=> 'title',
1604
+				'order'           	=> 'ASC',
1605
+				'post_status'      	=> 'any',
1606
+				'suppress_filters' 	=> 0,
1607
+		);
1608
+
1609
+		$wp_query_obj =  new WP_Query( $args );
1610
+
1611
+		/**
1612
+		 * sensei_get_all_courses filter
1613
+		 *
1614
+		 * This filter runs inside Sensei_Course::get_all_courses.
1615
+		 *
1616
+		 * @param array $courses{
1617
+		 *  @type WP_Post
1618
+		 * }
1619
+		 * @param array $attributes
1620
+		 */
1621
+		return apply_filters( 'sensei_get_all_courses' , $wp_query_obj->posts );
1622
+
1623
+	}// end get_all_courses
1738 1624
 
1739
-        $completed_lesson_ids = array();
1625
+	/**
1626
+	 * Generate the course meter component
1627
+	 *
1628
+	 * @since 1.8.0
1629
+	 * @param int $progress_percentage 0 - 100
1630
+	 * @return string $progress_bar_html
1631
+	 */
1632
+	public function get_progress_meter( $progress_percentage ){
1740 1633
 
1741
-        $course_lessons = $this->course_lessons( $course_id );
1634
+		if ( 50 < $progress_percentage ) {
1635
+			$class = ' green';
1636
+		} elseif ( 25 <= $progress_percentage && 50 >= $progress_percentage ) {
1637
+			$class = ' orange';
1638
+		} else {
1639
+			$class = ' red';
1640
+		}
1641
+		$progress_bar_html = '<div class="meter' . esc_attr( $class ) . '"><span style="width: ' . $progress_percentage . '%">' . round( $progress_percentage ) . '%</span></div>';
1742 1642
 
1743
-        foreach( $course_lessons as $lesson ){
1643
+		return $progress_bar_html;
1744 1644
 
1745
-            $is_lesson_completed = Sensei_Utils::user_completed_lesson( $lesson->ID, $user_id );
1746
-            if( $is_lesson_completed ){
1747
-                $completed_lesson_ids[] = $lesson->ID;
1748
-            }
1749
-
1750
-        }
1751
-
1752
-        return $completed_lesson_ids;
1645
+	}// end get_progress_meter
1753 1646
 
1754
-    }// end get_completed_lesson_ids
1647
+	/**
1648
+	 * Generate a statement that tells users
1649
+	 * how far they are in the course.
1650
+	 *
1651
+	 * @param int $course_id
1652
+	 * @param int $user_id
1653
+	 *
1654
+	 * @return string $statement_html
1655
+	 */
1656
+	public function get_progress_statement( $course_id, $user_id ){
1755 1657
 
1756
-    /**
1757
-     * Calculate the perceantage completed in the course
1758
-     *
1759
-     * @since 1.8.0
1760
-     *
1761
-     * @param int $course_id
1762
-     * @param int $user_id
1763
-     * @return int $percentage
1764
-     */
1765
-    public function get_completion_percentage( $course_id, $user_id = 0 ){
1766
-
1767
-        if( !( intval( $user_id ) ) > 0 ){
1768
-            $user_id = get_current_user_id();
1769
-        }
1770
-
1771
-        $completed = count( $this->get_completed_lesson_ids( $course_id, $user_id ) );
1772
-
1773
-        if( ! (  $completed  > 0 ) ){
1774
-            return 0;
1775
-        }
1776
-
1777
-        $total_lessons = count( $this->course_lessons( $course_id ) );
1778
-        $percentage = $completed / $total_lessons * 100;
1779
-
1780
-        /**
1781
-         *
1782
-         * Filter the percentage returned for a users course.
1783
-         *
1784
-         * @param $percentage
1785
-         * @param $course_id
1786
-         * @param $user_id
1787
-         * @since 1.8.0
1788
-         */
1789
-        return apply_filters( 'sensei_course_completion_percentage', $percentage, $course_id, $user_id );
1658
+		if( empty( $course_id ) || empty( $user_id )
1659
+		|| ! Sensei_Utils::user_started_course( $course_id, $user_id ) ){
1660
+			return '';
1661
+		}
1790 1662
 
1791
-    }// end get_completed_lesson_ids
1663
+		$completed = count( $this->get_completed_lesson_ids( $course_id, $user_id ) );
1664
+		$total_lessons = count( $this->course_lessons( $course_id ) );
1792 1665
 
1793
-    /**
1794
-     * Block email notifications for the specific courses
1795
-     * that the user disabled the notifications.
1796
-     *
1797
-     * @since 1.8.0
1798
-     * @param $should_send
1799
-     * @return bool
1800
-     */
1801
-    public function block_notification_emails( $should_send ){
1802
-        global $sensei_email_data;
1803
-        $email = $sensei_email_data;
1666
+		$statement = sprintf( _n('Currently completed %s lesson of %s in total', 'Currently completed %s lessons of %s in total', $completed, 'woothemes-sensei'), $completed, $total_lessons );
1804 1667
 
1805
-        $course_id = '';
1668
+		/**
1669
+		 * Filter the course completion statement.
1670
+		 * Default Currently completed $var lesson($plural) of $var in total
1671
+		 *
1672
+		 * @param string $statement
1673
+		 */
1674
+		return apply_filters( 'sensei_course_completion_statement', $statement );
1806 1675
 
1807
-        if( isset( $email['course_id'] ) ){
1676
+	}// end generate_progress_statement
1808 1677
 
1809
-            $course_id = $email['course_id'];
1810
-
1811
-        }elseif( isset( $email['lesson_id'] ) ){
1678
+	/**
1679
+	 * Output the course progress statement
1680
+	 *
1681
+	 * @param $course_id
1682
+	 * @return void
1683
+	 */
1684
+	public function the_progress_statement( $course_id = 0, $user_id = 0 ){
1685
+		if( empty( $course_id ) ){
1686
+			global $post;
1687
+			$course_id = $post->ID;
1688
+		}
1812 1689
 
1813
-            $course_id = Sensei()->lesson->get_course_id( $email['lesson_id'] );
1690
+		if( empty( $user_id ) ){
1691
+			$user_id = get_current_user_id();
1692
+		}
1814 1693
 
1815
-        }elseif( isset( $email['quiz_id'] ) ){
1694
+		echo '<span class="progress statement  course-completion-rate">' . $this->get_progress_statement( $course_id, $user_id  ) . '</span>';
1695
+	}
1696
+
1697
+	/**
1698
+	 * Output the course progress bar
1699
+	 *
1700
+	 * @param $course_id
1701
+	 * @return void
1702
+	 */
1703
+	public function the_progress_meter( $course_id = 0, $user_id = 0 ){
1704
+
1705
+		if( empty( $course_id ) ){
1706
+			global $post;
1707
+			$course_id = $post->ID;
1708
+		}
1709
+
1710
+		if( empty( $user_id ) ){
1711
+			$user_id = get_current_user_id();
1712
+		}
1816 1713
 
1817
-            $lesson_id = Sensei()->quiz->get_lesson_id( $email['quiz_id'] );
1818
-            $course_id = Sensei()->lesson->get_course_id( $lesson_id );
1714
+		if( 'course' != get_post_type( $course_id ) || ! get_userdata( $user_id )
1715
+			|| ! Sensei_Utils::user_started_course( $course_id ,$user_id ) ){
1716
+			return;
1717
+		}
1718
+		$percentage_completed = $this->get_completion_percentage( $course_id, $user_id );
1819 1719
 
1820
-        }
1720
+		echo $this->get_progress_meter( $percentage_completed );
1721
+
1722
+	}// end the_progress_meter
1723
+
1724
+	/**
1725
+	 * Checks how many lessons are completed
1726
+	 *
1727
+	 * @since 1.8.0
1728
+	 *
1729
+	 * @param int $course_id
1730
+	 * @param int $user_id
1731
+	 * @return array $completed_lesson_ids
1732
+	 */
1733
+	public function get_completed_lesson_ids( $course_id, $user_id = 0 ){
1734
+
1735
+		if( !( intval( $user_id ) ) > 0 ){
1736
+			$user_id = get_current_user_id();
1737
+		}
1738
+
1739
+		$completed_lesson_ids = array();
1740
+
1741
+		$course_lessons = $this->course_lessons( $course_id );
1742
+
1743
+		foreach( $course_lessons as $lesson ){
1744
+
1745
+			$is_lesson_completed = Sensei_Utils::user_completed_lesson( $lesson->ID, $user_id );
1746
+			if( $is_lesson_completed ){
1747
+				$completed_lesson_ids[] = $lesson->ID;
1748
+			}
1749
+
1750
+		}
1821 1751
 
1822
-        if( !empty( $course_id ) && 'course'== get_post_type( $course_id ) ) {
1823
-
1824
-            $course_emails_disabled = get_post_meta($course_id, 'disable_notification', true);
1825
-
1826
-            if ($course_emails_disabled) {
1827
-
1828
-                return false;
1829
-
1830
-            }
1831
-
1832
-        }// end if
1833
-
1834
-        return $should_send;
1835
-    }// end block_notification_emails
1836
-
1837
-    /**
1838
-     * Render the course notification setting meta box
1839
-     *
1840
-     * @since 1.8.0
1841
-     * @param $course
1842
-     */
1843
-    public function course_notification_meta_box_content( $course ){
1844
-
1845
-        $checked = get_post_meta( $course->ID , 'disable_notification', true );
1846
-
1847
-        // generate checked html
1848
-        $checked_html = '';
1849
-        if( $checked ){
1850
-            $checked_html = 'checked="checked"';
1851
-        }
1852
-        wp_nonce_field( 'update-course-notification-setting','_sensei_course_notification' );
1853
-
1854
-        echo '<input id="disable_sensei_course_notification" '.$checked_html .' type="checkbox" name="disable_sensei_course_notification" >';
1855
-        echo '<label for="disable_sensei_course_notification">'.__('Disable notifications on this course ?', 'woothemes-sensei'). '</label>';
1856
-
1857
-    }// end course_notification_meta_box_content
1858
-
1859
-    /**
1860
-     * Store the setting for the course notification setting.
1861
-     *
1862
-     * @hooked int save_post
1863
-     * @since 1.8.0
1864
-     *
1865
-     * @param $course_id
1866
-     */
1867
-    public function save_course_notification_meta_box( $course_id ){
1868
-
1869
-        if( !isset( $_POST['_sensei_course_notification']  )
1870
-            || ! wp_verify_nonce( $_POST['_sensei_course_notification'], 'update-course-notification-setting' ) ){
1871
-            return;
1872
-        }
1873
-
1874
-        if( isset( $_POST['disable_sensei_course_notification'] ) && 'on'== $_POST['disable_sensei_course_notification']  ) {
1875
-            $new_val = true;
1876
-        }else{
1877
-            $new_val = false;
1878
-        }
1879
-
1880
-       update_post_meta( $course_id , 'disable_notification', $new_val );
1881
-
1882
-    }// end save notification meta box
1883
-
1884
-    /**
1885
-     * Backwards compatibility hooks added to ensure that
1886
-     * plugins and other parts of sensei still works.
1887
-     *
1888
-     * This function hooks into `sensei_course_content_inside_before`
1889
-     *
1890
-     * @since 1.9
1891
-     *
1892
-     * @param WP_Post $post
1893
-     */
1894
-    public function content_before_backwards_compatibility_hooks( $post ){
1895
-
1896
-        sensei_do_deprecated_action( 'sensei_course_image','1.9.0','sensei_course_content_inside_before' );
1897
-        sensei_do_deprecated_action( 'sensei_course_archive_course_title','1.9.0','sensei_course_content_inside_before' );
1752
+		return $completed_lesson_ids;
1898 1753
 
1899
-    }
1754
+	}// end get_completed_lesson_ids
1900 1755
 
1901
-    /**
1902
-     * Backwards compatibility hooks that should be hooked into sensei_loop_course_before
1903
-     *
1904
-     * hooked into 'sensei_loop_course_before'
1905
-     *
1906
-     * @since 1.9
1907
-     *
1908
-     * @global WP_Post $post
1909
-     */
1910
-    public  function loop_before_backwards_compatibility_hooks( ){
1911
-
1912
-        global $post;
1913
-        sensei_do_deprecated_action( 'sensei_course_archive_header','1.9.0','sensei_course_content_inside_before', $post->post_type  );
1914
-
1915
-    }
1916
-
1917
-    /**
1918
-     * Output a link to view course. The button text is different depending on the amount of preview lesson available.
1919
-     *
1920
-     * hooked into 'sensei_course_content_inside_after'
1921
-     *
1922
-     * @since 1.9.0
1923
-     *
1924
-     * @param WP_Post $course
1925
-     */
1926
-    public function the_course_free_lesson_preview( $course ){
1927
-        // Meta data
1928
-        $preview_lesson_count = intval( Sensei()->course->course_lesson_preview_count( $course->ID ) );
1929
-        $is_user_taking_course = Sensei_Utils::user_started_course( $course->ID, get_current_user_id() );
1930
-
1931
-        if ( 0 < $preview_lesson_count && !$is_user_taking_course ) {
1932
-            ?>
1756
+	/**
1757
+	 * Calculate the perceantage completed in the course
1758
+	 *
1759
+	 * @since 1.8.0
1760
+	 *
1761
+	 * @param int $course_id
1762
+	 * @param int $user_id
1763
+	 * @return int $percentage
1764
+	 */
1765
+	public function get_completion_percentage( $course_id, $user_id = 0 ){
1766
+
1767
+		if( !( intval( $user_id ) ) > 0 ){
1768
+			$user_id = get_current_user_id();
1769
+		}
1770
+
1771
+		$completed = count( $this->get_completed_lesson_ids( $course_id, $user_id ) );
1772
+
1773
+		if( ! (  $completed  > 0 ) ){
1774
+			return 0;
1775
+		}
1776
+
1777
+		$total_lessons = count( $this->course_lessons( $course_id ) );
1778
+		$percentage = $completed / $total_lessons * 100;
1779
+
1780
+		/**
1781
+		 *
1782
+		 * Filter the percentage returned for a users course.
1783
+		 *
1784
+		 * @param $percentage
1785
+		 * @param $course_id
1786
+		 * @param $user_id
1787
+		 * @since 1.8.0
1788
+		 */
1789
+		return apply_filters( 'sensei_course_completion_percentage', $percentage, $course_id, $user_id );
1790
+
1791
+	}// end get_completed_lesson_ids
1792
+
1793
+	/**
1794
+	 * Block email notifications for the specific courses
1795
+	 * that the user disabled the notifications.
1796
+	 *
1797
+	 * @since 1.8.0
1798
+	 * @param $should_send
1799
+	 * @return bool
1800
+	 */
1801
+	public function block_notification_emails( $should_send ){
1802
+		global $sensei_email_data;
1803
+		$email = $sensei_email_data;
1804
+
1805
+		$course_id = '';
1806
+
1807
+		if( isset( $email['course_id'] ) ){
1808
+
1809
+			$course_id = $email['course_id'];
1810
+
1811
+		}elseif( isset( $email['lesson_id'] ) ){
1812
+
1813
+			$course_id = Sensei()->lesson->get_course_id( $email['lesson_id'] );
1814
+
1815
+		}elseif( isset( $email['quiz_id'] ) ){
1816
+
1817
+			$lesson_id = Sensei()->quiz->get_lesson_id( $email['quiz_id'] );
1818
+			$course_id = Sensei()->lesson->get_course_id( $lesson_id );
1819
+
1820
+		}
1821
+
1822
+		if( !empty( $course_id ) && 'course'== get_post_type( $course_id ) ) {
1823
+
1824
+			$course_emails_disabled = get_post_meta($course_id, 'disable_notification', true);
1825
+
1826
+			if ($course_emails_disabled) {
1827
+
1828
+				return false;
1829
+
1830
+			}
1831
+
1832
+		}// end if
1833
+
1834
+		return $should_send;
1835
+	}// end block_notification_emails
1836
+
1837
+	/**
1838
+	 * Render the course notification setting meta box
1839
+	 *
1840
+	 * @since 1.8.0
1841
+	 * @param $course
1842
+	 */
1843
+	public function course_notification_meta_box_content( $course ){
1844
+
1845
+		$checked = get_post_meta( $course->ID , 'disable_notification', true );
1846
+
1847
+		// generate checked html
1848
+		$checked_html = '';
1849
+		if( $checked ){
1850
+			$checked_html = 'checked="checked"';
1851
+		}
1852
+		wp_nonce_field( 'update-course-notification-setting','_sensei_course_notification' );
1853
+
1854
+		echo '<input id="disable_sensei_course_notification" '.$checked_html .' type="checkbox" name="disable_sensei_course_notification" >';
1855
+		echo '<label for="disable_sensei_course_notification">'.__('Disable notifications on this course ?', 'woothemes-sensei'). '</label>';
1856
+
1857
+	}// end course_notification_meta_box_content
1858
+
1859
+	/**
1860
+	 * Store the setting for the course notification setting.
1861
+	 *
1862
+	 * @hooked int save_post
1863
+	 * @since 1.8.0
1864
+	 *
1865
+	 * @param $course_id
1866
+	 */
1867
+	public function save_course_notification_meta_box( $course_id ){
1868
+
1869
+		if( !isset( $_POST['_sensei_course_notification']  )
1870
+			|| ! wp_verify_nonce( $_POST['_sensei_course_notification'], 'update-course-notification-setting' ) ){
1871
+			return;
1872
+		}
1873
+
1874
+		if( isset( $_POST['disable_sensei_course_notification'] ) && 'on'== $_POST['disable_sensei_course_notification']  ) {
1875
+			$new_val = true;
1876
+		}else{
1877
+			$new_val = false;
1878
+		}
1879
+
1880
+	   update_post_meta( $course_id , 'disable_notification', $new_val );
1881
+
1882
+	}// end save notification meta box
1883
+
1884
+	/**
1885
+	 * Backwards compatibility hooks added to ensure that
1886
+	 * plugins and other parts of sensei still works.
1887
+	 *
1888
+	 * This function hooks into `sensei_course_content_inside_before`
1889
+	 *
1890
+	 * @since 1.9
1891
+	 *
1892
+	 * @param WP_Post $post
1893
+	 */
1894
+	public function content_before_backwards_compatibility_hooks( $post ){
1895
+
1896
+		sensei_do_deprecated_action( 'sensei_course_image','1.9.0','sensei_course_content_inside_before' );
1897
+		sensei_do_deprecated_action( 'sensei_course_archive_course_title','1.9.0','sensei_course_content_inside_before' );
1898
+
1899
+	}
1900
+
1901
+	/**
1902
+	 * Backwards compatibility hooks that should be hooked into sensei_loop_course_before
1903
+	 *
1904
+	 * hooked into 'sensei_loop_course_before'
1905
+	 *
1906
+	 * @since 1.9
1907
+	 *
1908
+	 * @global WP_Post $post
1909
+	 */
1910
+	public  function loop_before_backwards_compatibility_hooks( ){
1911
+
1912
+		global $post;
1913
+		sensei_do_deprecated_action( 'sensei_course_archive_header','1.9.0','sensei_course_content_inside_before', $post->post_type  );
1914
+
1915
+	}
1916
+
1917
+	/**
1918
+	 * Output a link to view course. The button text is different depending on the amount of preview lesson available.
1919
+	 *
1920
+	 * hooked into 'sensei_course_content_inside_after'
1921
+	 *
1922
+	 * @since 1.9.0
1923
+	 *
1924
+	 * @param WP_Post $course
1925
+	 */
1926
+	public function the_course_free_lesson_preview( $course ){
1927
+		// Meta data
1928
+		$preview_lesson_count = intval( Sensei()->course->course_lesson_preview_count( $course->ID ) );
1929
+		$is_user_taking_course = Sensei_Utils::user_started_course( $course->ID, get_current_user_id() );
1930
+
1931
+		if ( 0 < $preview_lesson_count && !$is_user_taking_course ) {
1932
+			?>
1933 1933
             <p class="sensei-free-lessons">
1934 1934
                 <a href="<?php echo get_permalink(); ?>">
1935 1935
                     <?php _e( 'Preview this course', 'woothemes-sensei' ) ?>
@@ -1938,22 +1938,22 @@  discard block
 block discarded – undo
1938 1938
             </p>
1939 1939
 
1940 1940
         <?php
1941
-        }
1942
-    }
1941
+		}
1942
+	}
1943 1943
 
1944
-    /**
1945
-     * Add course mata to the course meta hook
1946
-     *
1947
-     * @since 1.9.0
1948
-     * @param WP_Post $course
1949
-     */
1950
-    public function the_course_meta( $course ){
1951
-        echo '<p class="sensei-course-meta">';
1944
+	/**
1945
+	 * Add course mata to the course meta hook
1946
+	 *
1947
+	 * @since 1.9.0
1948
+	 * @param WP_Post $course
1949
+	 */
1950
+	public function the_course_meta( $course ){
1951
+		echo '<p class="sensei-course-meta">';
1952 1952
 
1953
-        $category_output = get_the_term_list( $course->ID, 'course-category', '', ', ', '' );
1954
-        $author_display_name = get_the_author_meta( 'display_name', $course->post_author  );
1953
+		$category_output = get_the_term_list( $course->ID, 'course-category', '', ', ', '' );
1954
+		$author_display_name = get_the_author_meta( 'display_name', $course->post_author  );
1955 1955
 
1956
-        if ( isset( Sensei()->settings->settings[ 'course_author' ] ) && ( Sensei()->settings->settings[ 'course_author' ] ) ) {?>
1956
+		if ( isset( Sensei()->settings->settings[ 'course_author' ] ) && ( Sensei()->settings->settings[ 'course_author' ] ) ) {?>
1957 1957
 
1958 1958
             <span class="course-author"><?php _e( 'by ', 'woothemes-sensei' ); ?>
1959 1959
 
@@ -1971,59 +1971,59 @@  discard block
 block discarded – undo
1971 1971
 
1972 1972
         <?php } // End If Statement
1973 1973
 
1974
-        // number of completed lessons
1975
-        if( is_user_logged_in() ){
1976
-            $completed = count( $this->get_completed_lesson_ids( $course->ID, get_current_user_id() ) );
1977
-            $lesson_count = count( $this->course_lessons( $course->ID ) );
1978
-            echo '<span class="course-lesson-progress">' . sprintf( __( '%1$d of %2$d lessons completed', 'woothemes-sensei' ) , $completed, $lesson_count  ) . '</span>';
1979
-        }
1974
+		// number of completed lessons
1975
+		if( is_user_logged_in() ){
1976
+			$completed = count( $this->get_completed_lesson_ids( $course->ID, get_current_user_id() ) );
1977
+			$lesson_count = count( $this->course_lessons( $course->ID ) );
1978
+			echo '<span class="course-lesson-progress">' . sprintf( __( '%1$d of %2$d lessons completed', 'woothemes-sensei' ) , $completed, $lesson_count  ) . '</span>';
1979
+		}
1980 1980
 
1981
-        sensei_simple_course_price( $course->ID );
1981
+		sensei_simple_course_price( $course->ID );
1982 1982
 
1983
-        echo '</p>';
1984
-    } // end the course meta
1983
+		echo '</p>';
1984
+	} // end the course meta
1985 1985
 
1986
-    /**
1987
-     * Filter the classes attached to a post types for courses
1988
-     * and add a status class for when the user is logged in.
1989
-     *
1990
-     * @param $classes
1991
-     * @param $class
1992
-     * @param $post_id
1993
-     *
1994
-     * @return array $classes
1995
-     */
1996
-    public static function add_course_user_status_class( $classes, $class, $course_id ){
1986
+	/**
1987
+	 * Filter the classes attached to a post types for courses
1988
+	 * and add a status class for when the user is logged in.
1989
+	 *
1990
+	 * @param $classes
1991
+	 * @param $class
1992
+	 * @param $post_id
1993
+	 *
1994
+	 * @return array $classes
1995
+	 */
1996
+	public static function add_course_user_status_class( $classes, $class, $course_id ){
1997 1997
 
1998
-        if( 'course' == get_post_type( $course_id )  &&  is_user_logged_in() ){
1998
+		if( 'course' == get_post_type( $course_id )  &&  is_user_logged_in() ){
1999 1999
 
2000
-            if( Sensei_Utils::user_completed_course( $course_id, get_current_user_id() ) ){
2000
+			if( Sensei_Utils::user_completed_course( $course_id, get_current_user_id() ) ){
2001 2001
 
2002
-                $classes[] = 'user-status-completed';
2002
+				$classes[] = 'user-status-completed';
2003 2003
 
2004
-            }else{
2004
+			}else{
2005 2005
 
2006
-                $classes[] = 'user-status-active';
2006
+				$classes[] = 'user-status-active';
2007 2007
 
2008
-            }
2008
+			}
2009 2009
 
2010
-        }
2010
+		}
2011 2011
 
2012
-        return $classes;
2012
+		return $classes;
2013 2013
 
2014
-    }// end add_course_user_status_class
2014
+	}// end add_course_user_status_class
2015 2015
 
2016
-    /**
2017
-     * Prints out the course action buttons links
2018
-     *
2019
-     * - complete course
2020
-     * - delete course
2021
-     *
2022
-     * @param WP_Post $course
2023
-     */
2024
-    public static function the_course_action_buttons( $course ){
2016
+	/**
2017
+	 * Prints out the course action buttons links
2018
+	 *
2019
+	 * - complete course
2020
+	 * - delete course
2021
+	 *
2022
+	 * @param WP_Post $course
2023
+	 */
2024
+	public static function the_course_action_buttons( $course ){
2025 2025
 
2026
-        if( is_user_logged_in() ) { ?>
2026
+		if( is_user_logged_in() ) { ?>
2027 2027
 
2028 2028
             <section class="entry-actions">
2029 2029
                 <form method="POST" action="<?php  echo esc_url( remove_query_arg( array( 'active_page', 'completed_page' ) ) ); ?>">
@@ -2042,32 +2042,32 @@  discard block
 block discarded – undo
2042 2042
 
2043 2043
                    <?php  } // End If Statement
2044 2044
 
2045
-                    $course_purchased = false;
2046
-                    if ( Sensei_WC::is_woocommerce_active() ) {
2047
-                        // Get the product ID
2048
-                        $wc_post_id = get_post_meta( intval( $course->ID ), '_course_woocommerce_product', true );
2049
-                        if ( 0 < $wc_post_id ) {
2045
+					$course_purchased = false;
2046
+					if ( Sensei_WC::is_woocommerce_active() ) {
2047
+						// Get the product ID
2048
+						$wc_post_id = get_post_meta( intval( $course->ID ), '_course_woocommerce_product', true );
2049
+						if ( 0 < $wc_post_id ) {
2050 2050
 
2051
-                            $user = wp_get_current_user();
2052
-                            $course_purchased = Sensei_Utils::sensei_customer_bought_product( $user->user_email, $user->ID, $wc_post_id );
2051
+							$user = wp_get_current_user();
2052
+							$course_purchased = Sensei_Utils::sensei_customer_bought_product( $user->user_email, $user->ID, $wc_post_id );
2053 2053
 
2054
-                        } // End If Statement
2055
-                    } // End If Statement
2054
+						} // End If Statement
2055
+					} // End If Statement
2056 2056
 
2057
-                    if ( ! $course_purchased && ! Sensei_Utils::user_completed_course( $course->ID, get_current_user_id() ) ) {?>
2057
+					if ( ! $course_purchased && ! Sensei_Utils::user_completed_course( $course->ID, get_current_user_id() ) ) {?>
2058 2058
 
2059 2059
                         <span><input name="course_complete" type="submit" class="course-delete" value="<?php echo __( 'Delete Course', 'woothemes-sensei' ); ?>"/></span>
2060 2060
 
2061 2061
                     <?php } // End If Statement
2062 2062
 
2063
-                    $has_quizzes = Sensei()->course->course_quizzes( $course->ID, true );
2064
-                    $results_link = '';
2065
-                    if( $has_quizzes ){
2066
-                        $results_link = '<a class="button view-results" href="' . Sensei()->course_results->get_permalink( $course->ID ) . '">' . __( 'View results', 'woothemes-sensei' ) . '</a>';
2067
-                    }
2063
+					$has_quizzes = Sensei()->course->course_quizzes( $course->ID, true );
2064
+					$results_link = '';
2065
+					if( $has_quizzes ){
2066
+						$results_link = '<a class="button view-results" href="' . Sensei()->course_results->get_permalink( $course->ID ) . '">' . __( 'View results', 'woothemes-sensei' ) . '</a>';
2067
+					}
2068 2068
 
2069
-                    // Output only if there is content to display
2070
-                    if ( has_filter( 'sensei_results_links' ) || $has_quizzes ) { ?>
2069
+					// Output only if there is content to display
2070
+					if ( has_filter( 'sensei_results_links' ) || $has_quizzes ) { ?>
2071 2071
 
2072 2072
                         <p class="sensei-results-links">
2073 2073
                             <?php echo apply_filters( 'sensei_results_links', $results_link ); ?>
@@ -2079,440 +2079,440 @@  discard block
 block discarded – undo
2079 2079
 
2080 2080
         <?php  }// end if is user logged in
2081 2081
 
2082
-    }// end the_course_action_buttons
2083
-
2084
-    /**
2085
-     * This function alter the main query on the course archive page.
2086
-     * This also gives Sensei specific filters that allows variables to be altered specifically on the course archive.
2087
-     *
2088
-     * This function targets only the course archives and the my courses page. Shortcodes can set their own
2089
-     * query parameters via the arguments.
2090
-     *
2091
-     * This function is hooked into pre_get_posts filter
2092
-     *
2093
-     * @since 1.9.0
2094
-     *
2095
-     * @param WP_Query $query
2096
-     * @return WP_Query $query
2097
-     */
2098
-    public static function course_query_filter( $query ){
2099
-
2100
-        // exit early for no course queries and admin queries
2101
-        if( is_admin( ) || 'course' != $query->get( 'post_type' ) ){
2102
-            return $query;
2103
-        }
2104
-
2105
-        global $post; // used to get the current page id for my courses
2106
-
2107
-        // for the course archive page
2108
-        if( $query->is_main_query() && is_post_type_archive('course') )
2109
-        {
2110
-
2111
-            $query->set( 'posts_per_page', apply_filters( 'sensei_archive_courses_per_page', get_option( 'posts_per_page' ) ) );
2112
-
2113
-        }
2114
-        // for the my courses page
2115
-        elseif( is_page() && Sensei()->settings->get( 'my_course_page' ) == $post->ID  )
2116
-        {
2117
-
2118
-            $query->set( 'posts_per_page', apply_filters( 'sensei_my_courses_per_page', get_option( 'posts_per_page' ) ) );
2119
-
2120
-        }
2121
-
2122
-        return $query;
2123
-
2124
-    }// end course_query_filter
2125
-
2126
-    /**
2127
-     * Determine the class of the course loop
2128
-     *
2129
-     * This will output .first or .last and .course-item-number-x
2130
-     *
2131
-     * @return array $extra_classes
2132
-     * @since 1.9.0
2133
-     */
2134
-    public static function get_course_loop_content_class ()
2135
-    {
2136
-
2137
-        global $sensei_course_loop;
2138
-
2139
-
2140
-        if( !isset( $sensei_course_loop ) ){
2141
-            $sensei_course_loop = array();
2142
-        }
2143
-
2144
-        if (!isset($sensei_course_loop['counter'])) {
2145
-            $sensei_course_loop['counter'] = 0;
2146
-        }
2147
-
2148
-        if (!isset($sensei_course_loop['columns'])) {
2149
-            $sensei_course_loop['columns'] = self::get_loop_number_of_columns();
2150
-        }
2151
-
2152
-        // increment the counter
2153
-        $sensei_course_loop['counter']++;
2154
-
2155
-        $extra_classes = array();
2156
-        if( 0 == ( $sensei_course_loop['counter'] - 1 ) % $sensei_course_loop['columns'] || 1 == $sensei_course_loop['columns']  ){
2157
-            $extra_classes[] = 'first';
2158
-        }
2159
-
2160
-        if( 0 == $sensei_course_loop['counter'] % $sensei_course_loop['columns']  ){
2161
-            $extra_classes[] = 'last';
2162
-        }
2163
-
2164
-        // add the item number to the classes as well.
2165
-        $extra_classes[] = 'loop-item-number-'. $sensei_course_loop['counter'];
2166
-
2167
-        /**
2168
-         * Filter the course loop class the fires in the  in get_course_loop_content_class function
2169
-         * which is called from the course loop content-course.php
2170
-         *
2171
-         * @since 1.9.0
2172
-         *
2173
-         * @param array $extra_classes
2174
-         * @param WP_Post $loop_current_course
2175
-         */
2176
-        return apply_filters( 'sensei_course_loop_content_class', $extra_classes ,get_post() );
2177
-
2178
-    }// end get_course_loop_class
2179
-
2180
-    /**
2181
-     * Get the number of columns set for Sensei courses
2182
-     *
2183
-     * @since 1.9.0
2184
-     * @return mixed|void
2185
-     */
2186
-    public static function get_loop_number_of_columns(){
2187
-
2188
-        /**
2189
-         * Filter the number of columns on the course archive page.
2190
-         *
2191
-         * @since 1.9.0
2192
-         * @param int $number_of_columns default 1
2193
-         */
2194
-        return apply_filters('sensei_course_loop_number_of_columns', 1);
2195
-
2196
-    }
2197
-
2198
-    /**
2199
-     * Output the course archive filter markup
2200
-     *
2201
-     * hooked into sensei_loop_course_before
2202
-     *
2203
-     * @since 1.9.0
2204
-     * @param
2205
-     */
2206
-    public static function course_archive_sorting( $query ){
2207
-
2208
-        // don't show on category pages and other pages
2209
-        if( ! is_archive(  'course ') || is_tax('course-category') ){
2210
-            return;
2211
-        }
2212
-
2213
-        /**
2214
-         * Filter the sensei archive course order by values
2215
-         *
2216
-         * @since 1.9.0
2217
-         * @param array $options {
2218
-         *  @type string $option_value
2219
-         *  @type string $option_string
2220
-         * }
2221
-         */
2222
-        $course_order_by_options = apply_filters( 'sensei_archive_course_order_by_options', array(
2223
-            "newness"     => __( "Sort by newest first", "woothemes-sensei"),
2224
-            "title"       => __( "Sort by title A-Z", "woothemes-sensei" ),
2225
-        ));
2226
-
2227
-        // setup the currently selected item
2228
-        $selected = 'newness';
2229
-        if( isset( $_GET['orderby'] ) ){
2230
-
2231
-            $selected =  $_GET[ 'orderby' ];
2232
-
2233
-        }
2234
-
2235
-        ?>
2082
+	}// end the_course_action_buttons
2083
+
2084
+	/**
2085
+	 * This function alter the main query on the course archive page.
2086
+	 * This also gives Sensei specific filters that allows variables to be altered specifically on the course archive.
2087
+	 *
2088
+	 * This function targets only the course archives and the my courses page. Shortcodes can set their own
2089
+	 * query parameters via the arguments.
2090
+	 *
2091
+	 * This function is hooked into pre_get_posts filter
2092
+	 *
2093
+	 * @since 1.9.0
2094
+	 *
2095
+	 * @param WP_Query $query
2096
+	 * @return WP_Query $query
2097
+	 */
2098
+	public static function course_query_filter( $query ){
2099
+
2100
+		// exit early for no course queries and admin queries
2101
+		if( is_admin( ) || 'course' != $query->get( 'post_type' ) ){
2102
+			return $query;
2103
+		}
2104
+
2105
+		global $post; // used to get the current page id for my courses
2106
+
2107
+		// for the course archive page
2108
+		if( $query->is_main_query() && is_post_type_archive('course') )
2109
+		{
2110
+
2111
+			$query->set( 'posts_per_page', apply_filters( 'sensei_archive_courses_per_page', get_option( 'posts_per_page' ) ) );
2112
+
2113
+		}
2114
+		// for the my courses page
2115
+		elseif( is_page() && Sensei()->settings->get( 'my_course_page' ) == $post->ID  )
2116
+		{
2117
+
2118
+			$query->set( 'posts_per_page', apply_filters( 'sensei_my_courses_per_page', get_option( 'posts_per_page' ) ) );
2119
+
2120
+		}
2121
+
2122
+		return $query;
2123
+
2124
+	}// end course_query_filter
2125
+
2126
+	/**
2127
+	 * Determine the class of the course loop
2128
+	 *
2129
+	 * This will output .first or .last and .course-item-number-x
2130
+	 *
2131
+	 * @return array $extra_classes
2132
+	 * @since 1.9.0
2133
+	 */
2134
+	public static function get_course_loop_content_class ()
2135
+	{
2136
+
2137
+		global $sensei_course_loop;
2138
+
2139
+
2140
+		if( !isset( $sensei_course_loop ) ){
2141
+			$sensei_course_loop = array();
2142
+		}
2143
+
2144
+		if (!isset($sensei_course_loop['counter'])) {
2145
+			$sensei_course_loop['counter'] = 0;
2146
+		}
2147
+
2148
+		if (!isset($sensei_course_loop['columns'])) {
2149
+			$sensei_course_loop['columns'] = self::get_loop_number_of_columns();
2150
+		}
2151
+
2152
+		// increment the counter
2153
+		$sensei_course_loop['counter']++;
2154
+
2155
+		$extra_classes = array();
2156
+		if( 0 == ( $sensei_course_loop['counter'] - 1 ) % $sensei_course_loop['columns'] || 1 == $sensei_course_loop['columns']  ){
2157
+			$extra_classes[] = 'first';
2158
+		}
2159
+
2160
+		if( 0 == $sensei_course_loop['counter'] % $sensei_course_loop['columns']  ){
2161
+			$extra_classes[] = 'last';
2162
+		}
2163
+
2164
+		// add the item number to the classes as well.
2165
+		$extra_classes[] = 'loop-item-number-'. $sensei_course_loop['counter'];
2166
+
2167
+		/**
2168
+		 * Filter the course loop class the fires in the  in get_course_loop_content_class function
2169
+		 * which is called from the course loop content-course.php
2170
+		 *
2171
+		 * @since 1.9.0
2172
+		 *
2173
+		 * @param array $extra_classes
2174
+		 * @param WP_Post $loop_current_course
2175
+		 */
2176
+		return apply_filters( 'sensei_course_loop_content_class', $extra_classes ,get_post() );
2177
+
2178
+	}// end get_course_loop_class
2179
+
2180
+	/**
2181
+	 * Get the number of columns set for Sensei courses
2182
+	 *
2183
+	 * @since 1.9.0
2184
+	 * @return mixed|void
2185
+	 */
2186
+	public static function get_loop_number_of_columns(){
2187
+
2188
+		/**
2189
+		 * Filter the number of columns on the course archive page.
2190
+		 *
2191
+		 * @since 1.9.0
2192
+		 * @param int $number_of_columns default 1
2193
+		 */
2194
+		return apply_filters('sensei_course_loop_number_of_columns', 1);
2195
+
2196
+	}
2197
+
2198
+	/**
2199
+	 * Output the course archive filter markup
2200
+	 *
2201
+	 * hooked into sensei_loop_course_before
2202
+	 *
2203
+	 * @since 1.9.0
2204
+	 * @param
2205
+	 */
2206
+	public static function course_archive_sorting( $query ){
2207
+
2208
+		// don't show on category pages and other pages
2209
+		if( ! is_archive(  'course ') || is_tax('course-category') ){
2210
+			return;
2211
+		}
2212
+
2213
+		/**
2214
+		 * Filter the sensei archive course order by values
2215
+		 *
2216
+		 * @since 1.9.0
2217
+		 * @param array $options {
2218
+		 *  @type string $option_value
2219
+		 *  @type string $option_string
2220
+		 * }
2221
+		 */
2222
+		$course_order_by_options = apply_filters( 'sensei_archive_course_order_by_options', array(
2223
+			"newness"     => __( "Sort by newest first", "woothemes-sensei"),
2224
+			"title"       => __( "Sort by title A-Z", "woothemes-sensei" ),
2225
+		));
2226
+
2227
+		// setup the currently selected item
2228
+		$selected = 'newness';
2229
+		if( isset( $_GET['orderby'] ) ){
2230
+
2231
+			$selected =  $_GET[ 'orderby' ];
2232
+
2233
+		}
2234
+
2235
+		?>
2236 2236
 
2237 2237
         <form class="sensei-ordering" name="sensei-course-order" action="<?php echo esc_attr( Sensei_Utils::get_current_url() ) ; ?>" method="POST">
2238 2238
             <select name="course-orderby" class="orderby">
2239 2239
                 <?php
2240
-                foreach( $course_order_by_options as $value => $text ){
2240
+				foreach( $course_order_by_options as $value => $text ){
2241 2241
 
2242
-                    echo '<option value="'. $value . ' "' . selected( $selected, $value, false ) . '>'. $text. '</option>';
2242
+					echo '<option value="'. $value . ' "' . selected( $selected, $value, false ) . '>'. $text. '</option>';
2243 2243
 
2244
-                }
2245
-                ?>
2244
+				}
2245
+				?>
2246 2246
             </select>
2247 2247
         </form>
2248 2248
 
2249 2249
     <?php
2250
-    }// end course archive filters
2251
-
2252
-    /**
2253
-     * Output the course archive filter markup
2254
-     *
2255
-     * hooked into sensei_loop_course_before
2256
-     *
2257
-     * @since 1.9.0
2258
-     * @param
2259
-     */
2260
-    public static function course_archive_filters( $query ){
2261
-
2262
-        // don't show on category pages
2263
-        if( is_tax('course-category') ){
2264
-            return;
2265
-        }
2266
-
2267
-        /**
2268
-         * filter the course archive filter buttons
2269
-         *
2270
-         * @since 1.9.0
2271
-         * @param array $filters{
2272
-         *   @type array ( $id, $url , $title )
2273
-         * }
2274
-         *
2275
-         */
2276
-        $filters = apply_filters( 'sensei_archive_course_filter_by_options', array(
2277
-            array( 'id' => 'all', 'url' => self::get_courses_page_url(), 'title'=> __( 'All', 'woothemes-sensei' ) ),
2278
-            array( 'id' => 'featured', 'url' => add_query_arg( array( 'course_filter'=>'featured'), self::get_courses_page_url()  ), 'title'=> __( 'Featured', 'woothemes-sensei' ) ),
2279
-        ));
2280
-
2281
-
2282
-        ?>
2250
+	}// end course archive filters
2251
+
2252
+	/**
2253
+	 * Output the course archive filter markup
2254
+	 *
2255
+	 * hooked into sensei_loop_course_before
2256
+	 *
2257
+	 * @since 1.9.0
2258
+	 * @param
2259
+	 */
2260
+	public static function course_archive_filters( $query ){
2261
+
2262
+		// don't show on category pages
2263
+		if( is_tax('course-category') ){
2264
+			return;
2265
+		}
2266
+
2267
+		/**
2268
+		 * filter the course archive filter buttons
2269
+		 *
2270
+		 * @since 1.9.0
2271
+		 * @param array $filters{
2272
+		 *   @type array ( $id, $url , $title )
2273
+		 * }
2274
+		 *
2275
+		 */
2276
+		$filters = apply_filters( 'sensei_archive_course_filter_by_options', array(
2277
+			array( 'id' => 'all', 'url' => self::get_courses_page_url(), 'title'=> __( 'All', 'woothemes-sensei' ) ),
2278
+			array( 'id' => 'featured', 'url' => add_query_arg( array( 'course_filter'=>'featured'), self::get_courses_page_url()  ), 'title'=> __( 'Featured', 'woothemes-sensei' ) ),
2279
+		));
2280
+
2281
+
2282
+		?>
2283 2283
         <ul class="sensei-course-filters clearfix" >
2284 2284
             <?php
2285 2285
 
2286
-            //determine the current active url
2287
-            $current_url = Sensei_Utils::get_current_url();
2286
+			//determine the current active url
2287
+			$current_url = Sensei_Utils::get_current_url();
2288 2288
 
2289
-            foreach( $filters as $filter ) {
2289
+			foreach( $filters as $filter ) {
2290 2290
 
2291
-                $active_class =  $current_url == $filter['url'] ? ' class="active" ' : '';
2291
+				$active_class =  $current_url == $filter['url'] ? ' class="active" ' : '';
2292 2292
 
2293
-                echo '<li><a '. $active_class .' id="'. $filter['id'] .'" href="'. esc_url( $filter['url'] ).'" >'. $filter['title']  .'</a></li>';
2293
+				echo '<li><a '. $active_class .' id="'. $filter['id'] .'" href="'. esc_url( $filter['url'] ).'" >'. $filter['title']  .'</a></li>';
2294 2294
 
2295
-            }
2296
-            ?>
2295
+			}
2296
+			?>
2297 2297
 
2298 2298
         </ul>
2299 2299
 
2300 2300
         <?php
2301 2301
 
2302
-    }
2302
+	}
2303 2303
 
2304
-    /**
2305
-     * if the featured link is clicked on the course archive page
2306
-     * filter the courses returned to only show those featured
2307
-     *
2308
-     * Hooked into pre_get_posts
2309
-     *
2310
-     * @since 1.9.0
2311
-     * @param WP_Query $query
2312
-     * @return WP_Query $query
2313
-     */
2314
-    public static function course_archive_featured_filter( $query ){
2315
-
2316
-        if( isset ( $_GET[ 'course_filter' ] ) && 'featured'== $_GET['course_filter'] && $query->is_main_query()  ){
2317
-            //setup meta query for featured courses
2318
-            $query->set( 'meta_value', 'featured'  );
2319
-            $query->set( 'meta_key', '_course_featured'  );
2320
-            $query->set( 'meta_compare', '='  );
2321
-        }
2322
-
2323
-        return $query;
2324
-    }
2325
-
2326
-    /**
2327
-     * if the course order drop down is changed
2328
-     *
2329
-     * Hooked into pre_get_posts
2330
-     *
2331
-     * @since 1.9.0
2332
-     * @param WP_Query $query
2333
-     * @return WP_Query $query
2334
-     */
2335
-    public static function course_archive_order_by_title( $query ){
2336
-
2337
-        if( isset ( $_POST[ 'course-orderby' ] ) && 'title '== $_POST['course-orderby']
2338
-            && 'course'== $query->get('post_type') && $query->is_main_query()  ){
2339
-            // setup the order by title for this query
2340
-            $query->set( 'orderby', 'title'  );
2341
-            $query->set( 'order', 'ASC'  );
2342
-        }
2343
-
2344
-        return $query;
2345
-    }
2346
-
2347
-
2348
-    /**
2349
-     * Get the link to the courses page. This will be the course post type archive
2350
-     * page link or the page the user set in their settings
2351
-     *
2352
-     * @since 1.9.0
2353
-     * @return string $course_page_url
2354
-     */
2355
-    public static function get_courses_page_url(){
2356
-
2357
-        $course_page_id = intval( Sensei()->settings->settings[ 'course_page' ] );
2358
-        $course_page_url = empty( $course_page_id ) ? get_post_type_archive_link('course') : get_permalink( $course_page_id );
2304
+	/**
2305
+	 * if the featured link is clicked on the course archive page
2306
+	 * filter the courses returned to only show those featured
2307
+	 *
2308
+	 * Hooked into pre_get_posts
2309
+	 *
2310
+	 * @since 1.9.0
2311
+	 * @param WP_Query $query
2312
+	 * @return WP_Query $query
2313
+	 */
2314
+	public static function course_archive_featured_filter( $query ){
2359 2315
 
2360
-        return $course_page_url;
2361
-
2362
-    }// get_course_url
2316
+		if( isset ( $_GET[ 'course_filter' ] ) && 'featured'== $_GET['course_filter'] && $query->is_main_query()  ){
2317
+			//setup meta query for featured courses
2318
+			$query->set( 'meta_value', 'featured'  );
2319
+			$query->set( 'meta_key', '_course_featured'  );
2320
+			$query->set( 'meta_compare', '='  );
2321
+		}
2363 2322
 
2364
-    /**
2365
-     * Output the headers on the course archive page
2366
-     *
2367
-     * Hooked into the sensei_archive_title
2368
-     *
2369
-     * @since 1.9.0
2370
-     * @param string $query_type
2371
-     * @param string $before_html
2372
-     * @param string $after_html
2373
-     * @return void
2374
-     */
2375
-    public static function archive_header( $query_type ='' , $before_html='', $after_html =''  ){
2323
+		return $query;
2324
+	}
2376 2325
 
2377
-        if( ! is_post_type_archive('course') ){
2378
-            return;
2379
-        }
2326
+	/**
2327
+	 * if the course order drop down is changed
2328
+	 *
2329
+	 * Hooked into pre_get_posts
2330
+	 *
2331
+	 * @since 1.9.0
2332
+	 * @param WP_Query $query
2333
+	 * @return WP_Query $query
2334
+	 */
2335
+	public static function course_archive_order_by_title( $query ){
2380 2336
 
2381
-        // deprecated since 1.9.0
2382
-        sensei_do_deprecated_action('sensei_archive_title','1.9.0','sensei_archive_before_course_loop');
2337
+		if( isset ( $_POST[ 'course-orderby' ] ) && 'title '== $_POST['course-orderby']
2338
+			&& 'course'== $query->get('post_type') && $query->is_main_query()  ){
2339
+			// setup the order by title for this query
2340
+			$query->set( 'orderby', 'title'  );
2341
+			$query->set( 'order', 'ASC'  );
2342
+		}
2383 2343
 
2384
-        $html = '';
2344
+		return $query;
2345
+	}
2385 2346
 
2386
-        if( empty( $before_html ) ){
2387 2347
 
2388
-            $before_html = '<header class="archive-header"><h1>';
2348
+	/**
2349
+	 * Get the link to the courses page. This will be the course post type archive
2350
+	 * page link or the page the user set in their settings
2351
+	 *
2352
+	 * @since 1.9.0
2353
+	 * @return string $course_page_url
2354
+	 */
2355
+	public static function get_courses_page_url(){
2389 2356
 
2390
-        }
2357
+		$course_page_id = intval( Sensei()->settings->settings[ 'course_page' ] );
2358
+		$course_page_url = empty( $course_page_id ) ? get_post_type_archive_link('course') : get_permalink( $course_page_id );
2391 2359
 
2392
-        if( empty( $after_html ) ){
2360
+		return $course_page_url;
2393 2361
 
2394
-            $after_html = '</h1></header>';
2362
+	}// get_course_url
2395 2363
 
2396
-        }
2364
+	/**
2365
+	 * Output the headers on the course archive page
2366
+	 *
2367
+	 * Hooked into the sensei_archive_title
2368
+	 *
2369
+	 * @since 1.9.0
2370
+	 * @param string $query_type
2371
+	 * @param string $before_html
2372
+	 * @param string $after_html
2373
+	 * @return void
2374
+	 */
2375
+	public static function archive_header( $query_type ='' , $before_html='', $after_html =''  ){
2397 2376
 
2398
-        if ( is_tax( 'course-category' ) ) {
2377
+		if( ! is_post_type_archive('course') ){
2378
+			return;
2379
+		}
2399 2380
 
2400
-            global $wp_query;
2381
+		// deprecated since 1.9.0
2382
+		sensei_do_deprecated_action('sensei_archive_title','1.9.0','sensei_archive_before_course_loop');
2401 2383
 
2402
-            $taxonomy_obj = $wp_query->get_queried_object();
2403
-            $taxonomy_short_name = $taxonomy_obj->taxonomy;
2404
-            $taxonomy_raw_obj = get_taxonomy( $taxonomy_short_name );
2405
-            $title = sprintf( __( '%1$s Archives: %2$s', 'woothemes-sensei' ), $taxonomy_raw_obj->labels->name, $taxonomy_obj->name );
2406
-            echo apply_filters( 'course_category_archive_title', $before_html . $title . $after_html );
2407
-            return;
2384
+		$html = '';
2408 2385
 
2409
-        } // End If Statement
2386
+		if( empty( $before_html ) ){
2410 2387
 
2411
-        switch ( $query_type ) {
2412
-            case 'newcourses':
2413
-                $html .= $before_html . __( 'New Courses', 'woothemes-sensei' ) . $after_html;
2414
-                break;
2415
-            case 'featuredcourses':
2416
-                $html .= $before_html .  __( 'Featured Courses', 'woothemes-sensei' ) . $after_html;
2417
-                break;
2418
-            case 'freecourses':
2419
-                $html .= $before_html .  __( 'Free Courses', 'woothemes-sensei' ) . $after_html;
2420
-                break;
2421
-            case 'paidcourses':
2422
-                $html .= $before_html .  __( 'Paid Courses', 'woothemes-sensei' ) . $after_html;
2423
-                break;
2424
-            default:
2425
-                $html .= $before_html . __( 'Courses', 'woothemes-sensei' ) . $after_html;
2426
-                break;
2427
-        } // End Switch Statement
2388
+			$before_html = '<header class="archive-header"><h1>';
2428 2389
 
2429
-        echo apply_filters( 'course_archive_title', $html );
2390
+		}
2430 2391
 
2431
-    }//course_archive_header
2392
+		if( empty( $after_html ) ){
2432 2393
 
2394
+			$after_html = '</h1></header>';
2433 2395
 
2434
-    /**
2435
-     * Filter the single course content
2436
-     * taking into account if the user has access.
2437
-     *
2438
-     * @1.9.0
2439
-     *
2440
-     * @param string $content
2441
-     * @return string $content or $excerpt
2442
-     */
2443
-    public static function single_course_content( $content ){
2396
+		}
2444 2397
 
2445
-        if( ! is_singular('course') ){
2398
+		if ( is_tax( 'course-category' ) ) {
2446 2399
 
2447
-            return $content;
2400
+			global $wp_query;
2448 2401
 
2449
-        }
2402
+			$taxonomy_obj = $wp_query->get_queried_object();
2403
+			$taxonomy_short_name = $taxonomy_obj->taxonomy;
2404
+			$taxonomy_raw_obj = get_taxonomy( $taxonomy_short_name );
2405
+			$title = sprintf( __( '%1$s Archives: %2$s', 'woothemes-sensei' ), $taxonomy_raw_obj->labels->name, $taxonomy_obj->name );
2406
+			echo apply_filters( 'course_category_archive_title', $before_html . $title . $after_html );
2407
+			return;
2450 2408
 
2451
-        // Content Access Permissions
2452
-        $access_permission = false;
2409
+		} // End If Statement
2453 2410
 
2454
-        if ( ! Sensei()->settings->get('access_permission')  || sensei_all_access() ) {
2411
+		switch ( $query_type ) {
2412
+			case 'newcourses':
2413
+				$html .= $before_html . __( 'New Courses', 'woothemes-sensei' ) . $after_html;
2414
+				break;
2415
+			case 'featuredcourses':
2416
+				$html .= $before_html .  __( 'Featured Courses', 'woothemes-sensei' ) . $after_html;
2417
+				break;
2418
+			case 'freecourses':
2419
+				$html .= $before_html .  __( 'Free Courses', 'woothemes-sensei' ) . $after_html;
2420
+				break;
2421
+			case 'paidcourses':
2422
+				$html .= $before_html .  __( 'Paid Courses', 'woothemes-sensei' ) . $after_html;
2423
+				break;
2424
+			default:
2425
+				$html .= $before_html . __( 'Courses', 'woothemes-sensei' ) . $after_html;
2426
+				break;
2427
+		} // End Switch Statement
2455 2428
 
2456
-            $access_permission = true;
2429
+		echo apply_filters( 'course_archive_title', $html );
2457 2430
 
2458
-        } // End If Statement
2431
+	}//course_archive_header
2459 2432
 
2460
-        // Check if the user is taking the course
2461
-        $is_user_taking_course = Sensei_Utils::user_started_course( get_the_ID(), get_current_user_id() );
2462 2433
 
2463
-        if(Sensei_WC::is_woocommerce_active()) {
2434
+	/**
2435
+	 * Filter the single course content
2436
+	 * taking into account if the user has access.
2437
+	 *
2438
+	 * @1.9.0
2439
+	 *
2440
+	 * @param string $content
2441
+	 * @return string $content or $excerpt
2442
+	 */
2443
+	public static function single_course_content( $content ){
2464 2444
 
2465
-            $wc_post_id = get_post_meta( get_the_ID(), '_course_woocommerce_product', true );
2466
-            $product = Sensei()->sensei_get_woocommerce_product_object( $wc_post_id );
2445
+		if( ! is_singular('course') ){
2467 2446
 
2468
-            $has_product_attached = isset ( $product ) && is_object ( $product );
2447
+			return $content;
2469 2448
 
2470
-        } else {
2449
+		}
2471 2450
 
2472
-            $has_product_attached = false;
2451
+		// Content Access Permissions
2452
+		$access_permission = false;
2473 2453
 
2474
-        }
2454
+		if ( ! Sensei()->settings->get('access_permission')  || sensei_all_access() ) {
2475 2455
 
2476
-        if ( ( is_user_logged_in() && $is_user_taking_course )
2477
-            || ( $access_permission && !$has_product_attached)
2478
-            || 'full' == Sensei()->settings->get( 'course_single_content_display' ) ) {
2456
+			$access_permission = true;
2479 2457
 
2480
-            return $content;
2458
+		} // End If Statement
2481 2459
 
2482
-        } else {
2460
+		// Check if the user is taking the course
2461
+		$is_user_taking_course = Sensei_Utils::user_started_course( get_the_ID(), get_current_user_id() );
2483 2462
 
2484
-            return '<p class="course-excerpt">' . get_post(  get_the_ID() )->post_excerpt . '</p>';
2463
+		if(Sensei_WC::is_woocommerce_active()) {
2485 2464
 
2486
-        }
2465
+			$wc_post_id = get_post_meta( get_the_ID(), '_course_woocommerce_product', true );
2466
+			$product = Sensei()->sensei_get_woocommerce_product_object( $wc_post_id );
2487 2467
 
2488
-    }// end single_course_content
2468
+			$has_product_attached = isset ( $product ) && is_object ( $product );
2489 2469
 
2490
-    /**
2491
-     * Output the the single course lessons title with markup.
2492
-     *
2493
-     * @since 1.9.0
2494
-     */
2495
-    public static function the_course_lessons_title(){
2496
-        global $post;
2497
-        $none_module_lessons = Sensei()->modules->get_none_module_lessons( $post->ID  );
2498
-        $course_lessons = Sensei()->course->course_lessons( $post->ID );
2470
+		} else {
2471
+
2472
+			$has_product_attached = false;
2473
+
2474
+		}
2499 2475
 
2500
-        // title should be Other Lessons if there are lessons belonging to models.
2501
-        $title = __('Other Lessons', 'woothemes-sensei');
2502
-        if( count( $course_lessons ) == count( $none_module_lessons )  ){
2476
+		if ( ( is_user_logged_in() && $is_user_taking_course )
2477
+			|| ( $access_permission && !$has_product_attached)
2478
+			|| 'full' == Sensei()->settings->get( 'course_single_content_display' ) ) {
2503 2479
 
2504
-            $title = __('Lessons', 'woothemes-sensei');
2480
+			return $content;
2505 2481
 
2506
-        }
2482
+		} else {
2507 2483
 
2508
-        /**
2509
-         * hook document in class-woothemes-sensei-message.php
2510
-         */
2511
-        $title = apply_filters( 'sensei_single_title', $title, $post->post_type );
2484
+			return '<p class="course-excerpt">' . get_post(  get_the_ID() )->post_excerpt . '</p>';
2512 2485
 
2513
-        ob_start(); // start capturing the following output.
2486
+		}
2514 2487
 
2515
-        ?>
2488
+	}// end single_course_content
2489
+
2490
+	/**
2491
+	 * Output the the single course lessons title with markup.
2492
+	 *
2493
+	 * @since 1.9.0
2494
+	 */
2495
+	public static function the_course_lessons_title(){
2496
+		global $post;
2497
+		$none_module_lessons = Sensei()->modules->get_none_module_lessons( $post->ID  );
2498
+		$course_lessons = Sensei()->course->course_lessons( $post->ID );
2499
+
2500
+		// title should be Other Lessons if there are lessons belonging to models.
2501
+		$title = __('Other Lessons', 'woothemes-sensei');
2502
+		if( count( $course_lessons ) == count( $none_module_lessons )  ){
2503
+
2504
+			$title = __('Lessons', 'woothemes-sensei');
2505
+
2506
+		}
2507
+
2508
+		/**
2509
+		 * hook document in class-woothemes-sensei-message.php
2510
+		 */
2511
+		$title = apply_filters( 'sensei_single_title', $title, $post->post_type );
2512
+
2513
+		ob_start(); // start capturing the following output.
2514
+
2515
+		?>
2516 2516
 
2517 2517
             <header>
2518 2518
                 <h2> <?php echo $title; ?> </h2>
@@ -2520,277 +2520,277 @@  discard block
 block discarded – undo
2520 2520
 
2521 2521
         <?php
2522 2522
 
2523
-        /**
2524
-         * Filter the title and markup that appears above the lessons on a single course
2525
-         * page.
2526
-         *
2527
-         * @since 1.9.0
2528
-         * @param string $lessons_title_html
2529
-         */
2530
-        echo apply_filters('the_course_lessons_title', ob_get_clean() ); // output and filter the captured output and stop capturing.
2531
-
2532
-    }// end the_course_lessons_title
2533
-
2534
-    /**
2535
-     * This function loads the global wp_query object with with lessons
2536
-     * of the current course. It is designed to be used on the single-course template
2537
-     * and expects the global post to be a singular course.
2538
-     *
2539
-     * This function excludes lessons belonging to modules as they are
2540
-     * queried separately.
2541
-     *
2542
-     * @since 1.9.0
2543
-     * @global $wp_query
2544
-     */
2545
-    public static function load_single_course_lessons_query(){
2546
-
2547
-        global $post, $wp_query;
2523
+		/**
2524
+		 * Filter the title and markup that appears above the lessons on a single course
2525
+		 * page.
2526
+		 *
2527
+		 * @since 1.9.0
2528
+		 * @param string $lessons_title_html
2529
+		 */
2530
+		echo apply_filters('the_course_lessons_title', ob_get_clean() ); // output and filter the captured output and stop capturing.
2548 2531
 
2549
-        $course_id = $post->ID;
2532
+	}// end the_course_lessons_title
2550 2533
 
2551
-        if( 'course' != get_post_type( $course_id ) ){
2552
-            return;
2553
-        }
2534
+	/**
2535
+	 * This function loads the global wp_query object with with lessons
2536
+	 * of the current course. It is designed to be used on the single-course template
2537
+	 * and expects the global post to be a singular course.
2538
+	 *
2539
+	 * This function excludes lessons belonging to modules as they are
2540
+	 * queried separately.
2541
+	 *
2542
+	 * @since 1.9.0
2543
+	 * @global $wp_query
2544
+	 */
2545
+	public static function load_single_course_lessons_query(){
2554 2546
 
2555
-        $course_lesson_query_args = array(
2556
-            'post_type'         => 'lesson',
2557
-            'posts_per_page'    => 500,
2558
-            'orderby'           => 'date',
2559
-            'order'             => 'ASC',
2560
-            'meta_query'        => array(
2561
-                array(
2562
-                    'key' => '_lesson_course',
2563
-                    'value' => intval( $course_id ),
2564
-                ),
2565
-            ),
2566
-            'post_status'       => 'public',
2567
-            'suppress_filters'  => 0,
2568
-        );
2547
+		global $post, $wp_query;
2569 2548
 
2570
-        // Exclude lessons belonging to modules as they are queried along with the modules.
2571
-        $modules = Sensei()->modules->get_course_modules( $course_id );
2572
-        if( !is_wp_error( $modules ) && ! empty( $modules ) && is_array( $modules ) ){
2549
+		$course_id = $post->ID;
2573 2550
 
2574
-            $terms_ids = array();
2575
-            foreach( $modules as $term ){
2551
+		if( 'course' != get_post_type( $course_id ) ){
2552
+			return;
2553
+		}
2576 2554
 
2577
-                $terms_ids[] = $term->term_id;
2555
+		$course_lesson_query_args = array(
2556
+			'post_type'         => 'lesson',
2557
+			'posts_per_page'    => 500,
2558
+			'orderby'           => 'date',
2559
+			'order'             => 'ASC',
2560
+			'meta_query'        => array(
2561
+				array(
2562
+					'key' => '_lesson_course',
2563
+					'value' => intval( $course_id ),
2564
+				),
2565
+			),
2566
+			'post_status'       => 'public',
2567
+			'suppress_filters'  => 0,
2568
+		);
2569
+
2570
+		// Exclude lessons belonging to modules as they are queried along with the modules.
2571
+		$modules = Sensei()->modules->get_course_modules( $course_id );
2572
+		if( !is_wp_error( $modules ) && ! empty( $modules ) && is_array( $modules ) ){
2573
+
2574
+			$terms_ids = array();
2575
+			foreach( $modules as $term ){
2576
+
2577
+				$terms_ids[] = $term->term_id;
2578 2578
 
2579
-            }
2579
+			}
2580 2580
 
2581
-            $course_lesson_query_args[ 'tax_query'] = array(
2582
-                array(
2583
-                    'taxonomy' => 'module',
2584
-                    'field'    => 'id',
2585
-                    'terms'    => $terms_ids,
2586
-                    'operator' => 'NOT IN',
2587
-                ),
2588
-            );
2589
-        }
2581
+			$course_lesson_query_args[ 'tax_query'] = array(
2582
+				array(
2583
+					'taxonomy' => 'module',
2584
+					'field'    => 'id',
2585
+					'terms'    => $terms_ids,
2586
+					'operator' => 'NOT IN',
2587
+				),
2588
+			);
2589
+		}
2590 2590
 
2591
-        $wp_query = new WP_Query( $course_lesson_query_args );
2591
+		$wp_query = new WP_Query( $course_lesson_query_args );
2592 2592
 
2593
-    }// load_single_course_lessons
2593
+	}// load_single_course_lessons
2594 2594
 
2595
-    /**
2596
-     * Flush the rewrite rules for a course post type
2597
-     *
2598
-     * @since 1.9.0
2599
-     *
2600
-     * @param $post_id
2601
-     */
2602
-    public static function flush_rewrite_rules( $post_id ){
2595
+	/**
2596
+	 * Flush the rewrite rules for a course post type
2597
+	 *
2598
+	 * @since 1.9.0
2599
+	 *
2600
+	 * @param $post_id
2601
+	 */
2602
+	public static function flush_rewrite_rules( $post_id ){
2603 2603
 
2604
-        if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE){
2604
+		if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE){
2605 2605
 
2606
-            return;
2606
+			return;
2607 2607
 
2608
-        }
2608
+		}
2609 2609
 
2610 2610
 
2611
-        if( 'course' == get_post_type( $post_id )  ){
2611
+		if( 'course' == get_post_type( $post_id )  ){
2612 2612
 
2613
-            Sensei()->initiate_rewrite_rules_flush();
2613
+			Sensei()->initiate_rewrite_rules_flush();
2614 2614
 
2615
-        }
2615
+		}
2616 2616
 
2617
-    }
2617
+	}
2618 2618
 
2619
-    /**
2620
-     * Optionally return the full content on the single course pages
2621
-     * depending on the users course_single_content_display setting
2622
-     *
2623
-     * @since 1.9.0
2624
-     * @param $excerpt
2625
-     * @return string
2626
-     */
2627
-    public static function full_content_excerpt_override( $excerpt ){
2619
+	/**
2620
+	 * Optionally return the full content on the single course pages
2621
+	 * depending on the users course_single_content_display setting
2622
+	 *
2623
+	 * @since 1.9.0
2624
+	 * @param $excerpt
2625
+	 * @return string
2626
+	 */
2627
+	public static function full_content_excerpt_override( $excerpt ){
2628 2628
 
2629
-        if (   is_singular('course')  &&
2630
-                'full' == Sensei()->settings->get( 'course_single_content_display' ) ){
2629
+		if (   is_singular('course')  &&
2630
+				'full' == Sensei()->settings->get( 'course_single_content_display' ) ){
2631 2631
 
2632
-            return get_the_content();
2632
+			return get_the_content();
2633 2633
 
2634
-        } else {
2634
+		} else {
2635 2635
 
2636
-            return $excerpt;
2636
+			return $excerpt;
2637 2637
 
2638
-        }
2638
+		}
2639 2639
 
2640
-    }
2640
+	}
2641 2641
 
2642
-    /**
2643
-     * Output the course actions like start taking course, register, add to cart etc.
2644
-     *
2645
-     * @since 1.9.0
2646
-     */
2647
-    public static function the_course_enrolment_actions(){
2648
-        ?>
2642
+	/**
2643
+	 * Output the course actions like start taking course, register, add to cart etc.
2644
+	 *
2645
+	 * @since 1.9.0
2646
+	 */
2647
+	public static function the_course_enrolment_actions(){
2648
+		?>
2649 2649
         <section class="course-meta course-enrolment">
2650 2650
         <?php
2651
-        global  $post, $current_user;
2652
-        $is_user_taking_course = Sensei_Utils::user_started_course( $post->ID, $current_user->ID );
2653
-        if ( is_user_logged_in() && ! $is_user_taking_course ) {
2654
-
2655
-            // Get the product ID
2656
-            $wc_post_id = absint( get_post_meta( $post->ID, '_course_woocommerce_product', true ) );
2657
-
2658
-            // Check for woocommerce
2659
-            if ( Sensei_WC::is_woocommerce_active() && ( 0 < intval( $wc_post_id ) ) ) {
2660
-                sensei_wc_add_to_cart($post->ID);
2661
-            } else {
2662
-                sensei_start_course_form($post->ID);
2663
-            } // End If Statement
2664
-
2665
-        } elseif ( is_user_logged_in() ) {
2666
-
2667
-            // Check if course is completed
2668
-            $user_course_status = Sensei_Utils::user_course_status( $post->ID, $current_user->ID );
2669
-            $completed_course = Sensei_Utils::user_completed_course( $user_course_status );
2670
-            // Success message
2671
-            if ( $completed_course ) { ?>
2651
+		global  $post, $current_user;
2652
+		$is_user_taking_course = Sensei_Utils::user_started_course( $post->ID, $current_user->ID );
2653
+		if ( is_user_logged_in() && ! $is_user_taking_course ) {
2654
+
2655
+			// Get the product ID
2656
+			$wc_post_id = absint( get_post_meta( $post->ID, '_course_woocommerce_product', true ) );
2657
+
2658
+			// Check for woocommerce
2659
+			if ( Sensei_WC::is_woocommerce_active() && ( 0 < intval( $wc_post_id ) ) ) {
2660
+				sensei_wc_add_to_cart($post->ID);
2661
+			} else {
2662
+				sensei_start_course_form($post->ID);
2663
+			} // End If Statement
2664
+
2665
+		} elseif ( is_user_logged_in() ) {
2666
+
2667
+			// Check if course is completed
2668
+			$user_course_status = Sensei_Utils::user_course_status( $post->ID, $current_user->ID );
2669
+			$completed_course = Sensei_Utils::user_completed_course( $user_course_status );
2670
+			// Success message
2671
+			if ( $completed_course ) { ?>
2672 2672
                 <div class="status completed"><?php  _e( 'Completed', 'woothemes-sensei' ); ?></div>
2673 2673
                 <?php
2674
-                $has_quizzes = Sensei()->course->course_quizzes( $post->ID, true );
2675
-                if( has_filter( 'sensei_results_links' ) || $has_quizzes ) { ?>
2674
+				$has_quizzes = Sensei()->course->course_quizzes( $post->ID, true );
2675
+				if( has_filter( 'sensei_results_links' ) || $has_quizzes ) { ?>
2676 2676
                     <p class="sensei-results-links">
2677 2677
                         <?php
2678
-                        $results_link = '';
2679
-                        if( $has_quizzes ) {
2680
-                            $results_link = '<a class="view-results" href="' . Sensei()->course_results->get_permalink( $post->ID ) . '">' .  __( 'View results', 'woothemes-sensei' ) . '</a>';
2681
-                        }
2682
-                        $results_link = apply_filters( 'sensei_results_links', $results_link );
2683
-                        echo $results_link;
2684
-                        ?></p>
2678
+						$results_link = '';
2679
+						if( $has_quizzes ) {
2680
+							$results_link = '<a class="view-results" href="' . Sensei()->course_results->get_permalink( $post->ID ) . '">' .  __( 'View results', 'woothemes-sensei' ) . '</a>';
2681
+						}
2682
+						$results_link = apply_filters( 'sensei_results_links', $results_link );
2683
+						echo $results_link;
2684
+						?></p>
2685 2685
                 <?php } ?>
2686 2686
             <?php } else { ?>
2687 2687
                 <div class="status in-progress"><?php echo __( 'In Progress', 'woothemes-sensei' ); ?></div>
2688 2688
             <?php }
2689 2689
 
2690
-        } else {
2691
-            // Get the product ID
2692
-            $wc_post_id = absint( get_post_meta( $post->ID, '_course_woocommerce_product', true ) );
2693
-            // Check for woocommerce
2694
-            if ( Sensei_WC::is_woocommerce_active() && ( 0 < intval( $wc_post_id ) ) ) {
2690
+		} else {
2691
+			// Get the product ID
2692
+			$wc_post_id = absint( get_post_meta( $post->ID, '_course_woocommerce_product', true ) );
2693
+			// Check for woocommerce
2694
+			if ( Sensei_WC::is_woocommerce_active() && ( 0 < intval( $wc_post_id ) ) ) {
2695 2695
 
2696
-                sensei_wc_add_to_cart($post->ID);
2696
+				sensei_wc_add_to_cart($post->ID);
2697 2697
 
2698
-            } else {
2698
+			} else {
2699 2699
 
2700
-                if( get_option( 'users_can_register') ) {
2700
+				if( get_option( 'users_can_register') ) {
2701 2701
 
2702 2702
 
2703
-                    $my_courses_page_id = '';
2703
+					$my_courses_page_id = '';
2704 2704
 
2705
-                    /**
2706
-                     * Filter to force Sensei to output the default WordPress user
2707
-                     * registration link.
2708
-                     *
2709
-                     * @since 1.9.0
2710
-                     * @param bool $wp_register_link default false
2711
-                     */
2705
+					/**
2706
+					 * Filter to force Sensei to output the default WordPress user
2707
+					 * registration link.
2708
+					 *
2709
+					 * @since 1.9.0
2710
+					 * @param bool $wp_register_link default false
2711
+					 */
2712 2712
 
2713
-                    $wp_register_link = apply_filters('sensei_use_wp_register_link', false);
2713
+					$wp_register_link = apply_filters('sensei_use_wp_register_link', false);
2714 2714
 
2715
-                    $settings = Sensei()->settings->get_settings();
2716
-                    if( isset( $settings[ 'my_course_page' ] )
2717
-                        && 0 < intval( $settings[ 'my_course_page' ] ) ){
2715
+					$settings = Sensei()->settings->get_settings();
2716
+					if( isset( $settings[ 'my_course_page' ] )
2717
+						&& 0 < intval( $settings[ 'my_course_page' ] ) ){
2718 2718
 
2719
-                        $my_courses_page_id = $settings[ 'my_course_page' ];
2719
+						$my_courses_page_id = $settings[ 'my_course_page' ];
2720 2720
 
2721
-                    }
2721
+					}
2722 2722
 
2723
-                    // If a My Courses page was set in Settings, and 'sensei_use_wp_register_link'
2724
-                    // is false, link to My Courses. If not, link to default WordPress registration page.
2725
-                    if( !empty( $my_courses_page_id ) && $my_courses_page_id && !$wp_register_link){
2723
+					// If a My Courses page was set in Settings, and 'sensei_use_wp_register_link'
2724
+					// is false, link to My Courses. If not, link to default WordPress registration page.
2725
+					if( !empty( $my_courses_page_id ) && $my_courses_page_id && !$wp_register_link){
2726 2726
 
2727
-                        $my_courses_url = get_permalink( $my_courses_page_id  );
2728
-                        $register_link = '<a href="'.$my_courses_url. '">' . __('Register', 'woothemes-sensei') .'</a>';
2729
-                        echo '<div class="status register">' . $register_link . '</div>' ;
2727
+						$my_courses_url = get_permalink( $my_courses_page_id  );
2728
+						$register_link = '<a href="'.$my_courses_url. '">' . __('Register', 'woothemes-sensei') .'</a>';
2729
+						echo '<div class="status register">' . $register_link . '</div>' ;
2730 2730
 
2731
-                    } else{
2731
+					} else{
2732 2732
 
2733
-                        wp_register( '<div class="status register">', '</div>' );
2733
+						wp_register( '<div class="status register">', '</div>' );
2734 2734
 
2735
-                    }
2735
+					}
2736 2736
 
2737
-                } // end if user can register
2737
+				} // end if user can register
2738 2738
 
2739
-            } // End If Statement
2739
+			} // End If Statement
2740 2740
 
2741
-        } // End If Statement ?>
2741
+		} // End If Statement ?>
2742 2742
 
2743 2743
         </section><?php
2744 2744
 
2745
-    }// end the_course_enrolment_actions
2745
+	}// end the_course_enrolment_actions
2746 2746
 
2747
-    /**
2748
-     * Output the course video inside the loop.
2749
-     *
2750
-     * @since 1.9.0
2751
-     */
2752
-    public static function the_course_video(){
2747
+	/**
2748
+	 * Output the course video inside the loop.
2749
+	 *
2750
+	 * @since 1.9.0
2751
+	 */
2752
+	public static function the_course_video(){
2753 2753
 
2754
-        global $post;
2755
-        // Get the meta info
2756
-        $course_video_embed = get_post_meta( $post->ID, '_course_video_embed', true );
2754
+		global $post;
2755
+		// Get the meta info
2756
+		$course_video_embed = get_post_meta( $post->ID, '_course_video_embed', true );
2757 2757
 
2758
-        if ( 'http' == substr( $course_video_embed, 0, 4) ) {
2758
+		if ( 'http' == substr( $course_video_embed, 0, 4) ) {
2759 2759
 
2760
-            $course_video_embed = wp_oembed_get( esc_url( $course_video_embed ) );
2760
+			$course_video_embed = wp_oembed_get( esc_url( $course_video_embed ) );
2761 2761
 
2762
-        } // End If Statement
2762
+		} // End If Statement
2763 2763
 
2764
-        if ( '' != $course_video_embed ) { ?>
2764
+		if ( '' != $course_video_embed ) { ?>
2765 2765
 
2766 2766
             <div class="course-video">
2767 2767
                 <?php echo html_entity_decode($course_video_embed); ?>
2768 2768
             </div>
2769 2769
 
2770 2770
         <?php } // End If Statement
2771
-    }
2771
+	}
2772 2772
 
2773
-    /**
2774
-     * Output the title for the single lesson page
2775
-     *
2776
-     * @global $post
2777
-     * @since 1.9.0
2778
-     */
2779
-    public static function the_title(){
2773
+	/**
2774
+	 * Output the title for the single lesson page
2775
+	 *
2776
+	 * @global $post
2777
+	 * @since 1.9.0
2778
+	 */
2779
+	public static function the_title(){
2780 2780
 
2781
-        global $post;
2781
+		global $post;
2782 2782
 
2783
-        ?>
2783
+		?>
2784 2784
         <header>
2785 2785
 
2786 2786
             <h1>
2787 2787
 
2788 2788
                 <?php
2789
-                /**
2790
-                 * Filter documented in class-sensei-messages.php the_title
2791
-                 */
2792
-                echo apply_filters( 'sensei_single_title', get_the_title( $post ), $post->post_type );
2793
-                ?>
2789
+				/**
2790
+				 * Filter documented in class-sensei-messages.php the_title
2791
+				 */
2792
+				echo apply_filters( 'sensei_single_title', get_the_title( $post ), $post->post_type );
2793
+				?>
2794 2794
 
2795 2795
             </h1>
2796 2796
 
@@ -2798,111 +2798,111 @@  discard block
 block discarded – undo
2798 2798
 
2799 2799
         <?php
2800 2800
 
2801
-    }//the_title
2802
-
2803
-    /**
2804
-     * Show the title on the course category pages
2805
-     *
2806
-     * @since 1.9.0
2807
-     */
2808
-    public static function course_category_title(){
2809
-
2810
-        if( ! is_tax( 'course-category' ) ){
2811
-            return;
2812
-        }
2813
-
2814
-        $category_slug = get_query_var('course-category');
2815
-        $term  = get_term_by('slug',$category_slug,'course-category');
2816
-
2817
-        if( ! empty($term) ){
2818
-
2819
-            $title = $term->name;
2820
-
2821
-        }else{
2822
-
2823
-            $title = 'Course Category';
2824
-
2825
-        }
2826
-
2827
-        $html = '<h2 class="sensei-category-title">';
2828
-        $html .= __('Category') . ' ' . $title;
2829
-        $html .= '</h2>';
2830
-
2831
-        echo apply_filters( 'course_category_title', $html , $term->term_id );
2832
-
2833
-    }// course_category_title
2834
-
2835
-    /**
2836
-     * Alter the course query to respect the order set for courses and apply
2837
-     * this on the course-category pages.
2838
-     *
2839
-     * @since 1.9.0
2840
-     *
2841
-     * @param WP_Query $query
2842
-     * @return WP_Query
2843
-     */
2844
-    public static function alter_course_category_order( $query ){
2845
-
2846
-        if( ! is_tax( 'course-category' ) || ! $query->is_main_query() ){
2847
-            return $query;
2848
-        }
2849
-
2850
-        $order = get_option( 'sensei_course_order', '' );
2851
-        if( !empty( $order )  ){
2852
-            $query->set('orderby', 'menu_order' );
2853
-            $query->set('order', 'ASC' );
2854
-        }
2855
-
2856
-        return $query;
2857
-
2858
-    }
2859
-
2860
-    /**
2861
-     * The very basic course query arguments
2862
-     * so we don't have to repeat this througout
2863
-     * the code base.
2864
-     *
2865
-     * Usage:
2866
-     * $args = Sensei_Course::get_default_query_args();
2867
-     * $args['custom_arg'] ='custom value';
2868
-     * $courses = get_posts( $args )
2869
-     *
2870
-     * @since 1.9.0
2871
-     *
2872
-     * @return array
2873
-     */
2874
-    public static function get_default_query_args(){
2875
-        return array(
2876
-            'post_type' 		=> 'course',
2877
-            'posts_per_page' 		=> 1000,
2878
-            'orderby'         	=> 'date',
2879
-            'order'           	=> 'DESC',
2880
-            'suppress_filters' 	=> 0
2881
-        );
2882
-    }
2883
-
2884
-    /**
2885
-     * Check if the prerequisite course is completed
2886
-     * Courses with no pre-requisite should always return true
2887
-     *
2888
-     * @since 1.9.0
2889
-     * @param $course_id
2890
-     * @return bool
2891
-     */
2892
-    public static function is_prerequisite_complete( $course_id ){
2893
-
2894
-        $course_prerequisite_id = get_post_meta( $course_id, '_course_prerequisite', true );
2895
-
2896
-        // if it has a pre requisite course check it
2897
-        if( ! empty(  $course_prerequisite_id ) ){
2898
-
2899
-            return Sensei_Utils::user_completed_course( $course_prerequisite_id, get_current_user_id() );
2900
-
2901
-        }
2902
-
2903
-        return true;
2904
-
2905
-    }// end is_prerequisite_complete
2801
+	}//the_title
2802
+
2803
+	/**
2804
+	 * Show the title on the course category pages
2805
+	 *
2806
+	 * @since 1.9.0
2807
+	 */
2808
+	public static function course_category_title(){
2809
+
2810
+		if( ! is_tax( 'course-category' ) ){
2811
+			return;
2812
+		}
2813
+
2814
+		$category_slug = get_query_var('course-category');
2815
+		$term  = get_term_by('slug',$category_slug,'course-category');
2816
+
2817
+		if( ! empty($term) ){
2818
+
2819
+			$title = $term->name;
2820
+
2821
+		}else{
2822
+
2823
+			$title = 'Course Category';
2824
+
2825
+		}
2826
+
2827
+		$html = '<h2 class="sensei-category-title">';
2828
+		$html .= __('Category') . ' ' . $title;
2829
+		$html .= '</h2>';
2830
+
2831
+		echo apply_filters( 'course_category_title', $html , $term->term_id );
2832
+
2833
+	}// course_category_title
2834
+
2835
+	/**
2836
+	 * Alter the course query to respect the order set for courses and apply
2837
+	 * this on the course-category pages.
2838
+	 *
2839
+	 * @since 1.9.0
2840
+	 *
2841
+	 * @param WP_Query $query
2842
+	 * @return WP_Query
2843
+	 */
2844
+	public static function alter_course_category_order( $query ){
2845
+
2846
+		if( ! is_tax( 'course-category' ) || ! $query->is_main_query() ){
2847
+			return $query;
2848
+		}
2849
+
2850
+		$order = get_option( 'sensei_course_order', '' );
2851
+		if( !empty( $order )  ){
2852
+			$query->set('orderby', 'menu_order' );
2853
+			$query->set('order', 'ASC' );
2854
+		}
2855
+
2856
+		return $query;
2857
+
2858
+	}
2859
+
2860
+	/**
2861
+	 * The very basic course query arguments
2862
+	 * so we don't have to repeat this througout
2863
+	 * the code base.
2864
+	 *
2865
+	 * Usage:
2866
+	 * $args = Sensei_Course::get_default_query_args();
2867
+	 * $args['custom_arg'] ='custom value';
2868
+	 * $courses = get_posts( $args )
2869
+	 *
2870
+	 * @since 1.9.0
2871
+	 *
2872
+	 * @return array
2873
+	 */
2874
+	public static function get_default_query_args(){
2875
+		return array(
2876
+			'post_type' 		=> 'course',
2877
+			'posts_per_page' 		=> 1000,
2878
+			'orderby'         	=> 'date',
2879
+			'order'           	=> 'DESC',
2880
+			'suppress_filters' 	=> 0
2881
+		);
2882
+	}
2883
+
2884
+	/**
2885
+	 * Check if the prerequisite course is completed
2886
+	 * Courses with no pre-requisite should always return true
2887
+	 *
2888
+	 * @since 1.9.0
2889
+	 * @param $course_id
2890
+	 * @return bool
2891
+	 */
2892
+	public static function is_prerequisite_complete( $course_id ){
2893
+
2894
+		$course_prerequisite_id = get_post_meta( $course_id, '_course_prerequisite', true );
2895
+
2896
+		// if it has a pre requisite course check it
2897
+		if( ! empty(  $course_prerequisite_id ) ){
2898
+
2899
+			return Sensei_Utils::user_completed_course( $course_prerequisite_id, get_current_user_id() );
2900
+
2901
+		}
2902
+
2903
+		return true;
2904
+
2905
+	}// end is_prerequisite_complete
2906 2906
 
2907 2907
 
2908 2908
 }// End Class
Please login to merge, or discard this patch.
Spacing   +638 added lines, -638 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
2
+if ( ! defined('ABSPATH')) exit; // Exit if accessed directly
3 3
 
4 4
 /**
5 5
  * Sensei Course Class
@@ -33,72 +33,72 @@  discard block
 block discarded – undo
33 33
 	 * Constructor.
34 34
 	 * @since  1.0.0
35 35
 	 */
36
-	public function __construct () {
36
+	public function __construct() {
37 37
 
38 38
         $this->token = 'course';
39 39
 
40 40
 		// Setup meta fields for this post type
41
-		$this->meta_fields = array( 'course_prerequisite', 'course_featured', 'course_video_embed', 'course_woocommerce_product' );
41
+		$this->meta_fields = array('course_prerequisite', 'course_featured', 'course_video_embed', 'course_woocommerce_product');
42 42
 		// Admin actions
43
-		if ( is_admin() ) {
43
+		if (is_admin()) {
44 44
 			// Metabox functions
45
-            add_action( 'add_meta_boxes', array( $this, 'meta_box_setup' ), 20 );
46
-			add_action( 'save_post', array( $this, 'meta_box_save' ) );
45
+            add_action('add_meta_boxes', array($this, 'meta_box_setup'), 20);
46
+			add_action('save_post', array($this, 'meta_box_save'));
47 47
 			// Custom Write Panel Columns
48
-			add_filter( 'manage_edit-course_columns', array( $this, 'add_column_headings' ), 10, 1 );
49
-			add_action( 'manage_posts_custom_column', array( $this, 'add_column_data' ), 10, 2 );
48
+			add_filter('manage_edit-course_columns', array($this, 'add_column_headings'), 10, 1);
49
+			add_action('manage_posts_custom_column', array($this, 'add_column_data'), 10, 2);
50 50
 		} else {
51 51
 			$this->my_courses_page = false;
52 52
 		} // End If Statement
53 53
 
54 54
 		// Update course completion upon completion of a lesson
55
-		add_action( 'sensei_user_lesson_end', array( $this, 'update_status_after_lesson_change' ), 10, 2 );
55
+		add_action('sensei_user_lesson_end', array($this, 'update_status_after_lesson_change'), 10, 2);
56 56
 		// Update course completion upon reset of a lesson
57
-		add_action( 'sensei_user_lesson_reset', array( $this, 'update_status_after_lesson_change' ), 10, 2 );
57
+		add_action('sensei_user_lesson_reset', array($this, 'update_status_after_lesson_change'), 10, 2);
58 58
 		// Update course completion upon grading of a quiz
59
-		add_action( 'sensei_user_quiz_grade', array( $this, 'update_status_after_quiz_submission' ), 10, 2 );
59
+		add_action('sensei_user_quiz_grade', array($this, 'update_status_after_quiz_submission'), 10, 2);
60 60
 
61 61
         // show the progress bar ont he single course page
62
-        add_action( 'sensei_single_course_content_inside_before' , array( $this, 'the_progress_statement' ), 15 );
63
-        add_action( 'sensei_single_course_content_inside_before' , array( $this, 'the_progress_meter' ), 16 );
62
+        add_action('sensei_single_course_content_inside_before', array($this, 'the_progress_statement'), 15);
63
+        add_action('sensei_single_course_content_inside_before', array($this, 'the_progress_meter'), 16);
64 64
 
65 65
         // provide an option to block all emails related to a selected course
66
-        add_filter( 'sensei_send_emails', array( $this, 'block_notification_emails' ) );
67
-        add_action( 'save_post', array( $this, 'save_course_notification_meta_box' ) );
66
+        add_filter('sensei_send_emails', array($this, 'block_notification_emails'));
67
+        add_action('save_post', array($this, 'save_course_notification_meta_box'));
68 68
 
69 69
         // preview lessons on the course content
70
-        add_action( 'sensei_course_content_inside_after',array( $this, 'the_course_free_lesson_preview' ) );
70
+        add_action('sensei_course_content_inside_after', array($this, 'the_course_free_lesson_preview'));
71 71
 
72 72
         // the course meta
73
-        add_action('sensei_course_content_inside_before', array( $this, 'the_course_meta' ) );
73
+        add_action('sensei_course_content_inside_before', array($this, 'the_course_meta'));
74 74
 
75 75
         // backwards compatible template hooks
76
-        add_action('sensei_course_content_inside_before', array( $this, 'content_before_backwards_compatibility_hooks' ));
77
-        add_action('sensei_loop_course_before', array( $this,'loop_before_backwards_compatibility_hooks' ) );
76
+        add_action('sensei_course_content_inside_before', array($this, 'content_before_backwards_compatibility_hooks'));
77
+        add_action('sensei_loop_course_before', array($this, 'loop_before_backwards_compatibility_hooks'));
78 78
 
79 79
         // add the user status on the course to the markup as a class
80
-        add_filter('post_class', array( __CLASS__ , 'add_course_user_status_class' ), 20, 3 );
80
+        add_filter('post_class', array(__CLASS__, 'add_course_user_status_class'), 20, 3);
81 81
 
82 82
         //filter the course query in Sensei specific instances
83
-        add_filter( 'pre_get_posts', array( __CLASS__, 'course_query_filter' ) );
83
+        add_filter('pre_get_posts', array(__CLASS__, 'course_query_filter'));
84 84
 
85 85
         //attache the sorting to the course archive
86
-        add_action ( 'sensei_archive_before_course_loop' , array( 'Sensei_Course', 'course_archive_sorting' ) );
86
+        add_action('sensei_archive_before_course_loop', array('Sensei_Course', 'course_archive_sorting'));
87 87
 
88 88
         //attach the filter links to the course archive
89
-        add_action ( 'sensei_archive_before_course_loop' , array( 'Sensei_Course', 'course_archive_filters' ) );
89
+        add_action('sensei_archive_before_course_loop', array('Sensei_Course', 'course_archive_filters'));
90 90
 
91 91
         //filter the course query when featured filter is applied
92
-        add_filter( 'pre_get_posts',  array( __CLASS__, 'course_archive_featured_filter'));
92
+        add_filter('pre_get_posts', array(__CLASS__, 'course_archive_featured_filter'));
93 93
 
94 94
         // handle the order by title post submission
95
-        add_filter( 'pre_get_posts',  array( __CLASS__, 'course_archive_order_by_title'));
95
+        add_filter('pre_get_posts', array(__CLASS__, 'course_archive_order_by_title'));
96 96
 
97 97
         // ensure the course category page respects the manual order set for courses
98
-        add_filter( 'pre_get_posts',  array( __CLASS__, 'alter_course_category_order'));
98
+        add_filter('pre_get_posts', array(__CLASS__, 'alter_course_category_order'));
99 99
 
100 100
         // flush rewrite rules when saving a course
101
-        add_action('save_post', array( 'Sensei_Course', 'flush_rewrite_rules' ) );
101
+        add_action('save_post', array('Sensei_Course', 'flush_rewrite_rules'));
102 102
 
103 103
 	} // End __construct()
104 104
 
@@ -108,10 +108,10 @@  discard block
 block discarded – undo
108 108
 	 * @param type $user_id
109 109
 	 * @param type $quiz_id
110 110
 	 */
111
-	public function update_status_after_quiz_submission( $user_id, $quiz_id ) {
112
-		if ( intval( $user_id ) > 0 && intval( $quiz_id ) > 0 ) {
113
-			$lesson_id = get_post_meta( $quiz_id, '_quiz_lesson', true );
114
-			$this->update_status_after_lesson_change( $user_id, $lesson_id );
111
+	public function update_status_after_quiz_submission($user_id, $quiz_id) {
112
+		if (intval($user_id) > 0 && intval($quiz_id) > 0) {
113
+			$lesson_id = get_post_meta($quiz_id, '_quiz_lesson', true);
114
+			$this->update_status_after_lesson_change($user_id, $lesson_id);
115 115
 		}
116 116
 	}
117 117
 
@@ -121,12 +121,12 @@  discard block
 block discarded – undo
121 121
 	 * @param int $user_id
122 122
 	 * @param int $lesson_id
123 123
 	 */
124
-	public function update_status_after_lesson_change( $user_id, $lesson_id ) {
125
-		if ( intval( $user_id ) > 0 && intval( $lesson_id ) > 0 ) {
126
-			$course_id = get_post_meta( $lesson_id, '_lesson_course', true );
127
-			if ( intval( $course_id ) > 0 ) {
124
+	public function update_status_after_lesson_change($user_id, $lesson_id) {
125
+		if (intval($user_id) > 0 && intval($lesson_id) > 0) {
126
+			$course_id = get_post_meta($lesson_id, '_lesson_course', true);
127
+			if (intval($course_id) > 0) {
128 128
 				// Updates the Course status and it's meta data
129
-				Sensei_Utils::user_complete_course( $course_id, $user_id );
129
+				Sensei_Utils::user_complete_course($course_id, $user_id);
130 130
 			}
131 131
 		}
132 132
 	}
@@ -137,27 +137,27 @@  discard block
 block discarded – undo
137 137
 	 * @access public
138 138
 	 * @return void
139 139
 	 */
140
-	public function meta_box_setup () {
140
+	public function meta_box_setup() {
141 141
 
142
-		if ( Sensei_WC::is_woocommerce_active() ) {
142
+		if (Sensei_WC::is_woocommerce_active()) {
143 143
 			// Add Meta Box for WooCommerce Course
144
-			add_meta_box( 'course-wc-product', __( 'WooCommerce Product', 'woothemes-sensei' ), array( $this, 'course_woocommerce_product_meta_box_content' ), $this->token, 'side', 'default' );
144
+			add_meta_box('course-wc-product', __('WooCommerce Product', 'woothemes-sensei'), array($this, 'course_woocommerce_product_meta_box_content'), $this->token, 'side', 'default');
145 145
 		} // End If Statement
146 146
 		// Add Meta Box for Prerequisite Course
147
-		add_meta_box( 'course-prerequisite', __( 'Course Prerequisite', 'woothemes-sensei' ), array( $this, 'course_prerequisite_meta_box_content' ), $this->token, 'side', 'default' );
147
+		add_meta_box('course-prerequisite', __('Course Prerequisite', 'woothemes-sensei'), array($this, 'course_prerequisite_meta_box_content'), $this->token, 'side', 'default');
148 148
 		// Add Meta Box for Featured Course
149
-		add_meta_box( 'course-featured', __( 'Featured Course', 'woothemes-sensei' ), array( $this, 'course_featured_meta_box_content' ), $this->token, 'side', 'default' );
149
+		add_meta_box('course-featured', __('Featured Course', 'woothemes-sensei'), array($this, 'course_featured_meta_box_content'), $this->token, 'side', 'default');
150 150
 		// Add Meta Box for Course Meta
151
-		add_meta_box( 'course-video', __( 'Course Video', 'woothemes-sensei' ), array( $this, 'course_video_meta_box_content' ), $this->token, 'normal', 'default' );
151
+		add_meta_box('course-video', __('Course Video', 'woothemes-sensei'), array($this, 'course_video_meta_box_content'), $this->token, 'normal', 'default');
152 152
 		// Add Meta Box for Course Lessons
153
-		add_meta_box( 'course-lessons', __( 'Course Lessons', 'woothemes-sensei' ), array( $this, 'course_lessons_meta_box_content' ), $this->token, 'normal', 'default' );
153
+		add_meta_box('course-lessons', __('Course Lessons', 'woothemes-sensei'), array($this, 'course_lessons_meta_box_content'), $this->token, 'normal', 'default');
154 154
         // Add Meta Box to link to Manage Learners
155
-        add_meta_box( 'course-manage', __( 'Course Management', 'woothemes-sensei' ), array( $this, 'course_manage_meta_box_content' ), $this->token, 'side', 'default' );
155
+        add_meta_box('course-manage', __('Course Management', 'woothemes-sensei'), array($this, 'course_manage_meta_box_content'), $this->token, 'side', 'default');
156 156
         // Remove "Custom Settings" meta box.
157
-		remove_meta_box( 'woothemes-settings', $this->token, 'normal' );
157
+		remove_meta_box('woothemes-settings', $this->token, 'normal');
158 158
 
159 159
         // add Disable email notification box
160
-        add_meta_box( 'course-notifications', __( 'Course Notifications', 'woothemes-sensei' ), array( $this, 'course_notification_meta_box_content' ), 'course', 'normal', 'default' );
160
+        add_meta_box('course-notifications', __('Course Notifications', 'woothemes-sensei'), array($this, 'course_notification_meta_box_content'), 'course', 'normal', 'default');
161 161
 
162 162
 	} // End meta_box_setup()
163 163
 
@@ -167,58 +167,58 @@  discard block
 block discarded – undo
167 167
 	 * @access public
168 168
 	 * @return void
169 169
 	 */
170
-	public function course_woocommerce_product_meta_box_content () {
170
+	public function course_woocommerce_product_meta_box_content() {
171 171
 		global $post;
172 172
 
173
-		$select_course_woocommerce_product = get_post_meta( $post->ID, '_course_woocommerce_product', true );
173
+		$select_course_woocommerce_product = get_post_meta($post->ID, '_course_woocommerce_product', true);
174 174
 
175
-		$post_args = array(	'post_type' 		=> array( 'product', 'product_variation' ),
175
+		$post_args = array('post_type' 		=> array('product', 'product_variation'),
176 176
 							'posts_per_page' 		=> -1,
177 177
 							'orderby'         	=> 'title',
178 178
     						'order'           	=> 'DESC',
179 179
     						'exclude' 			=> $post->ID,
180
-    						'post_status'		=> array( 'publish', 'private', 'draft' ),
180
+    						'post_status'		=> array('publish', 'private', 'draft'),
181 181
     						'tax_query'			=> array(
182 182
 								array(
183 183
 									'taxonomy'	=> 'product_type',
184 184
 									'field'		=> 'slug',
185
-									'terms'		=> array( 'variable', 'grouped' ),
185
+									'terms'		=> array('variable', 'grouped'),
186 186
 									'operator'	=> 'NOT IN'
187 187
 								)
188 188
 							),
189 189
 							'suppress_filters' 	=> 0
190 190
 							);
191
-		$posts_array = get_posts( $post_args );
191
+		$posts_array = get_posts($post_args);
192 192
 
193 193
 		$html = '';
194 194
 
195
-		$html .= '<input type="hidden" name="' . esc_attr( 'woo_' . $this->token . '_noonce' ) . '" id="' . esc_attr( 'woo_' . $this->token . '_noonce' ) . '" value="' . esc_attr( wp_create_nonce( plugin_basename(__FILE__) ) ) . '" />';
195
+		$html .= '<input type="hidden" name="'.esc_attr('woo_'.$this->token.'_noonce').'" id="'.esc_attr('woo_'.$this->token.'_noonce').'" value="'.esc_attr(wp_create_nonce(plugin_basename(__FILE__))).'" />';
196 196
 
197
-		if ( count( $posts_array ) > 0 ) {
197
+		if (count($posts_array) > 0) {
198 198
 
199
-			$html .= '<select id="course-woocommerce-product-options" name="course_woocommerce_product" class="chosen_select widefat">' . "\n";
200
-			$html .= '<option value="-">' . __( 'None', 'woothemes-sensei' ) . '</option>';
199
+			$html .= '<select id="course-woocommerce-product-options" name="course_woocommerce_product" class="chosen_select widefat">'."\n";
200
+			$html .= '<option value="-">'.__('None', 'woothemes-sensei').'</option>';
201 201
 				$prev_parent_id = 0;
202
-				foreach ( $posts_array as $post_item ) {
202
+				foreach ($posts_array as $post_item) {
203 203
 
204
-					if ( 'product_variation' == $post_item->post_type ) {
204
+					if ('product_variation' == $post_item->post_type) {
205 205
 
206
-						$product_object = get_product( $post_item->ID );
207
-						$parent_id = wp_get_post_parent_id( $post_item->ID );
206
+						$product_object = get_product($post_item->ID);
207
+						$parent_id = wp_get_post_parent_id($post_item->ID);
208 208
 
209
-                        if( sensei_check_woocommerce_version( '2.1' ) ) {
210
-							$formatted_variation = wc_get_formatted_variation( $product_object->variation_data, true );
209
+                        if (sensei_check_woocommerce_version('2.1')) {
210
+							$formatted_variation = wc_get_formatted_variation($product_object->variation_data, true);
211 211
 
212 212
 						} else {
213 213
                             // fall back to pre wc 2.1
214
-							$formatted_variation = woocommerce_get_formatted_variation( $product_object->variation_data, true );
214
+							$formatted_variation = woocommerce_get_formatted_variation($product_object->variation_data, true);
215 215
 
216 216
 						}
217 217
 
218
-                        $product_name = ucwords( $formatted_variation );
219
-                        if( empty( $product_name ) ){
218
+                        $product_name = ucwords($formatted_variation);
219
+                        if (empty($product_name)) {
220 220
 
221
-                            $product_name = __( 'Variation #', 'woothemes-sensei' ) . $product_object->variation_id;
221
+                            $product_name = __('Variation #', 'woothemes-sensei').$product_object->variation_id;
222 222
 
223 223
                         }
224 224
 
@@ -231,47 +231,47 @@  discard block
 block discarded – undo
231 231
 					}
232 232
 
233 233
 					// Show variations in groups
234
-					if( $parent_id && $parent_id != $prev_parent_id ) {
234
+					if ($parent_id && $parent_id != $prev_parent_id) {
235 235
 
236
-						if( 0 != $prev_parent_id ) {
236
+						if (0 != $prev_parent_id) {
237 237
 
238 238
 							$html .= '</optgroup>';
239 239
 
240 240
 						}
241
-						$html .= '<optgroup label="' . get_the_title( $parent_id ) . '">';
241
+						$html .= '<optgroup label="'.get_the_title($parent_id).'">';
242 242
 						$prev_parent_id = $parent_id;
243 243
 
244
-					} elseif( ! $parent_id && 0 == $prev_parent_id ) {
244
+					} elseif ( ! $parent_id && 0 == $prev_parent_id) {
245 245
 
246 246
 						$html .= '</optgroup>';
247 247
 
248 248
 					}
249 249
 
250
-					$html .= '<option value="' . esc_attr( absint( $post_item->ID ) ) . '"' . selected( $post_item->ID, $select_course_woocommerce_product, false ) . '>' . esc_html( $product_name ) . '</option>' . "\n";
250
+					$html .= '<option value="'.esc_attr(absint($post_item->ID)).'"'.selected($post_item->ID, $select_course_woocommerce_product, false).'>'.esc_html($product_name).'</option>'."\n";
251 251
 
252 252
 				} // End For Loop
253 253
 
254
-			$html .= '</select>' . "\n";
255
-			if ( current_user_can( 'publish_product' )) {
254
+			$html .= '</select>'."\n";
255
+			if (current_user_can('publish_product')) {
256 256
 
257
-				$html .= '<p>' . "\n";
258
-					$html .= '<a href="' . admin_url( 'post-new.php?post_type=product' ) . '" title="' . esc_attr( __( 'Add a Product', 'woothemes-sensei' ) ) . '">' . __( 'Add a Product', 'woothemes-sensei' ) . '</a>' . "\n";
257
+				$html .= '<p>'."\n";
258
+					$html .= '<a href="'.admin_url('post-new.php?post_type=product').'" title="'.esc_attr(__('Add a Product', 'woothemes-sensei')).'">'.__('Add a Product', 'woothemes-sensei').'</a>'."\n";
259 259
 				$html .= '</p>'."\n";
260 260
 
261 261
 			} // End If Statement
262 262
 
263 263
 		} else {
264 264
 
265
-			if ( current_user_can( 'publish_product' )) {
265
+			if (current_user_can('publish_product')) {
266 266
 
267
-				$html .= '<p>' . "\n";
268
-					$html .= esc_html( __( 'No products exist yet.', 'woothemes-sensei' ) ) . '&nbsp;<a href="' . admin_url( 'post-new.php?post_type=product' ) . '" title="' . esc_attr( __( 'Add a Product', 'woothemes-sensei' ) ) . '">' . __( 'Please add some first', 'woothemes-sensei' ) . '</a>' . "\n";
267
+				$html .= '<p>'."\n";
268
+					$html .= esc_html(__('No products exist yet.', 'woothemes-sensei')).'&nbsp;<a href="'.admin_url('post-new.php?post_type=product').'" title="'.esc_attr(__('Add a Product', 'woothemes-sensei')).'">'.__('Please add some first', 'woothemes-sensei').'</a>'."\n";
269 269
 				$html .= '</p>'."\n";
270 270
 
271 271
 			} else {
272 272
 
273
-                $html .= '<p>' . "\n";
274
-					$html .= esc_html( __( 'No products exist yet.', 'woothemes-sensei' ) ) . "\n";
273
+                $html .= '<p>'."\n";
274
+					$html .= esc_html(__('No products exist yet.', 'woothemes-sensei'))."\n";
275 275
 				$html .= '</p>'."\n";
276 276
 
277 277
 			} // End If Statement
@@ -288,33 +288,33 @@  discard block
 block discarded – undo
288 288
 	 * @access public
289 289
 	 * @return void
290 290
 	 */
291
-	public function course_prerequisite_meta_box_content () {
291
+	public function course_prerequisite_meta_box_content() {
292 292
 		global $post;
293 293
 
294
-		$select_course_prerequisite = get_post_meta( $post->ID, '_course_prerequisite', true );
294
+		$select_course_prerequisite = get_post_meta($post->ID, '_course_prerequisite', true);
295 295
 
296
-		$post_args = array(	'post_type' 		=> 'course',
296
+		$post_args = array('post_type' 		=> 'course',
297 297
 							'posts_per_page' 		=> -1,
298 298
 							'orderby'         	=> 'title',
299 299
     						'order'           	=> 'DESC',
300 300
     						'exclude' 			=> $post->ID,
301 301
 							'suppress_filters' 	=> 0
302 302
 							);
303
-		$posts_array = get_posts( $post_args );
303
+		$posts_array = get_posts($post_args);
304 304
 
305 305
 		$html = '';
306 306
 
307
-		$html .= '<input type="hidden" name="' . esc_attr( 'woo_' . $this->token . '_noonce' ) . '" id="' . esc_attr( 'woo_' . $this->token . '_noonce' ) . '" value="' . esc_attr( wp_create_nonce( plugin_basename(__FILE__) ) ) . '" />';
307
+		$html .= '<input type="hidden" name="'.esc_attr('woo_'.$this->token.'_noonce').'" id="'.esc_attr('woo_'.$this->token.'_noonce').'" value="'.esc_attr(wp_create_nonce(plugin_basename(__FILE__))).'" />';
308 308
 
309
-		if ( count( $posts_array ) > 0 ) {
310
-			$html .= '<select id="course-prerequisite-options" name="course_prerequisite" class="chosen_select widefat">' . "\n";
311
-			$html .= '<option value="">' . __( 'None', 'woothemes-sensei' ) . '</option>';
312
-				foreach ($posts_array as $post_item){
313
-					$html .= '<option value="' . esc_attr( absint( $post_item->ID ) ) . '"' . selected( $post_item->ID, $select_course_prerequisite, false ) . '>' . esc_html( $post_item->post_title ) . '</option>' . "\n";
309
+		if (count($posts_array) > 0) {
310
+			$html .= '<select id="course-prerequisite-options" name="course_prerequisite" class="chosen_select widefat">'."\n";
311
+			$html .= '<option value="">'.__('None', 'woothemes-sensei').'</option>';
312
+				foreach ($posts_array as $post_item) {
313
+					$html .= '<option value="'.esc_attr(absint($post_item->ID)).'"'.selected($post_item->ID, $select_course_prerequisite, false).'>'.esc_html($post_item->post_title).'</option>'."\n";
314 314
 				} // End For Loop
315
-			$html .= '</select>' . "\n";
315
+			$html .= '</select>'."\n";
316 316
 		} else {
317
-			$html .= '<p>' . esc_html( __( 'No courses exist yet. Please add some first.', 'woothemes-sensei' ) ) . '</p>';
317
+			$html .= '<p>'.esc_html(__('No courses exist yet. Please add some first.', 'woothemes-sensei')).'</p>';
318 318
 		} // End If Statement
319 319
 
320 320
 		echo $html;
@@ -327,21 +327,21 @@  discard block
 block discarded – undo
327 327
 	 * @access public
328 328
 	 * @return void
329 329
 	 */
330
-	public function course_featured_meta_box_content () {
330
+	public function course_featured_meta_box_content() {
331 331
 		global $post;
332 332
 
333
-		$course_featured = get_post_meta( $post->ID, '_course_featured', true );
333
+		$course_featured = get_post_meta($post->ID, '_course_featured', true);
334 334
 
335 335
 		$html = '';
336 336
 
337
-		$html .= '<input type="hidden" name="' . esc_attr( 'woo_' . $this->token . '_noonce' ) . '" id="' . esc_attr( 'woo_' . $this->token . '_noonce' ) . '" value="' . esc_attr( wp_create_nonce( plugin_basename(__FILE__) ) ) . '" />';
337
+		$html .= '<input type="hidden" name="'.esc_attr('woo_'.$this->token.'_noonce').'" id="'.esc_attr('woo_'.$this->token.'_noonce').'" value="'.esc_attr(wp_create_nonce(plugin_basename(__FILE__))).'" />';
338 338
 
339 339
 		$checked = '';
340
-		if ( isset( $course_featured ) && ( '' != $course_featured ) ) {
341
-	 	    $checked = checked( 'featured', $course_featured, false );
340
+		if (isset($course_featured) && ('' != $course_featured)) {
341
+	 	    $checked = checked('featured', $course_featured, false);
342 342
 	 	} // End If Statement
343 343
 
344
-	 	$html .= '<input type="checkbox" name="course_featured" value="featured" ' . $checked . '>&nbsp;' . __( 'Feature this course', 'woothemes-sensei' ) . '<br>';
344
+	 	$html .= '<input type="checkbox" name="course_featured" value="featured" '.$checked.'>&nbsp;'.__('Feature this course', 'woothemes-sensei').'<br>';
345 345
 
346 346
 		echo $html;
347 347
 
@@ -353,16 +353,16 @@  discard block
 block discarded – undo
353 353
 	 * @access public
354 354
 	 * @return void
355 355
 	 */
356
-	public function course_video_meta_box_content () {
356
+	public function course_video_meta_box_content() {
357 357
 		global $post;
358 358
 
359
-		$course_video_embed = get_post_meta( $post->ID, '_course_video_embed', true );
359
+		$course_video_embed = get_post_meta($post->ID, '_course_video_embed', true);
360 360
 
361 361
 		$html = '';
362 362
 
363
-		$html .= '<label class="screen-reader-text" for="course_video_embed">' . __( 'Video Embed Code', 'woothemes-sensei' ) . '</label>';
364
-		$html .= '<textarea rows="5" cols="50" name="course_video_embed" tabindex="6" id="course-video-embed">' . $course_video_embed . '</textarea>';
365
-		$html .= '<p>' .  __( 'Paste the embed code for your video (e.g. YouTube, Vimeo etc.) in the box above.', 'woothemes-sensei' ) . '</p>';
363
+		$html .= '<label class="screen-reader-text" for="course_video_embed">'.__('Video Embed Code', 'woothemes-sensei').'</label>';
364
+		$html .= '<textarea rows="5" cols="50" name="course_video_embed" tabindex="6" id="course-video-embed">'.$course_video_embed.'</textarea>';
365
+		$html .= '<p>'.__('Paste the embed code for your video (e.g. YouTube, Vimeo etc.) in the box above.', 'woothemes-sensei').'</p>';
366 366
 
367 367
 		echo $html;
368 368
 
@@ -377,36 +377,36 @@  discard block
 block discarded – undo
377 377
 	 * @param int $post_id
378 378
 	 * @return int
379 379
 	 */
380
-	public function meta_box_save ( $post_id ) {
380
+	public function meta_box_save($post_id) {
381 381
 		global $post;
382 382
 
383 383
 		/* Verify the nonce before proceeding. */
384
-		if ( ( get_post_type() != $this->token ) || ! wp_verify_nonce( $_POST['woo_' . $this->token . '_noonce'], plugin_basename(__FILE__) ) ) {
384
+		if ((get_post_type() != $this->token) || ! wp_verify_nonce($_POST['woo_'.$this->token.'_noonce'], plugin_basename(__FILE__))) {
385 385
 			return $post_id;
386 386
 		}
387 387
 
388 388
 		/* Get the post type object. */
389
-		$post_type = get_post_type_object( $post->post_type );
389
+		$post_type = get_post_type_object($post->post_type);
390 390
 
391 391
 		/* Check if the current user has permission to edit the post. */
392
-		if ( !current_user_can( $post_type->cap->edit_post, $post_id ) ) {
392
+		if ( ! current_user_can($post_type->cap->edit_post, $post_id)) {
393 393
 			return $post_id;
394 394
 		} // End If Statement
395 395
 
396
-		if ( 'page' == $_POST['post_type'] ) {
397
-			if ( ! current_user_can( 'edit_page', $post_id ) ) {
396
+		if ('page' == $_POST['post_type']) {
397
+			if ( ! current_user_can('edit_page', $post_id)) {
398 398
 				return $post_id;
399 399
 			} // End If Statement
400 400
 		} else {
401
-			if ( ! current_user_can( 'edit_post', $post_id ) ) {
401
+			if ( ! current_user_can('edit_post', $post_id)) {
402 402
 				return $post_id;
403 403
 			} // End If Statement
404 404
 		} // End If Statement
405 405
 
406 406
 		// Save the post meta data fields
407
-		if ( isset($this->meta_fields) && is_array($this->meta_fields) ) {
408
-			foreach ( $this->meta_fields as $meta_key ) {
409
-				$this->save_post_meta( $meta_key, $post_id );
407
+		if (isset($this->meta_fields) && is_array($this->meta_fields)) {
408
+			foreach ($this->meta_fields as $meta_key) {
409
+				$this->save_post_meta($meta_key, $post_id);
410 410
 			} // End For Loop
411 411
 		} // End If Statement
412 412
 
@@ -423,18 +423,18 @@  discard block
 block discarded – undo
423 423
 	 * @param int $post_id (default: 0)
424 424
 	 * @return int new meta id | bool meta value saved status
425 425
 	 */
426
-	private function save_post_meta( $post_key = '', $post_id = 0 ) {
426
+	private function save_post_meta($post_key = '', $post_id = 0) {
427 427
 		// Get the meta key.
428
-		$meta_key = '_' . $post_key;
428
+		$meta_key = '_'.$post_key;
429 429
 		// Get the posted data and sanitize it for use as an HTML class.
430
-		if ( 'course_video_embed' == $post_key) {
431
-			$new_meta_value = esc_html( $_POST[$post_key] );
430
+		if ('course_video_embed' == $post_key) {
431
+			$new_meta_value = esc_html($_POST[$post_key]);
432 432
 		} else {
433
-			$new_meta_value = ( isset( $_POST[$post_key] ) ? sanitize_html_class( $_POST[$post_key] ) : '' );
433
+			$new_meta_value = (isset($_POST[$post_key]) ? sanitize_html_class($_POST[$post_key]) : '');
434 434
 		} // End If Statement
435 435
 
436 436
         // update field with the new value
437
-        return update_post_meta( $post_id, $meta_key, $new_meta_value );
437
+        return update_post_meta($post_id, $meta_key, $new_meta_value);
438 438
 
439 439
 	} // End save_post_meta()
440 440
 
@@ -444,31 +444,31 @@  discard block
 block discarded – undo
444 444
 	 * @access public
445 445
 	 * @return void
446 446
 	 */
447
-	public function course_lessons_meta_box_content () {
447
+	public function course_lessons_meta_box_content() {
448 448
 
449 449
 		global $post;
450 450
 
451 451
 		// Setup Lesson Query
452 452
 		$posts_array = array();
453
-		if ( 0 < $post->ID ) {
453
+		if (0 < $post->ID) {
454 454
 
455
-			$posts_array = $this->course_lessons( $post->ID, 'any' );
455
+			$posts_array = $this->course_lessons($post->ID, 'any');
456 456
 
457 457
 		} // End If Statement
458 458
 
459 459
 		$html = '';
460
-		$html .= '<input type="hidden" name="' . esc_attr( 'woo_' . $this->token . '_noonce' ) . '" id="'
461
-                 . esc_attr( 'woo_' . $this->token . '_noonce' )
462
-                 . '" value="' . esc_attr( wp_create_nonce( plugin_basename(__FILE__) ) ) . '" />';
460
+		$html .= '<input type="hidden" name="'.esc_attr('woo_'.$this->token.'_noonce').'" id="'
461
+                 . esc_attr('woo_'.$this->token.'_noonce')
462
+                 . '" value="'.esc_attr(wp_create_nonce(plugin_basename(__FILE__))).'" />';
463 463
 
464
-		if ( count( $posts_array ) > 0 ) {
464
+		if (count($posts_array) > 0) {
465 465
 
466
-			foreach ($posts_array as $post_item){
466
+			foreach ($posts_array as $post_item) {
467 467
 
468 468
 				$html .= '<p>'."\n";
469 469
 
470 470
 					$html .= $post_item->post_title."\n";
471
-					$html .= '<a href="' . esc_url( get_edit_post_link( $post_item->ID ) ) . '" title="' . esc_attr( sprintf( __( 'Edit %s', 'woothemes-sensei' ), $post_item->post_title ) ) . '" class="edit-lesson-action">' . __( 'Edit this lesson', 'woothemes-sensei' ) . '</a>';
471
+					$html .= '<a href="'.esc_url(get_edit_post_link($post_item->ID)).'" title="'.esc_attr(sprintf(__('Edit %s', 'woothemes-sensei'), $post_item->post_title)).'" class="edit-lesson-action">'.__('Edit this lesson', 'woothemes-sensei').'</a>';
472 472
 
473 473
 				$html .= '</p>'."\n";
474 474
 
@@ -476,12 +476,12 @@  discard block
 block discarded – undo
476 476
 
477 477
 		} else {
478 478
 			$course_id = '';
479
-			if ( 0 < $post->ID ) { $course_id = '&course_id=' . $post->ID; }
480
-			$html .= '<p>' . esc_html( __( 'No lessons exist yet for this course.', 'woothemes-sensei' ) ) . "\n";
479
+			if (0 < $post->ID) { $course_id = '&course_id='.$post->ID; }
480
+			$html .= '<p>'.esc_html(__('No lessons exist yet for this course.', 'woothemes-sensei'))."\n";
481 481
 
482
-				$html .= '<a href="' . admin_url( 'post-new.php?post_type=lesson' . $course_id )
483
-                         . '" title="' . esc_attr( __( 'Add a Lesson', 'woothemes-sensei' ) ) . '">'
484
-                         . __( 'Please add some.', 'woothemes-sensei' ) . '</a>' . "\n";
482
+				$html .= '<a href="'.admin_url('post-new.php?post_type=lesson'.$course_id)
483
+                         . '" title="'.esc_attr(__('Add a Lesson', 'woothemes-sensei')).'">'
484
+                         . __('Please add some.', 'woothemes-sensei').'</a>'."\n";
485 485
 
486 486
 			$html .= '</p>'."\n";
487 487
 		} // End If Statement
@@ -498,12 +498,12 @@  discard block
 block discarded – undo
498 498
      * @return void
499 499
      */
500 500
 
501
-    public function course_manage_meta_box_content () {
501
+    public function course_manage_meta_box_content() {
502 502
         global $post;
503 503
         
504
-        $manage_url = esc_url( add_query_arg( array( 'page' => 'sensei_learners', 'course_id' => $post->ID, 'view' => 'learners' ), admin_url( 'admin.php') ) );
504
+        $manage_url = esc_url(add_query_arg(array('page' => 'sensei_learners', 'course_id' => $post->ID, 'view' => 'learners'), admin_url('admin.php')));
505 505
 
506
-        $grading_url = esc_url( add_query_arg( array( 'page' => 'sensei_grading', 'course_id' => $post->ID, 'view' => 'learners' ), admin_url( 'admin.php') ) );
506
+        $grading_url = esc_url(add_query_arg(array('page' => 'sensei_grading', 'course_id' => $post->ID, 'view' => 'learners'), admin_url('admin.php')));
507 507
 
508 508
 
509 509
         echo "<ul><li><a href='$manage_url'>".__("Manage Learners", 'woothemes-sensei')."</a></li>";
@@ -521,16 +521,16 @@  discard block
 block discarded – undo
521 521
 	 * @param  array $defaults
522 522
 	 * @return array $new_columns
523 523
 	 */
524
-	public function add_column_headings ( $defaults ) {
524
+	public function add_column_headings($defaults) {
525 525
 		$new_columns['cb'] = '<input type="checkbox" />';
526 526
 		// $new_columns['id'] = __( 'ID' );
527
-		$new_columns['title'] = _x( 'Course Title', 'column name', 'woothemes-sensei' );
528
-		$new_columns['course-prerequisite'] = _x( 'Pre-requisite Course', 'column name', 'woothemes-sensei' );
529
-		if ( Sensei_WC::is_woocommerce_active() ) {
530
-			$new_columns['course-woocommerce-product'] = _x( 'WooCommerce Product', 'column name', 'woothemes-sensei' );
527
+		$new_columns['title'] = _x('Course Title', 'column name', 'woothemes-sensei');
528
+		$new_columns['course-prerequisite'] = _x('Pre-requisite Course', 'column name', 'woothemes-sensei');
529
+		if (Sensei_WC::is_woocommerce_active()) {
530
+			$new_columns['course-woocommerce-product'] = _x('WooCommerce Product', 'column name', 'woothemes-sensei');
531 531
 		} // End If Statement
532
-		$new_columns['course-category'] = _x( 'Category', 'column name', 'woothemes-sensei' );
533
-		if ( isset( $defaults['date'] ) ) {
532
+		$new_columns['course-category'] = _x('Category', 'column name', 'woothemes-sensei');
533
+		if (isset($defaults['date'])) {
534 534
 			$new_columns['date'] = $defaults['date'];
535 535
 		}
536 536
 
@@ -545,45 +545,45 @@  discard block
 block discarded – undo
545 545
 	 * @param  int $id
546 546
 	 * @return void
547 547
 	 */
548
-	public function add_column_data ( $column_name, $id ) {
548
+	public function add_column_data($column_name, $id) {
549 549
 		global $wpdb, $post;
550 550
 
551
-		switch ( $column_name ) {
551
+		switch ($column_name) {
552 552
 			case 'id':
553 553
 				echo $id;
554 554
 			break;
555 555
 
556 556
 			case 'course-prerequisite':
557
-				$course_prerequisite_id = get_post_meta( $id, '_course_prerequisite', true);
558
-				if ( 0 < absint( $course_prerequisite_id ) ) { echo '<a href="' . esc_url( get_edit_post_link( absint( $course_prerequisite_id ) ) ) . '" title="' . esc_attr( sprintf( __( 'Edit %s', 'woothemes-sensei' ), get_the_title( absint( $course_prerequisite_id ) ) ) ) . '">' . get_the_title( absint( $course_prerequisite_id ) ) . '</a>'; }
557
+				$course_prerequisite_id = get_post_meta($id, '_course_prerequisite', true);
558
+				if (0 < absint($course_prerequisite_id)) { echo '<a href="'.esc_url(get_edit_post_link(absint($course_prerequisite_id))).'" title="'.esc_attr(sprintf(__('Edit %s', 'woothemes-sensei'), get_the_title(absint($course_prerequisite_id)))).'">'.get_the_title(absint($course_prerequisite_id)).'</a>'; }
559 559
 
560 560
 			break;
561 561
 
562 562
 			case 'course-woocommerce-product':
563
-				if ( Sensei_WC::is_woocommerce_active() ) {
564
-					$course_woocommerce_product_id = get_post_meta( $id, '_course_woocommerce_product', true);
565
-					if ( 0 < absint( $course_woocommerce_product_id ) ) {
566
-						if ( 'product_variation' == get_post_type( $course_woocommerce_product_id ) ) {
567
-							$product_object = get_product( $course_woocommerce_product_id );
568
-							if( sensei_check_woocommerce_version( '2.1' ) ) {
569
-								$formatted_variation = wc_get_formatted_variation( $product_object->variation_data, true );
563
+				if (Sensei_WC::is_woocommerce_active()) {
564
+					$course_woocommerce_product_id = get_post_meta($id, '_course_woocommerce_product', true);
565
+					if (0 < absint($course_woocommerce_product_id)) {
566
+						if ('product_variation' == get_post_type($course_woocommerce_product_id)) {
567
+							$product_object = get_product($course_woocommerce_product_id);
568
+							if (sensei_check_woocommerce_version('2.1')) {
569
+								$formatted_variation = wc_get_formatted_variation($product_object->variation_data, true);
570 570
 							} else {
571
-								$formatted_variation = woocommerce_get_formatted_variation( $product_object->variation_data, true );
571
+								$formatted_variation = woocommerce_get_formatted_variation($product_object->variation_data, true);
572 572
 							}
573 573
 							$course_woocommerce_product_id = $product_object->parent->post->ID;
574
-							$product_name = $product_object->parent->post->post_title . '<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;' . ucwords( $formatted_variation );
574
+							$product_name = $product_object->parent->post->post_title.'<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'.ucwords($formatted_variation);
575 575
 						} else {
576
-							$product_name = get_the_title( absint( $course_woocommerce_product_id ) );
576
+							$product_name = get_the_title(absint($course_woocommerce_product_id));
577 577
 						} // End If Statement
578
-						echo '<a href="' . esc_url( get_edit_post_link( absint( $course_woocommerce_product_id ) ) ) . '" title="' . esc_attr( sprintf( __( 'Edit %s', 'woothemes-sensei' ), $product_name ) ) . '">' . $product_name . '</a>';
578
+						echo '<a href="'.esc_url(get_edit_post_link(absint($course_woocommerce_product_id))).'" title="'.esc_attr(sprintf(__('Edit %s', 'woothemes-sensei'), $product_name)).'">'.$product_name.'</a>';
579 579
 					} // End If Statement
580 580
 				} // End If Statement
581 581
 			break;
582 582
 
583 583
 			case 'course-category':
584
-				$output = get_the_term_list( $id, 'course-category', '', ', ', '' );
585
-				if ( '' == $output ) {
586
-					$output = __( 'None', 'woothemes-sensei' );
584
+				$output = get_the_term_list($id, 'course-category', '', ', ', '');
585
+				if ('' == $output) {
586
+					$output = __('None', 'woothemes-sensei');
587 587
 				} // End If Statement
588 588
 				echo $output;
589 589
 			break;
@@ -603,29 +603,29 @@  discard block
 block discarded – undo
603 603
 	 * @param array $includes (default: array())
604 604
 	 * @return array
605 605
 	 */
606
-	public function course_query( $amount = 0, $type = 'default', $includes = array(), $excludes = array() ) {
607
-		global $my_courses_page ;
606
+	public function course_query($amount = 0, $type = 'default', $includes = array(), $excludes = array()) {
607
+		global $my_courses_page;
608 608
 
609 609
 		$results_array = array();
610 610
 
611
-		if( $my_courses_page ) { add_action( 'pre_get_posts', array( $this, 'filter_my_courses' ) ); }
611
+		if ($my_courses_page) { add_action('pre_get_posts', array($this, 'filter_my_courses')); }
612 612
 
613
-		$post_args = $this->get_archive_query_args( $type, $amount, $includes, $excludes );
613
+		$post_args = $this->get_archive_query_args($type, $amount, $includes, $excludes);
614 614
 
615 615
 		// get the posts
616
-		if( empty( $post_args ) ) {
616
+		if (empty($post_args)) {
617 617
 
618 618
 			return $results_array;
619 619
 
620
-		}else{
620
+		} else {
621 621
 
622 622
 			//reset the pagination as this widgets do not need it
623 623
 			$post_args['paged'] = 1;
624
-			$results_array = get_posts( $post_args );
624
+			$results_array = get_posts($post_args);
625 625
 
626 626
 		}
627 627
 
628
-		if( $my_courses_page ) { remove_action( 'pre_get_posts', array( $this, 'filter_my_courses' ) ); }
628
+		if ($my_courses_page) { remove_action('pre_get_posts', array($this, 'filter_my_courses')); }
629 629
 
630 630
 		return $results_array;
631 631
 
@@ -641,22 +641,22 @@  discard block
 block discarded – undo
641 641
 	 * @param array $includes (default: array())
642 642
 	 * @return array
643 643
 	 */
644
-	public function get_archive_query_args( $type = '', $amount = 0 , $includes = array(), $excludes = array() ) {
644
+	public function get_archive_query_args($type = '', $amount = 0, $includes = array(), $excludes = array()) {
645 645
 
646 646
 		global $wp_query;
647 647
 
648
-		if ( 0 == $amount && ( isset( Sensei()->settings->settings[ 'course_archive_amount' ] ) && 'usercourses' != $type && ( 0 < absint( Sensei()->settings->settings[ 'course_archive_amount' ] ) ) ) ) {
649
-			$amount = absint( Sensei()->settings->settings[ 'course_archive_amount' ] );
648
+		if (0 == $amount && (isset(Sensei()->settings->settings['course_archive_amount']) && 'usercourses' != $type && (0 < absint(Sensei()->settings->settings['course_archive_amount'])))) {
649
+			$amount = absint(Sensei()->settings->settings['course_archive_amount']);
650 650
 		} else {
651
-			if ( 0 == $amount) {
652
-				$amount = $wp_query->get( 'posts_per_page' );
651
+			if (0 == $amount) {
652
+				$amount = $wp_query->get('posts_per_page');
653 653
 			} // End If Statement
654 654
 		} // End If Statement
655 655
 
656
-        $stored_order = get_option( 'sensei_course_order', '' );
656
+        $stored_order = get_option('sensei_course_order', '');
657 657
         $order = 'ASC';
658 658
         $orderby = 'menu_order';
659
-        if( empty( $stored_order ) ){
659
+        if (empty($stored_order)) {
660 660
 
661 661
             $order = 'DESC';
662 662
             $orderby = 'date';
@@ -666,7 +666,7 @@  discard block
 block discarded – undo
666 666
 		switch ($type) {
667 667
 
668 668
 			case 'usercourses':
669
-				$post_args = array(	'post_type' 		=> 'course',
669
+				$post_args = array('post_type' 		=> 'course',
670 670
 									'orderby'         	=> $orderby,
671 671
     								'order'           	=> $order,
672 672
     								'post_status'      	=> 'publish',
@@ -707,7 +707,7 @@  discard block
 block discarded – undo
707 707
 				break;
708 708
 
709 709
 			case 'featuredcourses':
710
-                $post_args = array(	'post_type' 		=> 'course',
710
+                $post_args = array('post_type' 		=> 'course',
711 711
                                     'orderby'         	=> $orderby,
712 712
                                     'order'           	=> $order,
713 713
     								'post_status'      	=> 'publish',
@@ -719,7 +719,7 @@  discard block
 block discarded – undo
719 719
 									);
720 720
 				break;
721 721
 			default:
722
-				$post_args = array(	'post_type' 		=> 'course',
722
+				$post_args = array('post_type' 		=> 'course',
723 723
                                     'orderby'         	=> $orderby,
724 724
                                     'order'           	=> $order,
725 725
     								'post_status'      	=> 'publish',
@@ -731,13 +731,13 @@  discard block
 block discarded – undo
731 731
 		}
732 732
 
733 733
         $post_args['posts_per_page'] = $amount;
734
-        $paged = $wp_query->get( 'paged' );
735
-        $post_args['paged'] = empty( $paged) ? 1 : $paged;
734
+        $paged = $wp_query->get('paged');
735
+        $post_args['paged'] = empty($paged) ? 1 : $paged;
736 736
 
737
-        if( 'newcourses' == $type ){
737
+        if ('newcourses' == $type) {
738 738
 
739
-            $post_args[ 'orderby' ] = 'date';
740
-            $post_args[ 'order' ] = 'DESC';
739
+            $post_args['orderby'] = 'date';
740
+            $post_args['order'] = 'DESC';
741 741
         }
742 742
 
743 743
 		return $post_args;
@@ -759,35 +759,35 @@  discard block
 block discarded – undo
759 759
      *
760 760
 	 * @return string | void
761 761
 	 */
762
-	public function course_image( $course_id = 0, $width = '100', $height = '100', $return = false ) {
762
+	public function course_image($course_id = 0, $width = '100', $height = '100', $return = false) {
763 763
 
764
-        if( is_a( $course_id, 'WP_Post' ) ){
764
+        if (is_a($course_id, 'WP_Post')) {
765 765
             $course_id = $course_id->ID;
766 766
         }
767 767
 
768 768
 		$html = '';
769 769
 
770 770
 		// Get Width and Height settings
771
-		if ( ( $width == '100' ) && ( $height == '100' ) ) {
771
+		if (($width == '100') && ($height == '100')) {
772 772
 
773
-			if ( is_singular( 'course' ) ) {
773
+			if (is_singular('course')) {
774 774
 
775
-				if ( !Sensei()->settings->settings[ 'course_single_image_enable' ] ) {
775
+				if ( ! Sensei()->settings->settings['course_single_image_enable']) {
776 776
 					return '';
777 777
 				} // End If Statement
778 778
 				$image_thumb_size = 'course_single_image';
779
-				$dimensions = Sensei()->get_image_size( $image_thumb_size );
779
+				$dimensions = Sensei()->get_image_size($image_thumb_size);
780 780
 				$width = $dimensions['width'];
781 781
 				$height = $dimensions['height'];
782 782
 
783 783
 			} else {
784 784
 
785
-				if ( !Sensei()->settings->settings[ 'course_archive_image_enable' ] ) {
785
+				if ( ! Sensei()->settings->settings['course_archive_image_enable']) {
786 786
 					return '';
787 787
 				} // End If Statement
788 788
 
789 789
 				$image_thumb_size = 'course_archive_image';
790
-				$dimensions = Sensei()->get_image_size( $image_thumb_size );
790
+				$dimensions = Sensei()->get_image_size($image_thumb_size);
791 791
 				$width = $dimensions['width'];
792 792
 				$height = $dimensions['height'];
793 793
 
@@ -796,31 +796,31 @@  discard block
 block discarded – undo
796 796
 		} // End If Statement
797 797
 
798 798
 		$img_url = '';
799
-		if ( has_post_thumbnail( $course_id ) ) {
799
+		if (has_post_thumbnail($course_id)) {
800 800
    			// Get Featured Image
801
-   			$img_url = get_the_post_thumbnail( $course_id, array( $width, $height ), array( 'class' => 'woo-image thumbnail alignleft') );
801
+   			$img_url = get_the_post_thumbnail($course_id, array($width, $height), array('class' => 'woo-image thumbnail alignleft'));
802 802
  		} else {
803 803
 
804 804
 			// Check for a Lesson Image
805
-			$course_lessons = $this->course_lessons( $course_id );
805
+			$course_lessons = $this->course_lessons($course_id);
806 806
 
807
-			foreach ($course_lessons as $lesson_item){
808
-				if ( has_post_thumbnail( $lesson_item->ID ) ) {
807
+			foreach ($course_lessons as $lesson_item) {
808
+				if (has_post_thumbnail($lesson_item->ID)) {
809 809
 					// Get Featured Image
810
-					$img_url = get_the_post_thumbnail( $lesson_item->ID, array( $width, $height ), array( 'class' => 'woo-image thumbnail alignleft') );
811
-					if ( '' != $img_url ) {
810
+					$img_url = get_the_post_thumbnail($lesson_item->ID, array($width, $height), array('class' => 'woo-image thumbnail alignleft'));
811
+					if ('' != $img_url) {
812 812
 						break;
813 813
 					} // End If Statement
814 814
 
815 815
 				} // End If Statement
816 816
 			} // End For Loop
817 817
 
818
- 			if ( '' == $img_url ) {
818
+ 			if ('' == $img_url) {
819 819
 
820 820
  				// Display Image Placeholder if none
821
-				if ( Sensei()->settings->get( 'placeholder_images_enable' ) ) {
821
+				if (Sensei()->settings->get('placeholder_images_enable')) {
822 822
 
823
-                    $img_url = apply_filters( 'sensei_course_placeholder_image_url', '<img src="http://placehold.it/' . $width . 'x' . $height . '" class="woo-image thumbnail alignleft" />' );
823
+                    $img_url = apply_filters('sensei_course_placeholder_image_url', '<img src="http://placehold.it/'.$width.'x'.$height.'" class="woo-image thumbnail alignleft" />');
824 824
 
825 825
 				} // End If Statement
826 826
 
@@ -828,17 +828,17 @@  discard block
 block discarded – undo
828 828
 
829 829
 		} // End If Statement
830 830
 
831
-		if ( '' != $img_url ) {
831
+		if ('' != $img_url) {
832 832
 
833
-			$html .= '<a href="' . get_permalink( $course_id ) . '" title="' . esc_attr( get_post_field( 'post_title', $course_id ) ) . '">' . $img_url  .'</a>';
833
+			$html .= '<a href="'.get_permalink($course_id).'" title="'.esc_attr(get_post_field('post_title', $course_id)).'">'.$img_url.'</a>';
834 834
 
835 835
 		} // End If Statement
836 836
 
837
-        if( $return ){
837
+        if ($return) {
838 838
 
839 839
             return $html;
840 840
 
841
-        }else{
841
+        } else {
842 842
 
843 843
             echo $html;
844 844
 
@@ -855,9 +855,9 @@  discard block
 block discarded – undo
855 855
 	 * @param string $post_status (default: 'publish')
856 856
 	 * @return int
857 857
 	 */
858
-	public function course_count( $post_status = 'publish' ) {
858
+	public function course_count($post_status = 'publish') {
859 859
 
860
-		$post_args = array(	'post_type'         => 'course',
860
+		$post_args = array('post_type'         => 'course',
861 861
 							'posts_per_page'    => -1,
862 862
 //							'orderby'           => 'menu_order date',
863 863
 //							'order'             => 'ASC',
@@ -868,10 +868,10 @@  discard block
 block discarded – undo
868 868
 
869 869
 		// Allow WP to generate the complex final query, just shortcut to only do an overall count
870 870
 //		add_filter( 'posts_clauses', array( 'WooThemes_Sensei_Utils', 'get_posts_count_only_filter' ) );
871
-		$courses_query = new WP_Query( apply_filters( 'sensei_course_count', $post_args ) );
871
+		$courses_query = new WP_Query(apply_filters('sensei_course_count', $post_args));
872 872
 //		remove_filter( 'posts_clauses', array( 'WooThemes_Sensei_Utils', 'get_posts_count_only_filter' ) );
873 873
 
874
-		return count( $courses_query->posts );
874
+		return count($courses_query->posts);
875 875
 	} // End course_count()
876 876
 
877 877
 
@@ -884,42 +884,42 @@  discard block
 block discarded – undo
884 884
 	 * @param string $fields (default: 'all'). WP only allows 3 types, but we will limit it to only 'ids' or 'all'
885 885
 	 * @return array{ type WP_Post }  $posts_array
886 886
 	 */
887
-	public function course_lessons( $course_id = 0, $post_status = 'publish', $fields = 'all' ) {
887
+	public function course_lessons($course_id = 0, $post_status = 'publish', $fields = 'all') {
888 888
 
889
-        if( is_a( $course_id, 'WP_Post' ) ){
889
+        if (is_a($course_id, 'WP_Post')) {
890 890
             $course_id = $course_id->ID;
891 891
         }
892 892
 
893
-		$post_args = array(	'post_type'         => 'lesson',
893
+		$post_args = array('post_type'         => 'lesson',
894 894
 							'posts_per_page'       => -1,
895 895
 							'orderby'           => 'date',
896 896
 							'order'             => 'ASC',
897 897
 							'meta_query'        => array(
898 898
 								array(
899 899
 									'key' => '_lesson_course',
900
-									'value' => intval( $course_id ),
900
+									'value' => intval($course_id),
901 901
 								),
902 902
 							),
903 903
 							'post_status'       => $post_status,
904 904
 							'suppress_filters'  => 0,
905 905
 							);
906
-		$query_results = new WP_Query( $post_args );
906
+		$query_results = new WP_Query($post_args);
907 907
         $lessons = $query_results->posts;
908 908
 
909 909
         // re order the lessons. This could not be done via the OR meta query as there may be lessons
910 910
         // with the course order for a different course and this should not be included. It could also not
911 911
         // be done via the AND meta query as it excludes lesson that does not have the _order_$course_id but
912 912
         // that have been added to the course.
913
-        if( count( $lessons) > 1  ){
913
+        if (count($lessons) > 1) {
914 914
 
915
-            foreach( $lessons as $lesson ){
915
+            foreach ($lessons as $lesson) {
916 916
 
917
-                $order = intval( get_post_meta( $lesson->ID, '_order_'. $course_id, true ) );
917
+                $order = intval(get_post_meta($lesson->ID, '_order_'.$course_id, true));
918 918
                 // for lessons with no order set it to be 10000 so that it show up at the end
919 919
                 $lesson->course_order = $order ? $order : 100000;
920 920
             }
921 921
 
922
-            uasort( $lessons, array( $this, '_short_course_lessons_callback' )   );
922
+            uasort($lessons, array($this, '_short_course_lessons_callback'));
923 923
         }
924 924
 
925 925
         /**
@@ -930,12 +930,12 @@  discard block
 block discarded – undo
930 930
          * @param array $lessons
931 931
          * @param int $course_id
932 932
          */
933
-        $lessons = apply_filters( 'sensei_course_get_lessons', $lessons, $course_id  );
933
+        $lessons = apply_filters('sensei_course_get_lessons', $lessons, $course_id);
934 934
 
935 935
         //return the requested fields
936 936
         // runs after the sensei_course_get_lessons filter so the filter always give an array of lesson
937 937
         // objects
938
-        if( 'ids' == $fields ) {
938
+        if ('ids' == $fields) {
939 939
             $lesson_objects = $lessons;
940 940
             $lessons = array();
941 941
 
@@ -957,9 +957,9 @@  discard block
 block discarded – undo
957 957
      * @param array $lesson_2
958 958
      * @return int
959 959
      */
960
-    protected function _short_course_lessons_callback( $lesson_1, $lesson_2 ){
960
+    protected function _short_course_lessons_callback($lesson_1, $lesson_2) {
961 961
 
962
-        if ( $lesson_1->course_order == $lesson_2->course_order ) {
962
+        if ($lesson_1->course_order == $lesson_2->course_order) {
963 963
             return 0;
964 964
         }
965 965
 
@@ -973,21 +973,21 @@  discard block
 block discarded – undo
973 973
 	 * @param  boolean $boolean_check True if a simple yes/no is required
974 974
 	 * @return array              Array of quiz post objects
975 975
 	 */
976
-	public function course_quizzes( $course_id = 0, $boolean_check = false ) {
976
+	public function course_quizzes($course_id = 0, $boolean_check = false) {
977 977
 
978 978
 
979 979
 		$course_quizzes = array();
980 980
 
981
-		if( $course_id ) {
982
-			$lesson_ids = Sensei()->course->course_lessons( $course_id, 'any', 'ids' );
981
+		if ($course_id) {
982
+			$lesson_ids = Sensei()->course->course_lessons($course_id, 'any', 'ids');
983 983
 
984
-			foreach( $lesson_ids as $lesson_id ) {
985
-				$has_questions = get_post_meta( $lesson_id, '_quiz_has_questions', true );
986
-				if ( $has_questions && $boolean_check ) {
984
+			foreach ($lesson_ids as $lesson_id) {
985
+				$has_questions = get_post_meta($lesson_id, '_quiz_has_questions', true);
986
+				if ($has_questions && $boolean_check) {
987 987
 					return true;
988 988
 				}
989
-				elseif ( $has_questions ) {
990
-					$quiz_id = Sensei()->lesson->lesson_quizzes( $lesson_id );
989
+				elseif ($has_questions) {
990
+					$quiz_id = Sensei()->lesson->lesson_quizzes($lesson_id);
991 991
 //					$questions = Sensei()->lesson->lesson_quiz_questions( $quiz_id );
992 992
 //					if( count( $questions ) > 0 ) {
993 993
 						$course_quizzes[] = $quiz_id;
@@ -995,7 +995,7 @@  discard block
 block discarded – undo
995 995
 				}
996 996
 			}
997 997
 		}
998
-		if ( $boolean_check && empty($course_quizzes) ) {
998
+		if ($boolean_check && empty($course_quizzes)) {
999 999
 			$course_quizzes = false;
1000 1000
 		}
1001 1001
 		return $course_quizzes;
@@ -1010,9 +1010,9 @@  discard block
 block discarded – undo
1010 1010
 	 * @param  string $post_status (default: 'publish')
1011 1011
 	 * @return array
1012 1012
 	 */
1013
-	public function course_lessons_completed( $course_id = 0, $post_status = 'publish' ) {
1013
+	public function course_lessons_completed($course_id = 0, $post_status = 'publish') {
1014 1014
 
1015
-		return $this->course_lessons( $course_id, $post_status );
1015
+		return $this->course_lessons($course_id, $post_status);
1016 1016
 
1017 1017
 	} // End course_lessons_completed()
1018 1018
 
@@ -1025,9 +1025,9 @@  discard block
 block discarded – undo
1025 1025
 	 * @param  int $course_id (default: 0)
1026 1026
 	 * @return int
1027 1027
 	 */
1028
-	public function course_author_lesson_count( $author_id = 0, $course_id = 0 ) {
1028
+	public function course_author_lesson_count($author_id = 0, $course_id = 0) {
1029 1029
 
1030
-        $lesson_args = array(	'post_type' 		=> 'lesson',
1030
+        $lesson_args = array('post_type' 		=> 'lesson',
1031 1031
 								'posts_per_page' 		=> -1,
1032 1032
 		    					'author'         	=> $author_id,
1033 1033
 		    					'meta_key'        	=> '_lesson_course',
@@ -1036,8 +1036,8 @@  discard block
 block discarded – undo
1036 1036
     	    					'suppress_filters' 	=> 0,
1037 1037
 								'fields'            => 'ids', // less data to retrieve
1038 1038
 		    				);
1039
-		$lessons_array = get_posts( $lesson_args );
1040
-		$count = count( $lessons_array );
1039
+		$lessons_array = get_posts($lesson_args);
1040
+		$count = count($lessons_array);
1041 1041
 		return $count;
1042 1042
 
1043 1043
 	} // End course_author_lesson_count()
@@ -1049,9 +1049,9 @@  discard block
 block discarded – undo
1049 1049
 	 * @param  int $course_id (default: 0)
1050 1050
 	 * @return int
1051 1051
 	 */
1052
-	public function course_lesson_count( $course_id = 0 ) {
1052
+	public function course_lesson_count($course_id = 0) {
1053 1053
 
1054
-		$lesson_args = array(	'post_type' 		=> 'lesson',
1054
+		$lesson_args = array('post_type' 		=> 'lesson',
1055 1055
 								'posts_per_page' 		=> -1,
1056 1056
 		    					'meta_key'        	=> '_lesson_course',
1057 1057
     							'meta_value'      	=> $course_id,
@@ -1059,9 +1059,9 @@  discard block
 block discarded – undo
1059 1059
     	    					'suppress_filters' 	=> 0,
1060 1060
 								'fields'            => 'ids', // less data to retrieve
1061 1061
 		    				);
1062
-		$lessons_array = get_posts( $lesson_args );
1062
+		$lessons_array = get_posts($lesson_args);
1063 1063
 
1064
-        $count = count( $lessons_array );
1064
+        $count = count($lessons_array);
1065 1065
 
1066 1066
         return $count;
1067 1067
 
@@ -1074,9 +1074,9 @@  discard block
 block discarded – undo
1074 1074
 	 * @param  int $course_id (default: 0)
1075 1075
 	 * @return int
1076 1076
 	 */
1077
-	public function course_lesson_preview_count( $course_id = 0 ) {
1077
+	public function course_lesson_preview_count($course_id = 0) {
1078 1078
 
1079
-		$lesson_args = array(	'post_type' 		=> 'lesson',
1079
+		$lesson_args = array('post_type' 		=> 'lesson',
1080 1080
 								'posts_per_page' 		=> -1,
1081 1081
     	    					'post_status'      	=> 'publish',
1082 1082
     	    					'suppress_filters' 	=> 0,
@@ -1092,9 +1092,9 @@  discard block
 block discarded – undo
1092 1092
 								),
1093 1093
 								'fields'            => 'ids', // less data to retrieve
1094 1094
 		    				);
1095
-		$lessons_array = get_posts( $lesson_args );
1095
+		$lessons_array = get_posts($lesson_args);
1096 1096
 
1097
-		$count = count( $lessons_array );
1097
+		$count = count($lessons_array);
1098 1098
 
1099 1099
         return $count;
1100 1100
 
@@ -1107,12 +1107,12 @@  discard block
 block discarded – undo
1107 1107
 	 * @param  int $product_id (default: 0)
1108 1108
 	 * @return array
1109 1109
 	 */
1110
-	public function get_product_courses( $product_id = 0 ) {
1110
+	public function get_product_courses($product_id = 0) {
1111 1111
 
1112 1112
 		$posts_array = array();
1113 1113
 		// Check for WooCommerce
1114
-		if ( Sensei_WC::is_woocommerce_active() && 0 < $product_id ) {
1115
-			$post_args = array(	'post_type' 		=> 'course',
1114
+		if (Sensei_WC::is_woocommerce_active() && 0 < $product_id) {
1115
+			$post_args = array('post_type' 		=> 'course',
1116 1116
 								'posts_per_page' 		=> -1,
1117 1117
 								'meta_key'        	=> '_course_woocommerce_product',
1118 1118
 	    						'meta_value'      	=> $product_id,
@@ -1121,7 +1121,7 @@  discard block
 block discarded – undo
1121 1121
 								'orderby' 			=> 'menu_order date',
1122 1122
 								'order' 			=> 'ASC',
1123 1123
 								);
1124
-			$posts_array = get_posts( $post_args );
1124
+			$posts_array = get_posts($post_args);
1125 1125
 		} // End If Statement
1126 1126
 		return $posts_array;
1127 1127
 
@@ -1141,17 +1141,17 @@  discard block
 block discarded – undo
1141 1141
 	 * @param  WP_Query $query
1142 1142
 	 * @return void
1143 1143
 	 */
1144
-	public function filter_my_courses( $query ) {
1144
+	public function filter_my_courses($query) {
1145 1145
 		global  $my_courses_section;
1146 1146
 
1147
-		if ( isset( Sensei()->settings->settings[ 'my_course_amount' ] ) && ( 0 < absint( Sensei()->settings->settings[ 'my_course_amount' ] ) ) ) {
1148
-			$amount = absint( Sensei()->settings->settings[ 'my_course_amount' ] );
1149
-			$query->set( 'posts_per_page', $amount );
1147
+		if (isset(Sensei()->settings->settings['my_course_amount']) && (0 < absint(Sensei()->settings->settings['my_course_amount']))) {
1148
+			$amount = absint(Sensei()->settings->settings['my_course_amount']);
1149
+			$query->set('posts_per_page', $amount);
1150 1150
 		}
1151 1151
 
1152
-		if( isset( $_GET[ $my_courses_section . '_page' ] ) && 0 < intval( $_GET[ $my_courses_section . '_page' ] ) ) {
1153
-			$page = intval( $_GET[ $my_courses_section . '_page' ] );
1154
-			$query->set( 'paged', $page );
1152
+		if (isset($_GET[$my_courses_section.'_page']) && 0 < intval($_GET[$my_courses_section.'_page'])) {
1153
+			$page = intval($_GET[$my_courses_section.'_page']);
1154
+			$query->set('paged', $page);
1155 1155
 		}
1156 1156
 	}
1157 1157
 
@@ -1165,48 +1165,48 @@  discard block
 block discarded – undo
1165 1165
 	 * @param  boolean $manage Whether the user has permission to manage the courses
1166 1166
 	 * @return string          HTML displayng course data
1167 1167
 	 */
1168
-	public function load_user_courses_content( $user = false ) {
1168
+	public function load_user_courses_content($user = false) {
1169 1169
 		global $course, $my_courses_page, $my_courses_section;
1170 1170
 
1171
-        if( ! isset( Sensei()->settings->settings[ 'learner_profile_show_courses' ] )
1172
-            || ! Sensei()->settings->settings[ 'learner_profile_show_courses' ] ) {
1171
+        if ( ! isset(Sensei()->settings->settings['learner_profile_show_courses'])
1172
+            || ! Sensei()->settings->settings['learner_profile_show_courses']) {
1173 1173
 
1174 1174
             // do not show the content if the settings doesn't allow for it
1175 1175
             return;
1176 1176
 
1177 1177
         }
1178 1178
 
1179
-        $manage = ( $user->ID == get_current_user_id() ) ? true : false;
1179
+        $manage = ($user->ID == get_current_user_id()) ? true : false;
1180 1180
 
1181
-        do_action( 'sensei_before_learner_course_content', $user );
1181
+        do_action('sensei_before_learner_course_content', $user);
1182 1182
 
1183 1183
 		// Build Output HTML
1184 1184
 		$complete_html = $active_html = '';
1185 1185
 
1186
-		if( is_a( $user, 'WP_User' ) ) {
1186
+		if (is_a($user, 'WP_User')) {
1187 1187
 
1188 1188
 			$my_courses_page = true;
1189 1189
 
1190 1190
 			// Allow action to be run before My Courses content has loaded
1191
-			do_action( 'sensei_before_my_courses', $user->ID );
1191
+			do_action('sensei_before_my_courses', $user->ID);
1192 1192
 
1193 1193
 			// Logic for Active and Completed Courses
1194 1194
 			$per_page = 20;
1195
-			if ( isset( Sensei()->settings->settings[ 'my_course_amount' ] )
1196
-                && ( 0 < absint( Sensei()->settings->settings[ 'my_course_amount' ] ) ) ) {
1195
+			if (isset(Sensei()->settings->settings['my_course_amount'])
1196
+                && (0 < absint(Sensei()->settings->settings['my_course_amount']))) {
1197 1197
 
1198
-				$per_page = absint( Sensei()->settings->settings[ 'my_course_amount' ] );
1198
+				$per_page = absint(Sensei()->settings->settings['my_course_amount']);
1199 1199
 
1200 1200
 			}
1201 1201
 
1202
-			$course_statuses = Sensei_Utils::sensei_check_for_activity( array( 'user_id' => $user->ID, 'type' => 'sensei_course_status' ), true );
1202
+			$course_statuses = Sensei_Utils::sensei_check_for_activity(array('user_id' => $user->ID, 'type' => 'sensei_course_status'), true);
1203 1203
 			// User may only be on 1 Course
1204
-			if ( !is_array($course_statuses) ) {
1205
-				$course_statuses = array( $course_statuses );
1204
+			if ( ! is_array($course_statuses)) {
1205
+				$course_statuses = array($course_statuses);
1206 1206
 			}
1207 1207
 			$completed_ids = $active_ids = array();
1208
-			foreach( $course_statuses as $course_status ) {
1209
-				if ( Sensei_Utils::user_completed_course( $course_status, $user->ID ) ) {
1208
+			foreach ($course_statuses as $course_status) {
1209
+				if (Sensei_Utils::user_completed_course($course_status, $user->ID)) {
1210 1210
 					$completed_ids[] = $course_status->comment_post_ID;
1211 1211
 				} else {
1212 1212
 					$active_ids[] = $course_status->comment_post_ID;
@@ -1216,41 +1216,41 @@  discard block
 block discarded – undo
1216 1216
 			$active_count = $completed_count = 0;
1217 1217
 
1218 1218
 			$active_courses = array();
1219
-			if ( 0 < intval( count( $active_ids ) ) ) {
1219
+			if (0 < intval(count($active_ids))) {
1220 1220
 				$my_courses_section = 'active';
1221
-				$active_courses = Sensei()->course->course_query( $per_page, 'usercourses', $active_ids );
1222
-				$active_count = count( $active_ids );
1221
+				$active_courses = Sensei()->course->course_query($per_page, 'usercourses', $active_ids);
1222
+				$active_count = count($active_ids);
1223 1223
 			} // End If Statement
1224 1224
 
1225 1225
 			$completed_courses = array();
1226
-			if ( 0 < intval( count( $completed_ids ) ) ) {
1226
+			if (0 < intval(count($completed_ids))) {
1227 1227
 				$my_courses_section = 'completed';
1228
-				$completed_courses = Sensei()->course->course_query( $per_page, 'usercourses', $completed_ids );
1229
-				$completed_count = count( $completed_ids );
1228
+				$completed_courses = Sensei()->course->course_query($per_page, 'usercourses', $completed_ids);
1229
+				$completed_count = count($completed_ids);
1230 1230
 			} // End If Statement
1231 1231
 
1232
-			foreach ( $active_courses as $course_item ) {
1232
+			foreach ($active_courses as $course_item) {
1233 1233
 
1234
-				$course_lessons =  Sensei()->course->course_lessons( $course_item->ID );
1234
+				$course_lessons = Sensei()->course->course_lessons($course_item->ID);
1235 1235
 				$lessons_completed = 0;
1236
-				foreach ( $course_lessons as $lesson ) {
1237
-					if ( Sensei_Utils::user_completed_lesson( $lesson->ID, $user->ID ) ) {
1236
+				foreach ($course_lessons as $lesson) {
1237
+					if (Sensei_Utils::user_completed_lesson($lesson->ID, $user->ID)) {
1238 1238
 						++$lessons_completed;
1239 1239
 					}
1240 1240
 				}
1241 1241
 
1242 1242
 			    // Get Course Categories
1243
-			    $category_output = get_the_term_list( $course_item->ID, 'course-category', '', ', ', '' );
1243
+			    $category_output = get_the_term_list($course_item->ID, 'course-category', '', ', ', '');
1244 1244
 
1245
-                $active_html .= '<article class="' . esc_attr( join( ' ', get_post_class( array( 'course', 'post' ), $course_item->ID ) ) ) . '">';
1245
+                $active_html .= '<article class="'.esc_attr(join(' ', get_post_class(array('course', 'post'), $course_item->ID))).'">';
1246 1246
 
1247 1247
                 // Image
1248
-                $active_html .= Sensei()->course->course_image( absint( $course_item->ID ), '100','100', true );
1248
+                $active_html .= Sensei()->course->course_image(absint($course_item->ID), '100', '100', true);
1249 1249
 
1250 1250
                 // Title
1251 1251
                 $active_html .= '<header>';
1252 1252
 
1253
-                $active_html .= '<h2><a href="' . esc_url( get_permalink( absint( $course_item->ID ) ) ) . '" title="' . esc_attr( $course_item->post_title ) . '">' . esc_html( $course_item->post_title ) . '</a></h2>';
1253
+                $active_html .= '<h2><a href="'.esc_url(get_permalink(absint($course_item->ID))).'" title="'.esc_attr($course_item->post_title).'">'.esc_html($course_item->post_title).'</a></h2>';
1254 1254
 
1255 1255
                 $active_html .= '</header>';
1256 1256
 
@@ -1259,82 +1259,82 @@  discard block
 block discarded – undo
1259 1259
                 $active_html .= '<p class="sensei-course-meta">';
1260 1260
 
1261 1261
                 // Author
1262
-                $user_info = get_userdata( absint( $course_item->post_author ) );
1263
-                if ( isset( Sensei()->settings->settings[ 'course_author' ] )
1264
-                    && ( Sensei()->settings->settings[ 'course_author' ] ) ) {
1262
+                $user_info = get_userdata(absint($course_item->post_author));
1263
+                if (isset(Sensei()->settings->settings['course_author'])
1264
+                    && (Sensei()->settings->settings['course_author'])) {
1265 1265
 
1266 1266
                     $active_html .= '<span class="course-author">'
1267
-                        . __( 'by ', 'woothemes-sensei' )
1268
-                        . '<a href="' . esc_url( get_author_posts_url( absint( $course_item->post_author ) ) )
1269
-                        . '" title="' . esc_attr( $user_info->display_name ) . '">'
1270
-                        . esc_html( $user_info->display_name )
1267
+                        . __('by ', 'woothemes-sensei')
1268
+                        . '<a href="'.esc_url(get_author_posts_url(absint($course_item->post_author)))
1269
+                        . '" title="'.esc_attr($user_info->display_name).'">'
1270
+                        . esc_html($user_info->display_name)
1271 1271
                         . '</a></span>';
1272 1272
 
1273 1273
                 } // End If Statement
1274 1274
 
1275 1275
                 // Lesson count for this author
1276
-                $lesson_count = Sensei()->course->course_lesson_count( absint( $course_item->ID ) );
1276
+                $lesson_count = Sensei()->course->course_lesson_count(absint($course_item->ID));
1277 1277
                 // Handle Division by Zero
1278
-                if ( 0 == $lesson_count ) {
1278
+                if (0 == $lesson_count) {
1279 1279
 
1280 1280
                     $lesson_count = 1;
1281 1281
 
1282 1282
                 } // End If Statement
1283
-                $active_html .= '<span class="course-lesson-count">' . $lesson_count . '&nbsp;' .  __( 'Lessons', 'woothemes-sensei' ) . '</span>';
1283
+                $active_html .= '<span class="course-lesson-count">'.$lesson_count.'&nbsp;'.__('Lessons', 'woothemes-sensei').'</span>';
1284 1284
                 // Course Categories
1285
-                if ( '' != $category_output ) {
1285
+                if ('' != $category_output) {
1286 1286
 
1287
-                    $active_html .= '<span class="course-category">' . sprintf( __( 'in %s', 'woothemes-sensei' ), $category_output ) . '</span>';
1287
+                    $active_html .= '<span class="course-category">'.sprintf(__('in %s', 'woothemes-sensei'), $category_output).'</span>';
1288 1288
 
1289 1289
                 } // End If Statement
1290
-                $active_html .= '<span class="course-lesson-progress">' . sprintf( __( '%1$d of %2$d lessons completed', 'woothemes-sensei' ) , $lessons_completed, $lesson_count  ) . '</span>';
1290
+                $active_html .= '<span class="course-lesson-progress">'.sprintf(__('%1$d of %2$d lessons completed', 'woothemes-sensei'), $lessons_completed, $lesson_count).'</span>';
1291 1291
 
1292 1292
                 $active_html .= '</p>';
1293 1293
 
1294
-                $active_html .= '<p class="course-excerpt">' . $course_item->post_excerpt . '</p>';
1294
+                $active_html .= '<p class="course-excerpt">'.$course_item->post_excerpt.'</p>';
1295 1295
 
1296 1296
 
1297 1297
 
1298
-                $progress_percentage = abs( round( ( doubleval( $lessons_completed ) * 100 ) / ( $lesson_count ), 0 ) );
1298
+                $progress_percentage = abs(round((doubleval($lessons_completed) * 100) / ($lesson_count), 0));
1299 1299
 
1300
-                $active_html .= $this->get_progress_meter( $progress_percentage );
1300
+                $active_html .= $this->get_progress_meter($progress_percentage);
1301 1301
 
1302 1302
                 $active_html .= '</section>';
1303 1303
 
1304
-                if( is_user_logged_in() ) {
1304
+                if (is_user_logged_in()) {
1305 1305
 
1306 1306
                     $active_html .= '<section class="entry-actions">';
1307 1307
 
1308
-                    $active_html .= '<form method="POST" action="' . esc_url( remove_query_arg( array( 'active_page', 'completed_page' ) ) ) . '">';
1308
+                    $active_html .= '<form method="POST" action="'.esc_url(remove_query_arg(array('active_page', 'completed_page'))).'">';
1309 1309
 
1310
-                    $active_html .= '<input type="hidden" name="' . esc_attr( 'woothemes_sensei_complete_course_noonce' ) . '" id="' . esc_attr( 'woothemes_sensei_complete_course_noonce' ) . '" value="' . esc_attr( wp_create_nonce( 'woothemes_sensei_complete_course_noonce' ) ) . '" />';
1310
+                    $active_html .= '<input type="hidden" name="'.esc_attr('woothemes_sensei_complete_course_noonce').'" id="'.esc_attr('woothemes_sensei_complete_course_noonce').'" value="'.esc_attr(wp_create_nonce('woothemes_sensei_complete_course_noonce')).'" />';
1311 1311
 
1312
-                    $active_html .= '<input type="hidden" name="course_complete_id" id="course-complete-id" value="' . esc_attr( absint( $course_item->ID ) ) . '" />';
1312
+                    $active_html .= '<input type="hidden" name="course_complete_id" id="course-complete-id" value="'.esc_attr(absint($course_item->ID)).'" />';
1313 1313
 
1314
-                    if ( 0 < absint( count( $course_lessons ) ) && Sensei()->settings->settings['course_completion'] == 'complete' ) {
1314
+                    if (0 < absint(count($course_lessons)) && Sensei()->settings->settings['course_completion'] == 'complete') {
1315 1315
 
1316 1316
                         $active_html .= '<span><input name="course_complete" type="submit" class="course-complete" value="'
1317
-                            .  __( 'Mark as Complete', 'woothemes-sensei' ) . '"/> </span>';
1317
+                            .  __('Mark as Complete', 'woothemes-sensei').'"/> </span>';
1318 1318
 
1319 1319
                     } // End If Statement
1320 1320
 
1321 1321
                     $course_purchased = false;
1322
-                    if ( Sensei_WC::is_woocommerce_active() ) {
1322
+                    if (Sensei_WC::is_woocommerce_active()) {
1323 1323
 
1324 1324
                         // Get the product ID
1325
-                        $wc_post_id = get_post_meta( absint( $course_item->ID ), '_course_woocommerce_product', true );
1326
-                        if ( 0 < $wc_post_id ) {
1325
+                        $wc_post_id = get_post_meta(absint($course_item->ID), '_course_woocommerce_product', true);
1326
+                        if (0 < $wc_post_id) {
1327 1327
 
1328
-                            $course_purchased = Sensei_WC::has_customer_bought_product(  $user->ID, $wc_post_id );
1328
+                            $course_purchased = Sensei_WC::has_customer_bought_product($user->ID, $wc_post_id);
1329 1329
 
1330 1330
                         } // End If Statement
1331 1331
 
1332 1332
                     } // End If Statement
1333 1333
 
1334
-                    if ( false == $course_purchased ) {
1334
+                    if (false == $course_purchased) {
1335 1335
 
1336 1336
                         $active_html .= '<span><input name="course_complete" type="submit" class="course-delete" value="'
1337
-                            .  __( 'Delete Course', 'woothemes-sensei' ) . '"/></span>';
1337
+                            .  __('Delete Course', 'woothemes-sensei').'"/></span>';
1338 1338
 
1339 1339
                     } // End If Statement
1340 1340
 
@@ -1347,54 +1347,54 @@  discard block
 block discarded – undo
1347 1347
 			}
1348 1348
 
1349 1349
 			// Active pagination
1350
-			if( $active_count > $per_page ) {
1350
+			if ($active_count > $per_page) {
1351 1351
 
1352 1352
 				$current_page = 1;
1353
-				if( isset( $_GET['active_page'] ) && 0 < intval( $_GET['active_page'] ) ) {
1353
+				if (isset($_GET['active_page']) && 0 < intval($_GET['active_page'])) {
1354 1354
 					$current_page = $_GET['active_page'];
1355 1355
 				}
1356 1356
 
1357 1357
 				$active_html .= '<nav class="pagination woo-pagination">';
1358
-				$total_pages = ceil( $active_count / $per_page );
1358
+				$total_pages = ceil($active_count / $per_page);
1359 1359
 
1360
-				if( $current_page > 1 ) {
1361
-					$prev_link = add_query_arg( 'active_page', $current_page - 1 );
1362
-					$active_html .= '<a class="prev page-numbers" href="' . esc_url( $prev_link ) . '">' . __( 'Previous' , 'woothemes-sensei' ) . '</a> ';
1360
+				if ($current_page > 1) {
1361
+					$prev_link = add_query_arg('active_page', $current_page - 1);
1362
+					$active_html .= '<a class="prev page-numbers" href="'.esc_url($prev_link).'">'.__('Previous', 'woothemes-sensei').'</a> ';
1363 1363
 				}
1364 1364
 
1365
-				for ( $i = 1; $i <= $total_pages; $i++ ) {
1366
-					$link = add_query_arg( 'active_page', $i );
1365
+				for ($i = 1; $i <= $total_pages; $i++) {
1366
+					$link = add_query_arg('active_page', $i);
1367 1367
 
1368
-					if( $i == $current_page ) {
1369
-						$active_html .= '<span class="page-numbers current">' . $i . '</span> ';
1368
+					if ($i == $current_page) {
1369
+						$active_html .= '<span class="page-numbers current">'.$i.'</span> ';
1370 1370
 					} else {
1371
-						$active_html .= '<a class="page-numbers" href="' . esc_url( $link ). '">' . $i . '</a> ';
1371
+						$active_html .= '<a class="page-numbers" href="'.esc_url($link).'">'.$i.'</a> ';
1372 1372
 					}
1373 1373
 				}
1374 1374
 
1375
-				if( $current_page < $total_pages ) {
1376
-					$next_link = add_query_arg( 'active_page', $current_page + 1 );
1377
-					$active_html .= '<a class="next page-numbers" href="' . esc_url( $next_link ) . '">' . __( 'Next' , 'woothemes-sensei' ) . '</a> ';
1375
+				if ($current_page < $total_pages) {
1376
+					$next_link = add_query_arg('active_page', $current_page + 1);
1377
+					$active_html .= '<a class="next page-numbers" href="'.esc_url($next_link).'">'.__('Next', 'woothemes-sensei').'</a> ';
1378 1378
 				}
1379 1379
 
1380 1380
 				$active_html .= '</nav>';
1381 1381
 			}
1382 1382
 
1383
-			foreach ( $completed_courses as $course_item ) {
1383
+			foreach ($completed_courses as $course_item) {
1384 1384
 				$course = $course_item;
1385 1385
 
1386 1386
 			    // Get Course Categories
1387
-			    $category_output = get_the_term_list( $course_item->ID, 'course-category', '', ', ', '' );
1387
+			    $category_output = get_the_term_list($course_item->ID, 'course-category', '', ', ', '');
1388 1388
 
1389
-		    	$complete_html .= '<article class="' . join( ' ', get_post_class( array( 'course', 'post' ), $course_item->ID ) ) . '">';
1389
+		    	$complete_html .= '<article class="'.join(' ', get_post_class(array('course', 'post'), $course_item->ID)).'">';
1390 1390
 
1391 1391
 		    	    // Image
1392
-		    		$complete_html .= Sensei()->course->course_image( absint( $course_item->ID ),100, 100, true );
1392
+		    		$complete_html .= Sensei()->course->course_image(absint($course_item->ID), 100, 100, true);
1393 1393
 
1394 1394
 		    		// Title
1395 1395
 		    		$complete_html .= '<header>';
1396 1396
 
1397
-		    		    $complete_html .= '<h2><a href="' . esc_url( get_permalink( absint( $course_item->ID ) ) ) . '" title="' . esc_attr( $course_item->post_title ) . '">' . esc_html( $course_item->post_title ) . '</a></h2>';
1397
+		    		    $complete_html .= '<h2><a href="'.esc_url(get_permalink(absint($course_item->ID))).'" title="'.esc_attr($course_item->post_title).'">'.esc_html($course_item->post_title).'</a></h2>';
1398 1398
 
1399 1399
 		    		$complete_html .= '</header>';
1400 1400
 
@@ -1403,46 +1403,46 @@  discard block
 block discarded – undo
1403 1403
 		    			$complete_html .= '<p class="sensei-course-meta">';
1404 1404
 
1405 1405
 		    		    	// Author
1406
-		    		    	$user_info = get_userdata( absint( $course_item->post_author ) );
1407
-		    		    	if ( isset( Sensei()->settings->settings[ 'course_author' ] ) && ( Sensei()->settings->settings[ 'course_author' ] ) ) {
1408
-		    		    		$complete_html .= '<span class="course-author">' . __( 'by ', 'woothemes-sensei' ) . '<a href="' . esc_url( get_author_posts_url( absint( $course_item->post_author ) ) ) . '" title="' . esc_attr( $user_info->display_name ) . '">' . esc_html( $user_info->display_name ) . '</a></span>';
1406
+		    		    	$user_info = get_userdata(absint($course_item->post_author));
1407
+		    		    	if (isset(Sensei()->settings->settings['course_author']) && (Sensei()->settings->settings['course_author'])) {
1408
+		    		    		$complete_html .= '<span class="course-author">'.__('by ', 'woothemes-sensei').'<a href="'.esc_url(get_author_posts_url(absint($course_item->post_author))).'" title="'.esc_attr($user_info->display_name).'">'.esc_html($user_info->display_name).'</a></span>';
1409 1409
 		    		    	} // End If Statement
1410 1410
 
1411 1411
 		    		    	// Lesson count for this author
1412 1412
 		    		    	$complete_html .= '<span class="course-lesson-count">'
1413
-                                . Sensei()->course->course_lesson_count( absint( $course_item->ID ) )
1414
-                                . '&nbsp;' .  __( 'Lessons', 'woothemes-sensei' )
1413
+                                . Sensei()->course->course_lesson_count(absint($course_item->ID))
1414
+                                . '&nbsp;'.__('Lessons', 'woothemes-sensei')
1415 1415
                                 . '</span>';
1416 1416
 
1417 1417
 		    		    	// Course Categories
1418
-		    		    	if ( '' != $category_output ) {
1418
+		    		    	if ('' != $category_output) {
1419 1419
 
1420
-		    		    		$complete_html .= '<span class="course-category">' . sprintf( __( 'in %s', 'woothemes-sensei' ), $category_output ) . '</span>';
1420
+		    		    		$complete_html .= '<span class="course-category">'.sprintf(__('in %s', 'woothemes-sensei'), $category_output).'</span>';
1421 1421
 
1422 1422
 		    		    	} // End If Statement
1423 1423
 
1424 1424
 						$complete_html .= '</p>';
1425 1425
 
1426
-						$complete_html .= '<p class="course-excerpt">' . $course_item->post_excerpt . '</p>';
1426
+						$complete_html .= '<p class="course-excerpt">'.$course_item->post_excerpt.'</p>';
1427 1427
 
1428
-                        $complete_html .= $this->get_progress_meter( 100 );
1428
+                        $complete_html .= $this->get_progress_meter(100);
1429 1429
 
1430
-						if( $manage ) {
1431
-							$has_quizzes = Sensei()->course->course_quizzes( $course_item->ID, true );
1430
+						if ($manage) {
1431
+							$has_quizzes = Sensei()->course->course_quizzes($course_item->ID, true);
1432 1432
 							// Output only if there is content to display
1433
-							if ( has_filter( 'sensei_results_links' ) || $has_quizzes ) {
1433
+							if (has_filter('sensei_results_links') || $has_quizzes) {
1434 1434
 
1435 1435
 
1436 1436
 								$complete_html .= '<p class="sensei-results-links">';
1437 1437
 								$results_link = '';
1438
-								if( $has_quizzes ) {
1438
+								if ($has_quizzes) {
1439 1439
 
1440 1440
 									$results_link = '<a class="button view-results" href="'
1441
-                                        . Sensei()->course_results->get_permalink( $course_item->ID )
1442
-                                        . '">' . __( 'View results', 'woothemes-sensei' )
1441
+                                        . Sensei()->course_results->get_permalink($course_item->ID)
1442
+                                        . '">'.__('View results', 'woothemes-sensei')
1443 1443
                                         . '</a>';
1444 1444
 								}
1445
-								$complete_html .= apply_filters( 'sensei_results_links', $results_link );
1445
+								$complete_html .= apply_filters('sensei_results_links', $results_link);
1446 1446
 								$complete_html .= '</p>';
1447 1447
 
1448 1448
 							}
@@ -1454,35 +1454,35 @@  discard block
 block discarded – undo
1454 1454
 			}
1455 1455
 
1456 1456
 			// Active pagination
1457
-			if( $completed_count > $per_page ) {
1457
+			if ($completed_count > $per_page) {
1458 1458
 
1459 1459
 				$current_page = 1;
1460
-				if( isset( $_GET['completed_page'] ) && 0 < intval( $_GET['completed_page'] ) ) {
1460
+				if (isset($_GET['completed_page']) && 0 < intval($_GET['completed_page'])) {
1461 1461
 					$current_page = $_GET['completed_page'];
1462 1462
 				}
1463 1463
 
1464 1464
 				$complete_html .= '<nav class="pagination woo-pagination">';
1465
-				$total_pages = ceil( $completed_count / $per_page );
1465
+				$total_pages = ceil($completed_count / $per_page);
1466 1466
 
1467 1467
 
1468
-				if( $current_page > 1 ) {
1469
-					$prev_link = add_query_arg( 'completed_page', $current_page - 1 );
1470
-					$complete_html .= '<a class="prev page-numbers" href="' . esc_url( $prev_link ) . '">' . __( 'Previous' , 'woothemes-sensei' ) . '</a> ';
1468
+				if ($current_page > 1) {
1469
+					$prev_link = add_query_arg('completed_page', $current_page - 1);
1470
+					$complete_html .= '<a class="prev page-numbers" href="'.esc_url($prev_link).'">'.__('Previous', 'woothemes-sensei').'</a> ';
1471 1471
 				}
1472 1472
 
1473
-				for ( $i = 1; $i <= $total_pages; $i++ ) {
1474
-					$link = add_query_arg( 'completed_page', $i );
1473
+				for ($i = 1; $i <= $total_pages; $i++) {
1474
+					$link = add_query_arg('completed_page', $i);
1475 1475
 
1476
-					if( $i == $current_page ) {
1477
-						$complete_html .= '<span class="page-numbers current">' . $i . '</span> ';
1476
+					if ($i == $current_page) {
1477
+						$complete_html .= '<span class="page-numbers current">'.$i.'</span> ';
1478 1478
 					} else {
1479
-						$complete_html .= '<a class="page-numbers" href="' . esc_url( $link ) . '">' . $i . '</a> ';
1479
+						$complete_html .= '<a class="page-numbers" href="'.esc_url($link).'">'.$i.'</a> ';
1480 1480
 					}
1481 1481
 				}
1482 1482
 
1483
-				if( $current_page < $total_pages ) {
1484
-					$next_link = add_query_arg( 'completed_page', $current_page + 1 );
1485
-					$complete_html .= '<a class="next page-numbers" href="' . esc_url( $next_link ) . '">' . __( 'Next' , 'woothemes-sensei' ) . '</a> ';
1483
+				if ($current_page < $total_pages) {
1484
+					$next_link = add_query_arg('completed_page', $current_page + 1);
1485
+					$complete_html .= '<a class="next page-numbers" href="'.esc_url($next_link).'">'.__('Next', 'woothemes-sensei').'</a> ';
1486 1486
 				}
1487 1487
 
1488 1488
 				$complete_html .= '</nav>';
@@ -1490,26 +1490,26 @@  discard block
 block discarded – undo
1490 1490
 
1491 1491
 		} // End If Statement
1492 1492
 
1493
-		if( $manage ) {
1494
-			$no_active_message = __( 'You have no active courses.', 'woothemes-sensei' );
1495
-			$no_complete_message = __( 'You have not completed any courses yet.', 'woothemes-sensei' );
1493
+		if ($manage) {
1494
+			$no_active_message = __('You have no active courses.', 'woothemes-sensei');
1495
+			$no_complete_message = __('You have not completed any courses yet.', 'woothemes-sensei');
1496 1496
 		} else {
1497
-			$no_active_message =  __( 'This learner has no active courses.', 'woothemes-sensei' );
1498
-			$no_complete_message =  __( 'This learner has not completed any courses yet.', 'woothemes-sensei' );
1497
+			$no_active_message = __('This learner has no active courses.', 'woothemes-sensei');
1498
+			$no_complete_message = __('This learner has not completed any courses yet.', 'woothemes-sensei');
1499 1499
 		}
1500 1500
 
1501 1501
 		ob_start();
1502 1502
 		?>
1503 1503
 
1504
-		<?php do_action( 'sensei_before_user_courses' ); ?>
1504
+		<?php do_action('sensei_before_user_courses'); ?>
1505 1505
 
1506 1506
 		<?php
1507
-		if( $manage && ( ! isset( Sensei()->settings->settings['messages_disable'] ) || ! Sensei()->settings->settings['messages_disable'] ) ) {
1507
+		if ($manage && ( ! isset(Sensei()->settings->settings['messages_disable']) || ! Sensei()->settings->settings['messages_disable'])) {
1508 1508
 			?>
1509 1509
 			<p class="my-messages-link-container">
1510
-                <a class="my-messages-link" href="<?php echo get_post_type_archive_link( 'sensei_message' ); ?>"
1511
-                   title="<?php _e( 'View & reply to private messages sent to your course & lesson teachers.', 'woothemes-sensei' ); ?>">
1512
-                    <?php _e( 'My Messages', 'woothemes-sensei' ); ?>
1510
+                <a class="my-messages-link" href="<?php echo get_post_type_archive_link('sensei_message'); ?>"
1511
+                   title="<?php _e('View & reply to private messages sent to your course & lesson teachers.', 'woothemes-sensei'); ?>">
1512
+                    <?php _e('My Messages', 'woothemes-sensei'); ?>
1513 1513
                 </a>
1514 1514
             </p>
1515 1515
 			<?php
@@ -1518,11 +1518,11 @@  discard block
 block discarded – undo
1518 1518
 		<div id="my-courses">
1519 1519
 
1520 1520
 		    <ul>
1521
-		    	<li><a href="#active-courses"><?php  _e( 'Active Courses', 'woothemes-sensei' ); ?></a></li>
1522
-		    	<li><a href="#completed-courses"><?php  _e( 'Completed Courses', 'woothemes-sensei' ); ?></a></li>
1521
+		    	<li><a href="#active-courses"><?php  _e('Active Courses', 'woothemes-sensei'); ?></a></li>
1522
+		    	<li><a href="#completed-courses"><?php  _e('Completed Courses', 'woothemes-sensei'); ?></a></li>
1523 1523
 		    </ul>
1524 1524
 
1525
-		    <?php do_action( 'sensei_before_active_user_courses' ); ?>
1525
+		    <?php do_action('sensei_before_active_user_courses'); ?>
1526 1526
 
1527 1527
 		    <?php
1528 1528
             $course_page_url = Sensei_Course::get_courses_page_url();
@@ -1530,7 +1530,7 @@  discard block
 block discarded – undo
1530 1530
 
1531 1531
 		    <div id="active-courses">
1532 1532
 
1533
-		    	<?php if ( '' != $active_html ) {
1533
+		    	<?php if ('' != $active_html) {
1534 1534
 
1535 1535
 		    		echo $active_html;
1536 1536
 
@@ -1542,7 +1542,7 @@  discard block
 block discarded – undo
1542 1542
 
1543 1543
                         <a href="<?php echo $course_page_url; ?>">
1544 1544
 
1545
-                            <?php  _e( 'Start a Course!', 'woothemes-sensei' ); ?>
1545
+                            <?php  _e('Start a Course!', 'woothemes-sensei'); ?>
1546 1546
 
1547 1547
                         </a>
1548 1548
 
@@ -1552,13 +1552,13 @@  discard block
 block discarded – undo
1552 1552
 
1553 1553
 		    </div>
1554 1554
 
1555
-		    <?php do_action( 'sensei_after_active_user_courses' ); ?>
1555
+		    <?php do_action('sensei_after_active_user_courses'); ?>
1556 1556
 
1557
-		    <?php do_action( 'sensei_before_completed_user_courses' ); ?>
1557
+		    <?php do_action('sensei_before_completed_user_courses'); ?>
1558 1558
 
1559 1559
 		    <div id="completed-courses">
1560 1560
 
1561
-		    	<?php if ( '' != $complete_html ) {
1561
+		    	<?php if ('' != $complete_html) {
1562 1562
 
1563 1563
 		    		echo $complete_html;
1564 1564
 
@@ -1574,16 +1574,16 @@  discard block
 block discarded – undo
1574 1574
 
1575 1575
 		    </div>
1576 1576
 
1577
-		    <?php do_action( 'sensei_after_completed_user_courses' ); ?>
1577
+		    <?php do_action('sensei_after_completed_user_courses'); ?>
1578 1578
 
1579 1579
 		</div>
1580 1580
 
1581
-		<?php do_action( 'sensei_after_user_courses' ); ?>
1581
+		<?php do_action('sensei_after_user_courses'); ?>
1582 1582
 
1583 1583
 		<?php
1584 1584
         echo ob_get_clean();
1585 1585
 
1586
-        do_action( 'sensei_after_learner_course_content', $user );
1586
+        do_action('sensei_after_learner_course_content', $user);
1587 1587
 
1588 1588
 	} // end load_user_courses_content
1589 1589
 
@@ -1595,7 +1595,7 @@  discard block
 block discarded – undo
1595 1595
      *  @type $course WP_Post
1596 1596
      * }
1597 1597
      */
1598
-    public static function get_all_courses(){
1598
+    public static function get_all_courses() {
1599 1599
 
1600 1600
         $args = array(
1601 1601
                'post_type' => 'course',
@@ -1606,7 +1606,7 @@  discard block
 block discarded – undo
1606 1606
                 'suppress_filters' 	=> 0,
1607 1607
         );
1608 1608
 
1609
-        $wp_query_obj =  new WP_Query( $args );
1609
+        $wp_query_obj = new WP_Query($args);
1610 1610
 
1611 1611
         /**
1612 1612
          * sensei_get_all_courses filter
@@ -1618,7 +1618,7 @@  discard block
 block discarded – undo
1618 1618
          * }
1619 1619
          * @param array $attributes
1620 1620
          */
1621
-        return apply_filters( 'sensei_get_all_courses' , $wp_query_obj->posts );
1621
+        return apply_filters('sensei_get_all_courses', $wp_query_obj->posts);
1622 1622
 
1623 1623
     }// end get_all_courses
1624 1624
 
@@ -1629,16 +1629,16 @@  discard block
 block discarded – undo
1629 1629
      * @param int $progress_percentage 0 - 100
1630 1630
      * @return string $progress_bar_html
1631 1631
      */
1632
-    public function get_progress_meter( $progress_percentage ){
1632
+    public function get_progress_meter($progress_percentage) {
1633 1633
 
1634
-        if ( 50 < $progress_percentage ) {
1634
+        if (50 < $progress_percentage) {
1635 1635
             $class = ' green';
1636
-        } elseif ( 25 <= $progress_percentage && 50 >= $progress_percentage ) {
1636
+        } elseif (25 <= $progress_percentage && 50 >= $progress_percentage) {
1637 1637
             $class = ' orange';
1638 1638
         } else {
1639 1639
             $class = ' red';
1640 1640
         }
1641
-        $progress_bar_html = '<div class="meter' . esc_attr( $class ) . '"><span style="width: ' . $progress_percentage . '%">' . round( $progress_percentage ) . '%</span></div>';
1641
+        $progress_bar_html = '<div class="meter'.esc_attr($class).'"><span style="width: '.$progress_percentage.'%">'.round($progress_percentage).'%</span></div>';
1642 1642
 
1643 1643
         return $progress_bar_html;
1644 1644
 
@@ -1653,17 +1653,17 @@  discard block
 block discarded – undo
1653 1653
      *
1654 1654
      * @return string $statement_html
1655 1655
      */
1656
-    public function get_progress_statement( $course_id, $user_id ){
1656
+    public function get_progress_statement($course_id, $user_id) {
1657 1657
 
1658
-        if( empty( $course_id ) || empty( $user_id )
1659
-        || ! Sensei_Utils::user_started_course( $course_id, $user_id ) ){
1658
+        if (empty($course_id) || empty($user_id)
1659
+        || ! Sensei_Utils::user_started_course($course_id, $user_id)) {
1660 1660
             return '';
1661 1661
         }
1662 1662
 
1663
-        $completed = count( $this->get_completed_lesson_ids( $course_id, $user_id ) );
1664
-        $total_lessons = count( $this->course_lessons( $course_id ) );
1663
+        $completed = count($this->get_completed_lesson_ids($course_id, $user_id));
1664
+        $total_lessons = count($this->course_lessons($course_id));
1665 1665
 
1666
-        $statement = sprintf( _n('Currently completed %s lesson of %s in total', 'Currently completed %s lessons of %s in total', $completed, 'woothemes-sensei'), $completed, $total_lessons );
1666
+        $statement = sprintf(_n('Currently completed %s lesson of %s in total', 'Currently completed %s lessons of %s in total', $completed, 'woothemes-sensei'), $completed, $total_lessons);
1667 1667
 
1668 1668
         /**
1669 1669
          * Filter the course completion statement.
@@ -1671,7 +1671,7 @@  discard block
 block discarded – undo
1671 1671
          *
1672 1672
          * @param string $statement
1673 1673
          */
1674
-        return apply_filters( 'sensei_course_completion_statement', $statement );
1674
+        return apply_filters('sensei_course_completion_statement', $statement);
1675 1675
 
1676 1676
     }// end generate_progress_statement
1677 1677
 
@@ -1681,17 +1681,17 @@  discard block
 block discarded – undo
1681 1681
      * @param $course_id
1682 1682
      * @return void
1683 1683
      */
1684
-    public function the_progress_statement( $course_id = 0, $user_id = 0 ){
1685
-        if( empty( $course_id ) ){
1684
+    public function the_progress_statement($course_id = 0, $user_id = 0) {
1685
+        if (empty($course_id)) {
1686 1686
             global $post;
1687 1687
             $course_id = $post->ID;
1688 1688
         }
1689 1689
 
1690
-        if( empty( $user_id ) ){
1690
+        if (empty($user_id)) {
1691 1691
             $user_id = get_current_user_id();
1692 1692
         }
1693 1693
 
1694
-        echo '<span class="progress statement  course-completion-rate">' . $this->get_progress_statement( $course_id, $user_id  ) . '</span>';
1694
+        echo '<span class="progress statement  course-completion-rate">'.$this->get_progress_statement($course_id, $user_id).'</span>';
1695 1695
     }
1696 1696
 
1697 1697
     /**
@@ -1700,24 +1700,24 @@  discard block
 block discarded – undo
1700 1700
      * @param $course_id
1701 1701
      * @return void
1702 1702
      */
1703
-    public function the_progress_meter( $course_id = 0, $user_id = 0 ){
1703
+    public function the_progress_meter($course_id = 0, $user_id = 0) {
1704 1704
 
1705
-        if( empty( $course_id ) ){
1705
+        if (empty($course_id)) {
1706 1706
             global $post;
1707 1707
             $course_id = $post->ID;
1708 1708
         }
1709 1709
 
1710
-        if( empty( $user_id ) ){
1710
+        if (empty($user_id)) {
1711 1711
             $user_id = get_current_user_id();
1712 1712
         }
1713 1713
 
1714
-        if( 'course' != get_post_type( $course_id ) || ! get_userdata( $user_id )
1715
-            || ! Sensei_Utils::user_started_course( $course_id ,$user_id ) ){
1714
+        if ('course' != get_post_type($course_id) || ! get_userdata($user_id)
1715
+            || ! Sensei_Utils::user_started_course($course_id, $user_id)) {
1716 1716
             return;
1717 1717
         }
1718
-        $percentage_completed = $this->get_completion_percentage( $course_id, $user_id );
1718
+        $percentage_completed = $this->get_completion_percentage($course_id, $user_id);
1719 1719
 
1720
-        echo $this->get_progress_meter( $percentage_completed );
1720
+        echo $this->get_progress_meter($percentage_completed);
1721 1721
 
1722 1722
     }// end the_progress_meter
1723 1723
 
@@ -1730,20 +1730,20 @@  discard block
 block discarded – undo
1730 1730
      * @param int $user_id
1731 1731
      * @return array $completed_lesson_ids
1732 1732
      */
1733
-    public function get_completed_lesson_ids( $course_id, $user_id = 0 ){
1733
+    public function get_completed_lesson_ids($course_id, $user_id = 0) {
1734 1734
 
1735
-        if( !( intval( $user_id ) ) > 0 ){
1735
+        if ( ! (intval($user_id)) > 0) {
1736 1736
             $user_id = get_current_user_id();
1737 1737
         }
1738 1738
 
1739 1739
         $completed_lesson_ids = array();
1740 1740
 
1741
-        $course_lessons = $this->course_lessons( $course_id );
1741
+        $course_lessons = $this->course_lessons($course_id);
1742 1742
 
1743
-        foreach( $course_lessons as $lesson ){
1743
+        foreach ($course_lessons as $lesson) {
1744 1744
 
1745
-            $is_lesson_completed = Sensei_Utils::user_completed_lesson( $lesson->ID, $user_id );
1746
-            if( $is_lesson_completed ){
1745
+            $is_lesson_completed = Sensei_Utils::user_completed_lesson($lesson->ID, $user_id);
1746
+            if ($is_lesson_completed) {
1747 1747
                 $completed_lesson_ids[] = $lesson->ID;
1748 1748
             }
1749 1749
 
@@ -1762,19 +1762,19 @@  discard block
 block discarded – undo
1762 1762
      * @param int $user_id
1763 1763
      * @return int $percentage
1764 1764
      */
1765
-    public function get_completion_percentage( $course_id, $user_id = 0 ){
1765
+    public function get_completion_percentage($course_id, $user_id = 0) {
1766 1766
 
1767
-        if( !( intval( $user_id ) ) > 0 ){
1767
+        if ( ! (intval($user_id)) > 0) {
1768 1768
             $user_id = get_current_user_id();
1769 1769
         }
1770 1770
 
1771
-        $completed = count( $this->get_completed_lesson_ids( $course_id, $user_id ) );
1771
+        $completed = count($this->get_completed_lesson_ids($course_id, $user_id));
1772 1772
 
1773
-        if( ! (  $completed  > 0 ) ){
1773
+        if ( ! ($completed > 0)) {
1774 1774
             return 0;
1775 1775
         }
1776 1776
 
1777
-        $total_lessons = count( $this->course_lessons( $course_id ) );
1777
+        $total_lessons = count($this->course_lessons($course_id));
1778 1778
         $percentage = $completed / $total_lessons * 100;
1779 1779
 
1780 1780
         /**
@@ -1786,7 +1786,7 @@  discard block
 block discarded – undo
1786 1786
          * @param $user_id
1787 1787
          * @since 1.8.0
1788 1788
          */
1789
-        return apply_filters( 'sensei_course_completion_percentage', $percentage, $course_id, $user_id );
1789
+        return apply_filters('sensei_course_completion_percentage', $percentage, $course_id, $user_id);
1790 1790
 
1791 1791
     }// end get_completed_lesson_ids
1792 1792
 
@@ -1798,28 +1798,28 @@  discard block
 block discarded – undo
1798 1798
      * @param $should_send
1799 1799
      * @return bool
1800 1800
      */
1801
-    public function block_notification_emails( $should_send ){
1801
+    public function block_notification_emails($should_send) {
1802 1802
         global $sensei_email_data;
1803 1803
         $email = $sensei_email_data;
1804 1804
 
1805 1805
         $course_id = '';
1806 1806
 
1807
-        if( isset( $email['course_id'] ) ){
1807
+        if (isset($email['course_id'])) {
1808 1808
 
1809 1809
             $course_id = $email['course_id'];
1810 1810
 
1811
-        }elseif( isset( $email['lesson_id'] ) ){
1811
+        }elseif (isset($email['lesson_id'])) {
1812 1812
 
1813
-            $course_id = Sensei()->lesson->get_course_id( $email['lesson_id'] );
1813
+            $course_id = Sensei()->lesson->get_course_id($email['lesson_id']);
1814 1814
 
1815
-        }elseif( isset( $email['quiz_id'] ) ){
1815
+        }elseif (isset($email['quiz_id'])) {
1816 1816
 
1817
-            $lesson_id = Sensei()->quiz->get_lesson_id( $email['quiz_id'] );
1818
-            $course_id = Sensei()->lesson->get_course_id( $lesson_id );
1817
+            $lesson_id = Sensei()->quiz->get_lesson_id($email['quiz_id']);
1818
+            $course_id = Sensei()->lesson->get_course_id($lesson_id);
1819 1819
 
1820 1820
         }
1821 1821
 
1822
-        if( !empty( $course_id ) && 'course'== get_post_type( $course_id ) ) {
1822
+        if ( ! empty($course_id) && 'course' == get_post_type($course_id)) {
1823 1823
 
1824 1824
             $course_emails_disabled = get_post_meta($course_id, 'disable_notification', true);
1825 1825
 
@@ -1840,19 +1840,19 @@  discard block
 block discarded – undo
1840 1840
      * @since 1.8.0
1841 1841
      * @param $course
1842 1842
      */
1843
-    public function course_notification_meta_box_content( $course ){
1843
+    public function course_notification_meta_box_content($course) {
1844 1844
 
1845
-        $checked = get_post_meta( $course->ID , 'disable_notification', true );
1845
+        $checked = get_post_meta($course->ID, 'disable_notification', true);
1846 1846
 
1847 1847
         // generate checked html
1848 1848
         $checked_html = '';
1849
-        if( $checked ){
1849
+        if ($checked) {
1850 1850
             $checked_html = 'checked="checked"';
1851 1851
         }
1852
-        wp_nonce_field( 'update-course-notification-setting','_sensei_course_notification' );
1852
+        wp_nonce_field('update-course-notification-setting', '_sensei_course_notification');
1853 1853
 
1854
-        echo '<input id="disable_sensei_course_notification" '.$checked_html .' type="checkbox" name="disable_sensei_course_notification" >';
1855
-        echo '<label for="disable_sensei_course_notification">'.__('Disable notifications on this course ?', 'woothemes-sensei'). '</label>';
1854
+        echo '<input id="disable_sensei_course_notification" '.$checked_html.' type="checkbox" name="disable_sensei_course_notification" >';
1855
+        echo '<label for="disable_sensei_course_notification">'.__('Disable notifications on this course ?', 'woothemes-sensei').'</label>';
1856 1856
 
1857 1857
     }// end course_notification_meta_box_content
1858 1858
 
@@ -1864,20 +1864,20 @@  discard block
 block discarded – undo
1864 1864
      *
1865 1865
      * @param $course_id
1866 1866
      */
1867
-    public function save_course_notification_meta_box( $course_id ){
1867
+    public function save_course_notification_meta_box($course_id) {
1868 1868
 
1869
-        if( !isset( $_POST['_sensei_course_notification']  )
1870
-            || ! wp_verify_nonce( $_POST['_sensei_course_notification'], 'update-course-notification-setting' ) ){
1869
+        if ( ! isset($_POST['_sensei_course_notification'])
1870
+            || ! wp_verify_nonce($_POST['_sensei_course_notification'], 'update-course-notification-setting')) {
1871 1871
             return;
1872 1872
         }
1873 1873
 
1874
-        if( isset( $_POST['disable_sensei_course_notification'] ) && 'on'== $_POST['disable_sensei_course_notification']  ) {
1874
+        if (isset($_POST['disable_sensei_course_notification']) && 'on' == $_POST['disable_sensei_course_notification']) {
1875 1875
             $new_val = true;
1876
-        }else{
1876
+        } else {
1877 1877
             $new_val = false;
1878 1878
         }
1879 1879
 
1880
-       update_post_meta( $course_id , 'disable_notification', $new_val );
1880
+       update_post_meta($course_id, 'disable_notification', $new_val);
1881 1881
 
1882 1882
     }// end save notification meta box
1883 1883
 
@@ -1891,10 +1891,10 @@  discard block
 block discarded – undo
1891 1891
      *
1892 1892
      * @param WP_Post $post
1893 1893
      */
1894
-    public function content_before_backwards_compatibility_hooks( $post ){
1894
+    public function content_before_backwards_compatibility_hooks($post) {
1895 1895
 
1896
-        sensei_do_deprecated_action( 'sensei_course_image','1.9.0','sensei_course_content_inside_before' );
1897
-        sensei_do_deprecated_action( 'sensei_course_archive_course_title','1.9.0','sensei_course_content_inside_before' );
1896
+        sensei_do_deprecated_action('sensei_course_image', '1.9.0', 'sensei_course_content_inside_before');
1897
+        sensei_do_deprecated_action('sensei_course_archive_course_title', '1.9.0', 'sensei_course_content_inside_before');
1898 1898
 
1899 1899
     }
1900 1900
 
@@ -1907,10 +1907,10 @@  discard block
 block discarded – undo
1907 1907
      *
1908 1908
      * @global WP_Post $post
1909 1909
      */
1910
-    public  function loop_before_backwards_compatibility_hooks( ){
1910
+    public  function loop_before_backwards_compatibility_hooks( ) {
1911 1911
 
1912 1912
         global $post;
1913
-        sensei_do_deprecated_action( 'sensei_course_archive_header','1.9.0','sensei_course_content_inside_before', $post->post_type  );
1913
+        sensei_do_deprecated_action('sensei_course_archive_header', '1.9.0', 'sensei_course_content_inside_before', $post->post_type);
1914 1914
 
1915 1915
     }
1916 1916
 
@@ -1923,18 +1923,18 @@  discard block
 block discarded – undo
1923 1923
      *
1924 1924
      * @param WP_Post $course
1925 1925
      */
1926
-    public function the_course_free_lesson_preview( $course ){
1926
+    public function the_course_free_lesson_preview($course) {
1927 1927
         // Meta data
1928
-        $preview_lesson_count = intval( Sensei()->course->course_lesson_preview_count( $course->ID ) );
1929
-        $is_user_taking_course = Sensei_Utils::user_started_course( $course->ID, get_current_user_id() );
1928
+        $preview_lesson_count = intval(Sensei()->course->course_lesson_preview_count($course->ID));
1929
+        $is_user_taking_course = Sensei_Utils::user_started_course($course->ID, get_current_user_id());
1930 1930
 
1931
-        if ( 0 < $preview_lesson_count && !$is_user_taking_course ) {
1931
+        if (0 < $preview_lesson_count && ! $is_user_taking_course) {
1932 1932
             ?>
1933 1933
             <p class="sensei-free-lessons">
1934 1934
                 <a href="<?php echo get_permalink(); ?>">
1935
-                    <?php _e( 'Preview this course', 'woothemes-sensei' ) ?>
1935
+                    <?php _e('Preview this course', 'woothemes-sensei') ?>
1936 1936
                 </a>
1937
-                - <?php echo sprintf( __( '(%d preview lessons)', 'woothemes-sensei' ), $preview_lesson_count ) ; ?>
1937
+                - <?php echo sprintf(__('(%d preview lessons)', 'woothemes-sensei'), $preview_lesson_count); ?>
1938 1938
             </p>
1939 1939
 
1940 1940
         <?php
@@ -1947,38 +1947,38 @@  discard block
 block discarded – undo
1947 1947
      * @since 1.9.0
1948 1948
      * @param WP_Post $course
1949 1949
      */
1950
-    public function the_course_meta( $course ){
1950
+    public function the_course_meta($course) {
1951 1951
         echo '<p class="sensei-course-meta">';
1952 1952
 
1953
-        $category_output = get_the_term_list( $course->ID, 'course-category', '', ', ', '' );
1954
-        $author_display_name = get_the_author_meta( 'display_name', $course->post_author  );
1953
+        $category_output = get_the_term_list($course->ID, 'course-category', '', ', ', '');
1954
+        $author_display_name = get_the_author_meta('display_name', $course->post_author);
1955 1955
 
1956
-        if ( isset( Sensei()->settings->settings[ 'course_author' ] ) && ( Sensei()->settings->settings[ 'course_author' ] ) ) {?>
1956
+        if (isset(Sensei()->settings->settings['course_author']) && (Sensei()->settings->settings['course_author'])) {?>
1957 1957
 
1958
-            <span class="course-author"><?php _e( 'by ', 'woothemes-sensei' ); ?>
1958
+            <span class="course-author"><?php _e('by ', 'woothemes-sensei'); ?>
1959 1959
 
1960
-                <a href="<?php esc_attr_e( get_author_posts_url( $course->post_author ) ); ?>" title="<?php esc_attr_e( $author_display_name ); ?>"><?php esc_attr_e( $author_display_name   ); ?></a>
1960
+                <a href="<?php esc_attr_e(get_author_posts_url($course->post_author)); ?>" title="<?php esc_attr_e($author_display_name); ?>"><?php esc_attr_e($author_display_name); ?></a>
1961 1961
 
1962 1962
             </span>
1963 1963
 
1964 1964
         <?php } // End If Statement ?>
1965 1965
 
1966
-        <span class="course-lesson-count"><?php echo Sensei()->course->course_lesson_count( $course->ID ) . '&nbsp;' .  __( 'Lessons', 'woothemes-sensei' ); ?></span>
1966
+        <span class="course-lesson-count"><?php echo Sensei()->course->course_lesson_count($course->ID).'&nbsp;'.__('Lessons', 'woothemes-sensei'); ?></span>
1967 1967
 
1968
-       <?php if ( '' != $category_output ) { ?>
1968
+       <?php if ('' != $category_output) { ?>
1969 1969
 
1970
-            <span class="course-category"><?php echo sprintf( __( 'in %s', 'woothemes-sensei' ), $category_output ); ?></span>
1970
+            <span class="course-category"><?php echo sprintf(__('in %s', 'woothemes-sensei'), $category_output); ?></span>
1971 1971
 
1972 1972
         <?php } // End If Statement
1973 1973
 
1974 1974
         // number of completed lessons
1975
-        if( is_user_logged_in() ){
1976
-            $completed = count( $this->get_completed_lesson_ids( $course->ID, get_current_user_id() ) );
1977
-            $lesson_count = count( $this->course_lessons( $course->ID ) );
1978
-            echo '<span class="course-lesson-progress">' . sprintf( __( '%1$d of %2$d lessons completed', 'woothemes-sensei' ) , $completed, $lesson_count  ) . '</span>';
1975
+        if (is_user_logged_in()) {
1976
+            $completed = count($this->get_completed_lesson_ids($course->ID, get_current_user_id()));
1977
+            $lesson_count = count($this->course_lessons($course->ID));
1978
+            echo '<span class="course-lesson-progress">'.sprintf(__('%1$d of %2$d lessons completed', 'woothemes-sensei'), $completed, $lesson_count).'</span>';
1979 1979
         }
1980 1980
 
1981
-        sensei_simple_course_price( $course->ID );
1981
+        sensei_simple_course_price($course->ID);
1982 1982
 
1983 1983
         echo '</p>';
1984 1984
     } // end the course meta
@@ -1993,15 +1993,15 @@  discard block
 block discarded – undo
1993 1993
      *
1994 1994
      * @return array $classes
1995 1995
      */
1996
-    public static function add_course_user_status_class( $classes, $class, $course_id ){
1996
+    public static function add_course_user_status_class($classes, $class, $course_id) {
1997 1997
 
1998
-        if( 'course' == get_post_type( $course_id )  &&  is_user_logged_in() ){
1998
+        if ('course' == get_post_type($course_id) && is_user_logged_in()) {
1999 1999
 
2000
-            if( Sensei_Utils::user_completed_course( $course_id, get_current_user_id() ) ){
2000
+            if (Sensei_Utils::user_completed_course($course_id, get_current_user_id())) {
2001 2001
 
2002 2002
                 $classes[] = 'user-status-completed';
2003 2003
 
2004
-            }else{
2004
+            } else {
2005 2005
 
2006 2006
                 $classes[] = 'user-status-active';
2007 2007
 
@@ -2021,56 +2021,56 @@  discard block
 block discarded – undo
2021 2021
      *
2022 2022
      * @param WP_Post $course
2023 2023
      */
2024
-    public static function the_course_action_buttons( $course ){
2024
+    public static function the_course_action_buttons($course) {
2025 2025
 
2026
-        if( is_user_logged_in() ) { ?>
2026
+        if (is_user_logged_in()) { ?>
2027 2027
 
2028 2028
             <section class="entry-actions">
2029
-                <form method="POST" action="<?php  echo esc_url( remove_query_arg( array( 'active_page', 'completed_page' ) ) ); ?>">
2029
+                <form method="POST" action="<?php  echo esc_url(remove_query_arg(array('active_page', 'completed_page'))); ?>">
2030 2030
 
2031 2031
                     <input type="hidden"
2032
-                           name="<?php esc_attr_e( 'woothemes_sensei_complete_course_noonce' ) ?>"
2033
-                           id="<?php  esc_attr_e( 'woothemes_sensei_complete_course_noonce' ); ?>"
2034
-                           value="<?php esc_attr_e( wp_create_nonce( 'woothemes_sensei_complete_course_noonce' ) ); ?>"
2032
+                           name="<?php esc_attr_e('woothemes_sensei_complete_course_noonce') ?>"
2033
+                           id="<?php  esc_attr_e('woothemes_sensei_complete_course_noonce'); ?>"
2034
+                           value="<?php esc_attr_e(wp_create_nonce('woothemes_sensei_complete_course_noonce')); ?>"
2035 2035
                         />
2036 2036
 
2037
-                    <input type="hidden" name="course_complete_id" id="course-complete-id" value="<?php esc_attr_e( intval( $course->ID ) ); ?>" />
2037
+                    <input type="hidden" name="course_complete_id" id="course-complete-id" value="<?php esc_attr_e(intval($course->ID)); ?>" />
2038 2038
 
2039
-                    <?php if ( 0 < absint( count( Sensei()->course->course_lessons( $course->ID ) ) ) && Sensei()->settings->settings['course_completion'] == 'complete' ) { ?>
2039
+                    <?php if (0 < absint(count(Sensei()->course->course_lessons($course->ID))) && Sensei()->settings->settings['course_completion'] == 'complete') { ?>
2040 2040
 
2041
-                        <span><input name="course_complete" type="submit" class="course-complete" value="<?php  _e( 'Mark as Complete', 'woothemes-sensei' ); ?>" /></span>
2041
+                        <span><input name="course_complete" type="submit" class="course-complete" value="<?php  _e('Mark as Complete', 'woothemes-sensei'); ?>" /></span>
2042 2042
 
2043 2043
                    <?php  } // End If Statement
2044 2044
 
2045 2045
                     $course_purchased = false;
2046
-                    if ( Sensei_WC::is_woocommerce_active() ) {
2046
+                    if (Sensei_WC::is_woocommerce_active()) {
2047 2047
                         // Get the product ID
2048
-                        $wc_post_id = get_post_meta( intval( $course->ID ), '_course_woocommerce_product', true );
2049
-                        if ( 0 < $wc_post_id ) {
2048
+                        $wc_post_id = get_post_meta(intval($course->ID), '_course_woocommerce_product', true);
2049
+                        if (0 < $wc_post_id) {
2050 2050
 
2051 2051
                             $user = wp_get_current_user();
2052
-                            $course_purchased = Sensei_Utils::sensei_customer_bought_product( $user->user_email, $user->ID, $wc_post_id );
2052
+                            $course_purchased = Sensei_Utils::sensei_customer_bought_product($user->user_email, $user->ID, $wc_post_id);
2053 2053
 
2054 2054
                         } // End If Statement
2055 2055
                     } // End If Statement
2056 2056
 
2057
-                    if ( ! $course_purchased && ! Sensei_Utils::user_completed_course( $course->ID, get_current_user_id() ) ) {?>
2057
+                    if ( ! $course_purchased && ! Sensei_Utils::user_completed_course($course->ID, get_current_user_id())) {?>
2058 2058
 
2059
-                        <span><input name="course_complete" type="submit" class="course-delete" value="<?php echo __( 'Delete Course', 'woothemes-sensei' ); ?>"/></span>
2059
+                        <span><input name="course_complete" type="submit" class="course-delete" value="<?php echo __('Delete Course', 'woothemes-sensei'); ?>"/></span>
2060 2060
 
2061 2061
                     <?php } // End If Statement
2062 2062
 
2063
-                    $has_quizzes = Sensei()->course->course_quizzes( $course->ID, true );
2063
+                    $has_quizzes = Sensei()->course->course_quizzes($course->ID, true);
2064 2064
                     $results_link = '';
2065
-                    if( $has_quizzes ){
2066
-                        $results_link = '<a class="button view-results" href="' . Sensei()->course_results->get_permalink( $course->ID ) . '">' . __( 'View results', 'woothemes-sensei' ) . '</a>';
2065
+                    if ($has_quizzes) {
2066
+                        $results_link = '<a class="button view-results" href="'.Sensei()->course_results->get_permalink($course->ID).'">'.__('View results', 'woothemes-sensei').'</a>';
2067 2067
                     }
2068 2068
 
2069 2069
                     // Output only if there is content to display
2070
-                    if ( has_filter( 'sensei_results_links' ) || $has_quizzes ) { ?>
2070
+                    if (has_filter('sensei_results_links') || $has_quizzes) { ?>
2071 2071
 
2072 2072
                         <p class="sensei-results-links">
2073
-                            <?php echo apply_filters( 'sensei_results_links', $results_link ); ?>
2073
+                            <?php echo apply_filters('sensei_results_links', $results_link); ?>
2074 2074
                         </p>
2075 2075
 
2076 2076
                     <?php } // end if has filter  ?>
@@ -2095,27 +2095,27 @@  discard block
 block discarded – undo
2095 2095
      * @param WP_Query $query
2096 2096
      * @return WP_Query $query
2097 2097
      */
2098
-    public static function course_query_filter( $query ){
2098
+    public static function course_query_filter($query) {
2099 2099
 
2100 2100
         // exit early for no course queries and admin queries
2101
-        if( is_admin( ) || 'course' != $query->get( 'post_type' ) ){
2101
+        if (is_admin( ) || 'course' != $query->get('post_type')) {
2102 2102
             return $query;
2103 2103
         }
2104 2104
 
2105 2105
         global $post; // used to get the current page id for my courses
2106 2106
 
2107 2107
         // for the course archive page
2108
-        if( $query->is_main_query() && is_post_type_archive('course') )
2108
+        if ($query->is_main_query() && is_post_type_archive('course'))
2109 2109
         {
2110 2110
 
2111
-            $query->set( 'posts_per_page', apply_filters( 'sensei_archive_courses_per_page', get_option( 'posts_per_page' ) ) );
2111
+            $query->set('posts_per_page', apply_filters('sensei_archive_courses_per_page', get_option('posts_per_page')));
2112 2112
 
2113 2113
         }
2114 2114
         // for the my courses page
2115
-        elseif( is_page() && Sensei()->settings->get( 'my_course_page' ) == $post->ID  )
2115
+        elseif (is_page() && Sensei()->settings->get('my_course_page') == $post->ID)
2116 2116
         {
2117 2117
 
2118
-            $query->set( 'posts_per_page', apply_filters( 'sensei_my_courses_per_page', get_option( 'posts_per_page' ) ) );
2118
+            $query->set('posts_per_page', apply_filters('sensei_my_courses_per_page', get_option('posts_per_page')));
2119 2119
 
2120 2120
         }
2121 2121
 
@@ -2131,21 +2131,21 @@  discard block
 block discarded – undo
2131 2131
      * @return array $extra_classes
2132 2132
      * @since 1.9.0
2133 2133
      */
2134
-    public static function get_course_loop_content_class ()
2134
+    public static function get_course_loop_content_class()
2135 2135
     {
2136 2136
 
2137 2137
         global $sensei_course_loop;
2138 2138
 
2139 2139
 
2140
-        if( !isset( $sensei_course_loop ) ){
2140
+        if ( ! isset($sensei_course_loop)) {
2141 2141
             $sensei_course_loop = array();
2142 2142
         }
2143 2143
 
2144
-        if (!isset($sensei_course_loop['counter'])) {
2144
+        if ( ! isset($sensei_course_loop['counter'])) {
2145 2145
             $sensei_course_loop['counter'] = 0;
2146 2146
         }
2147 2147
 
2148
-        if (!isset($sensei_course_loop['columns'])) {
2148
+        if ( ! isset($sensei_course_loop['columns'])) {
2149 2149
             $sensei_course_loop['columns'] = self::get_loop_number_of_columns();
2150 2150
         }
2151 2151
 
@@ -2153,16 +2153,16 @@  discard block
 block discarded – undo
2153 2153
         $sensei_course_loop['counter']++;
2154 2154
 
2155 2155
         $extra_classes = array();
2156
-        if( 0 == ( $sensei_course_loop['counter'] - 1 ) % $sensei_course_loop['columns'] || 1 == $sensei_course_loop['columns']  ){
2156
+        if (0 == ($sensei_course_loop['counter'] - 1) % $sensei_course_loop['columns'] || 1 == $sensei_course_loop['columns']) {
2157 2157
             $extra_classes[] = 'first';
2158 2158
         }
2159 2159
 
2160
-        if( 0 == $sensei_course_loop['counter'] % $sensei_course_loop['columns']  ){
2160
+        if (0 == $sensei_course_loop['counter'] % $sensei_course_loop['columns']) {
2161 2161
             $extra_classes[] = 'last';
2162 2162
         }
2163 2163
 
2164 2164
         // add the item number to the classes as well.
2165
-        $extra_classes[] = 'loop-item-number-'. $sensei_course_loop['counter'];
2165
+        $extra_classes[] = 'loop-item-number-'.$sensei_course_loop['counter'];
2166 2166
 
2167 2167
         /**
2168 2168
          * Filter the course loop class the fires in the  in get_course_loop_content_class function
@@ -2173,7 +2173,7 @@  discard block
 block discarded – undo
2173 2173
          * @param array $extra_classes
2174 2174
          * @param WP_Post $loop_current_course
2175 2175
          */
2176
-        return apply_filters( 'sensei_course_loop_content_class', $extra_classes ,get_post() );
2176
+        return apply_filters('sensei_course_loop_content_class', $extra_classes, get_post());
2177 2177
 
2178 2178
     }// end get_course_loop_class
2179 2179
 
@@ -2183,7 +2183,7 @@  discard block
 block discarded – undo
2183 2183
      * @since 1.9.0
2184 2184
      * @return mixed|void
2185 2185
      */
2186
-    public static function get_loop_number_of_columns(){
2186
+    public static function get_loop_number_of_columns() {
2187 2187
 
2188 2188
         /**
2189 2189
          * Filter the number of columns on the course archive page.
@@ -2203,10 +2203,10 @@  discard block
 block discarded – undo
2203 2203
      * @since 1.9.0
2204 2204
      * @param
2205 2205
      */
2206
-    public static function course_archive_sorting( $query ){
2206
+    public static function course_archive_sorting($query) {
2207 2207
 
2208 2208
         // don't show on category pages and other pages
2209
-        if( ! is_archive(  'course ') || is_tax('course-category') ){
2209
+        if ( ! is_archive('course ') || is_tax('course-category')) {
2210 2210
             return;
2211 2211
         }
2212 2212
 
@@ -2219,27 +2219,27 @@  discard block
 block discarded – undo
2219 2219
          *  @type string $option_string
2220 2220
          * }
2221 2221
          */
2222
-        $course_order_by_options = apply_filters( 'sensei_archive_course_order_by_options', array(
2223
-            "newness"     => __( "Sort by newest first", "woothemes-sensei"),
2224
-            "title"       => __( "Sort by title A-Z", "woothemes-sensei" ),
2222
+        $course_order_by_options = apply_filters('sensei_archive_course_order_by_options', array(
2223
+            "newness"     => __("Sort by newest first", "woothemes-sensei"),
2224
+            "title"       => __("Sort by title A-Z", "woothemes-sensei"),
2225 2225
         ));
2226 2226
 
2227 2227
         // setup the currently selected item
2228 2228
         $selected = 'newness';
2229
-        if( isset( $_GET['orderby'] ) ){
2229
+        if (isset($_GET['orderby'])) {
2230 2230
 
2231
-            $selected =  $_GET[ 'orderby' ];
2231
+            $selected = $_GET['orderby'];
2232 2232
 
2233 2233
         }
2234 2234
 
2235 2235
         ?>
2236 2236
 
2237
-        <form class="sensei-ordering" name="sensei-course-order" action="<?php echo esc_attr( Sensei_Utils::get_current_url() ) ; ?>" method="POST">
2237
+        <form class="sensei-ordering" name="sensei-course-order" action="<?php echo esc_attr(Sensei_Utils::get_current_url()); ?>" method="POST">
2238 2238
             <select name="course-orderby" class="orderby">
2239 2239
                 <?php
2240
-                foreach( $course_order_by_options as $value => $text ){
2240
+                foreach ($course_order_by_options as $value => $text) {
2241 2241
 
2242
-                    echo '<option value="'. $value . ' "' . selected( $selected, $value, false ) . '>'. $text. '</option>';
2242
+                    echo '<option value="'.$value.' "'.selected($selected, $value, false).'>'.$text.'</option>';
2243 2243
 
2244 2244
                 }
2245 2245
                 ?>
@@ -2257,10 +2257,10 @@  discard block
 block discarded – undo
2257 2257
      * @since 1.9.0
2258 2258
      * @param
2259 2259
      */
2260
-    public static function course_archive_filters( $query ){
2260
+    public static function course_archive_filters($query) {
2261 2261
 
2262 2262
         // don't show on category pages
2263
-        if( is_tax('course-category') ){
2263
+        if (is_tax('course-category')) {
2264 2264
             return;
2265 2265
         }
2266 2266
 
@@ -2273,9 +2273,9 @@  discard block
 block discarded – undo
2273 2273
          * }
2274 2274
          *
2275 2275
          */
2276
-        $filters = apply_filters( 'sensei_archive_course_filter_by_options', array(
2277
-            array( 'id' => 'all', 'url' => self::get_courses_page_url(), 'title'=> __( 'All', 'woothemes-sensei' ) ),
2278
-            array( 'id' => 'featured', 'url' => add_query_arg( array( 'course_filter'=>'featured'), self::get_courses_page_url()  ), 'title'=> __( 'Featured', 'woothemes-sensei' ) ),
2276
+        $filters = apply_filters('sensei_archive_course_filter_by_options', array(
2277
+            array('id' => 'all', 'url' => self::get_courses_page_url(), 'title'=> __('All', 'woothemes-sensei')),
2278
+            array('id' => 'featured', 'url' => add_query_arg(array('course_filter'=>'featured'), self::get_courses_page_url()), 'title'=> __('Featured', 'woothemes-sensei')),
2279 2279
         ));
2280 2280
 
2281 2281
 
@@ -2286,11 +2286,11 @@  discard block
 block discarded – undo
2286 2286
             //determine the current active url
2287 2287
             $current_url = Sensei_Utils::get_current_url();
2288 2288
 
2289
-            foreach( $filters as $filter ) {
2289
+            foreach ($filters as $filter) {
2290 2290
 
2291
-                $active_class =  $current_url == $filter['url'] ? ' class="active" ' : '';
2291
+                $active_class = $current_url == $filter['url'] ? ' class="active" ' : '';
2292 2292
 
2293
-                echo '<li><a '. $active_class .' id="'. $filter['id'] .'" href="'. esc_url( $filter['url'] ).'" >'. $filter['title']  .'</a></li>';
2293
+                echo '<li><a '.$active_class.' id="'.$filter['id'].'" href="'.esc_url($filter['url']).'" >'.$filter['title'].'</a></li>';
2294 2294
 
2295 2295
             }
2296 2296
             ?>
@@ -2311,13 +2311,13 @@  discard block
 block discarded – undo
2311 2311
      * @param WP_Query $query
2312 2312
      * @return WP_Query $query
2313 2313
      */
2314
-    public static function course_archive_featured_filter( $query ){
2314
+    public static function course_archive_featured_filter($query) {
2315 2315
 
2316
-        if( isset ( $_GET[ 'course_filter' ] ) && 'featured'== $_GET['course_filter'] && $query->is_main_query()  ){
2316
+        if (isset ($_GET['course_filter']) && 'featured' == $_GET['course_filter'] && $query->is_main_query()) {
2317 2317
             //setup meta query for featured courses
2318
-            $query->set( 'meta_value', 'featured'  );
2319
-            $query->set( 'meta_key', '_course_featured'  );
2320
-            $query->set( 'meta_compare', '='  );
2318
+            $query->set('meta_value', 'featured');
2319
+            $query->set('meta_key', '_course_featured');
2320
+            $query->set('meta_compare', '=');
2321 2321
         }
2322 2322
 
2323 2323
         return $query;
@@ -2332,13 +2332,13 @@  discard block
 block discarded – undo
2332 2332
      * @param WP_Query $query
2333 2333
      * @return WP_Query $query
2334 2334
      */
2335
-    public static function course_archive_order_by_title( $query ){
2335
+    public static function course_archive_order_by_title($query) {
2336 2336
 
2337
-        if( isset ( $_POST[ 'course-orderby' ] ) && 'title '== $_POST['course-orderby']
2338
-            && 'course'== $query->get('post_type') && $query->is_main_query()  ){
2337
+        if (isset ($_POST['course-orderby']) && 'title ' == $_POST['course-orderby']
2338
+            && 'course' == $query->get('post_type') && $query->is_main_query()) {
2339 2339
             // setup the order by title for this query
2340
-            $query->set( 'orderby', 'title'  );
2341
-            $query->set( 'order', 'ASC'  );
2340
+            $query->set('orderby', 'title');
2341
+            $query->set('order', 'ASC');
2342 2342
         }
2343 2343
 
2344 2344
         return $query;
@@ -2352,10 +2352,10 @@  discard block
 block discarded – undo
2352 2352
      * @since 1.9.0
2353 2353
      * @return string $course_page_url
2354 2354
      */
2355
-    public static function get_courses_page_url(){
2355
+    public static function get_courses_page_url() {
2356 2356
 
2357
-        $course_page_id = intval( Sensei()->settings->settings[ 'course_page' ] );
2358
-        $course_page_url = empty( $course_page_id ) ? get_post_type_archive_link('course') : get_permalink( $course_page_id );
2357
+        $course_page_id = intval(Sensei()->settings->settings['course_page']);
2358
+        $course_page_url = empty($course_page_id) ? get_post_type_archive_link('course') : get_permalink($course_page_id);
2359 2359
 
2360 2360
         return $course_page_url;
2361 2361
 
@@ -2372,61 +2372,61 @@  discard block
 block discarded – undo
2372 2372
      * @param string $after_html
2373 2373
      * @return void
2374 2374
      */
2375
-    public static function archive_header( $query_type ='' , $before_html='', $after_html =''  ){
2375
+    public static function archive_header($query_type = '', $before_html = '', $after_html = '') {
2376 2376
 
2377
-        if( ! is_post_type_archive('course') ){
2377
+        if ( ! is_post_type_archive('course')) {
2378 2378
             return;
2379 2379
         }
2380 2380
 
2381 2381
         // deprecated since 1.9.0
2382
-        sensei_do_deprecated_action('sensei_archive_title','1.9.0','sensei_archive_before_course_loop');
2382
+        sensei_do_deprecated_action('sensei_archive_title', '1.9.0', 'sensei_archive_before_course_loop');
2383 2383
 
2384 2384
         $html = '';
2385 2385
 
2386
-        if( empty( $before_html ) ){
2386
+        if (empty($before_html)) {
2387 2387
 
2388 2388
             $before_html = '<header class="archive-header"><h1>';
2389 2389
 
2390 2390
         }
2391 2391
 
2392
-        if( empty( $after_html ) ){
2392
+        if (empty($after_html)) {
2393 2393
 
2394 2394
             $after_html = '</h1></header>';
2395 2395
 
2396 2396
         }
2397 2397
 
2398
-        if ( is_tax( 'course-category' ) ) {
2398
+        if (is_tax('course-category')) {
2399 2399
 
2400 2400
             global $wp_query;
2401 2401
 
2402 2402
             $taxonomy_obj = $wp_query->get_queried_object();
2403 2403
             $taxonomy_short_name = $taxonomy_obj->taxonomy;
2404
-            $taxonomy_raw_obj = get_taxonomy( $taxonomy_short_name );
2405
-            $title = sprintf( __( '%1$s Archives: %2$s', 'woothemes-sensei' ), $taxonomy_raw_obj->labels->name, $taxonomy_obj->name );
2406
-            echo apply_filters( 'course_category_archive_title', $before_html . $title . $after_html );
2404
+            $taxonomy_raw_obj = get_taxonomy($taxonomy_short_name);
2405
+            $title = sprintf(__('%1$s Archives: %2$s', 'woothemes-sensei'), $taxonomy_raw_obj->labels->name, $taxonomy_obj->name);
2406
+            echo apply_filters('course_category_archive_title', $before_html.$title.$after_html);
2407 2407
             return;
2408 2408
 
2409 2409
         } // End If Statement
2410 2410
 
2411
-        switch ( $query_type ) {
2411
+        switch ($query_type) {
2412 2412
             case 'newcourses':
2413
-                $html .= $before_html . __( 'New Courses', 'woothemes-sensei' ) . $after_html;
2413
+                $html .= $before_html.__('New Courses', 'woothemes-sensei').$after_html;
2414 2414
                 break;
2415 2415
             case 'featuredcourses':
2416
-                $html .= $before_html .  __( 'Featured Courses', 'woothemes-sensei' ) . $after_html;
2416
+                $html .= $before_html.__('Featured Courses', 'woothemes-sensei').$after_html;
2417 2417
                 break;
2418 2418
             case 'freecourses':
2419
-                $html .= $before_html .  __( 'Free Courses', 'woothemes-sensei' ) . $after_html;
2419
+                $html .= $before_html.__('Free Courses', 'woothemes-sensei').$after_html;
2420 2420
                 break;
2421 2421
             case 'paidcourses':
2422
-                $html .= $before_html .  __( 'Paid Courses', 'woothemes-sensei' ) . $after_html;
2422
+                $html .= $before_html.__('Paid Courses', 'woothemes-sensei').$after_html;
2423 2423
                 break;
2424 2424
             default:
2425
-                $html .= $before_html . __( 'Courses', 'woothemes-sensei' ) . $after_html;
2425
+                $html .= $before_html.__('Courses', 'woothemes-sensei').$after_html;
2426 2426
                 break;
2427 2427
         } // End Switch Statement
2428 2428
 
2429
-        echo apply_filters( 'course_archive_title', $html );
2429
+        echo apply_filters('course_archive_title', $html);
2430 2430
 
2431 2431
     }//course_archive_header
2432 2432
 
@@ -2440,9 +2440,9 @@  discard block
 block discarded – undo
2440 2440
      * @param string $content
2441 2441
      * @return string $content or $excerpt
2442 2442
      */
2443
-    public static function single_course_content( $content ){
2443
+    public static function single_course_content($content) {
2444 2444
 
2445
-        if( ! is_singular('course') ){
2445
+        if ( ! is_singular('course')) {
2446 2446
 
2447 2447
             return $content;
2448 2448
 
@@ -2451,21 +2451,21 @@  discard block
 block discarded – undo
2451 2451
         // Content Access Permissions
2452 2452
         $access_permission = false;
2453 2453
 
2454
-        if ( ! Sensei()->settings->get('access_permission')  || sensei_all_access() ) {
2454
+        if ( ! Sensei()->settings->get('access_permission') || sensei_all_access()) {
2455 2455
 
2456 2456
             $access_permission = true;
2457 2457
 
2458 2458
         } // End If Statement
2459 2459
 
2460 2460
         // Check if the user is taking the course
2461
-        $is_user_taking_course = Sensei_Utils::user_started_course( get_the_ID(), get_current_user_id() );
2461
+        $is_user_taking_course = Sensei_Utils::user_started_course(get_the_ID(), get_current_user_id());
2462 2462
 
2463
-        if(Sensei_WC::is_woocommerce_active()) {
2463
+        if (Sensei_WC::is_woocommerce_active()) {
2464 2464
 
2465
-            $wc_post_id = get_post_meta( get_the_ID(), '_course_woocommerce_product', true );
2466
-            $product = Sensei()->sensei_get_woocommerce_product_object( $wc_post_id );
2465
+            $wc_post_id = get_post_meta(get_the_ID(), '_course_woocommerce_product', true);
2466
+            $product = Sensei()->sensei_get_woocommerce_product_object($wc_post_id);
2467 2467
 
2468
-            $has_product_attached = isset ( $product ) && is_object ( $product );
2468
+            $has_product_attached = isset ($product) && is_object($product);
2469 2469
 
2470 2470
         } else {
2471 2471
 
@@ -2473,15 +2473,15 @@  discard block
 block discarded – undo
2473 2473
 
2474 2474
         }
2475 2475
 
2476
-        if ( ( is_user_logged_in() && $is_user_taking_course )
2477
-            || ( $access_permission && !$has_product_attached)
2478
-            || 'full' == Sensei()->settings->get( 'course_single_content_display' ) ) {
2476
+        if ((is_user_logged_in() && $is_user_taking_course)
2477
+            || ($access_permission && ! $has_product_attached)
2478
+            || 'full' == Sensei()->settings->get('course_single_content_display')) {
2479 2479
 
2480 2480
             return $content;
2481 2481
 
2482 2482
         } else {
2483 2483
 
2484
-            return '<p class="course-excerpt">' . get_post(  get_the_ID() )->post_excerpt . '</p>';
2484
+            return '<p class="course-excerpt">'.get_post(get_the_ID())->post_excerpt.'</p>';
2485 2485
 
2486 2486
         }
2487 2487
 
@@ -2492,14 +2492,14 @@  discard block
 block discarded – undo
2492 2492
      *
2493 2493
      * @since 1.9.0
2494 2494
      */
2495
-    public static function the_course_lessons_title(){
2495
+    public static function the_course_lessons_title() {
2496 2496
         global $post;
2497
-        $none_module_lessons = Sensei()->modules->get_none_module_lessons( $post->ID  );
2498
-        $course_lessons = Sensei()->course->course_lessons( $post->ID );
2497
+        $none_module_lessons = Sensei()->modules->get_none_module_lessons($post->ID);
2498
+        $course_lessons = Sensei()->course->course_lessons($post->ID);
2499 2499
 
2500 2500
         // title should be Other Lessons if there are lessons belonging to models.
2501 2501
         $title = __('Other Lessons', 'woothemes-sensei');
2502
-        if( count( $course_lessons ) == count( $none_module_lessons )  ){
2502
+        if (count($course_lessons) == count($none_module_lessons)) {
2503 2503
 
2504 2504
             $title = __('Lessons', 'woothemes-sensei');
2505 2505
 
@@ -2508,7 +2508,7 @@  discard block
 block discarded – undo
2508 2508
         /**
2509 2509
          * hook document in class-woothemes-sensei-message.php
2510 2510
          */
2511
-        $title = apply_filters( 'sensei_single_title', $title, $post->post_type );
2511
+        $title = apply_filters('sensei_single_title', $title, $post->post_type);
2512 2512
 
2513 2513
         ob_start(); // start capturing the following output.
2514 2514
 
@@ -2527,7 +2527,7 @@  discard block
 block discarded – undo
2527 2527
          * @since 1.9.0
2528 2528
          * @param string $lessons_title_html
2529 2529
          */
2530
-        echo apply_filters('the_course_lessons_title', ob_get_clean() ); // output and filter the captured output and stop capturing.
2530
+        echo apply_filters('the_course_lessons_title', ob_get_clean()); // output and filter the captured output and stop capturing.
2531 2531
 
2532 2532
     }// end the_course_lessons_title
2533 2533
 
@@ -2542,13 +2542,13 @@  discard block
 block discarded – undo
2542 2542
      * @since 1.9.0
2543 2543
      * @global $wp_query
2544 2544
      */
2545
-    public static function load_single_course_lessons_query(){
2545
+    public static function load_single_course_lessons_query() {
2546 2546
 
2547 2547
         global $post, $wp_query;
2548 2548
 
2549 2549
         $course_id = $post->ID;
2550 2550
 
2551
-        if( 'course' != get_post_type( $course_id ) ){
2551
+        if ('course' != get_post_type($course_id)) {
2552 2552
             return;
2553 2553
         }
2554 2554
 
@@ -2560,7 +2560,7 @@  discard block
 block discarded – undo
2560 2560
             'meta_query'        => array(
2561 2561
                 array(
2562 2562
                     'key' => '_lesson_course',
2563
-                    'value' => intval( $course_id ),
2563
+                    'value' => intval($course_id),
2564 2564
                 ),
2565 2565
             ),
2566 2566
             'post_status'       => 'public',
@@ -2568,17 +2568,17 @@  discard block
 block discarded – undo
2568 2568
         );
2569 2569
 
2570 2570
         // Exclude lessons belonging to modules as they are queried along with the modules.
2571
-        $modules = Sensei()->modules->get_course_modules( $course_id );
2572
-        if( !is_wp_error( $modules ) && ! empty( $modules ) && is_array( $modules ) ){
2571
+        $modules = Sensei()->modules->get_course_modules($course_id);
2572
+        if ( ! is_wp_error($modules) && ! empty($modules) && is_array($modules)) {
2573 2573
 
2574 2574
             $terms_ids = array();
2575
-            foreach( $modules as $term ){
2575
+            foreach ($modules as $term) {
2576 2576
 
2577 2577
                 $terms_ids[] = $term->term_id;
2578 2578
 
2579 2579
             }
2580 2580
 
2581
-            $course_lesson_query_args[ 'tax_query'] = array(
2581
+            $course_lesson_query_args['tax_query'] = array(
2582 2582
                 array(
2583 2583
                     'taxonomy' => 'module',
2584 2584
                     'field'    => 'id',
@@ -2588,7 +2588,7 @@  discard block
 block discarded – undo
2588 2588
             );
2589 2589
         }
2590 2590
 
2591
-        $wp_query = new WP_Query( $course_lesson_query_args );
2591
+        $wp_query = new WP_Query($course_lesson_query_args);
2592 2592
 
2593 2593
     }// load_single_course_lessons
2594 2594
 
@@ -2599,16 +2599,16 @@  discard block
 block discarded – undo
2599 2599
      *
2600 2600
      * @param $post_id
2601 2601
      */
2602
-    public static function flush_rewrite_rules( $post_id ){
2602
+    public static function flush_rewrite_rules($post_id) {
2603 2603
 
2604
-        if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE){
2604
+        if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
2605 2605
 
2606 2606
             return;
2607 2607
 
2608 2608
         }
2609 2609
 
2610 2610
 
2611
-        if( 'course' == get_post_type( $post_id )  ){
2611
+        if ('course' == get_post_type($post_id)) {
2612 2612
 
2613 2613
             Sensei()->initiate_rewrite_rules_flush();
2614 2614
 
@@ -2624,10 +2624,10 @@  discard block
 block discarded – undo
2624 2624
      * @param $excerpt
2625 2625
      * @return string
2626 2626
      */
2627
-    public static function full_content_excerpt_override( $excerpt ){
2627
+    public static function full_content_excerpt_override($excerpt) {
2628 2628
 
2629
-        if (   is_singular('course')  &&
2630
-                'full' == Sensei()->settings->get( 'course_single_content_display' ) ){
2629
+        if (is_singular('course') &&
2630
+                'full' == Sensei()->settings->get('course_single_content_display')) {
2631 2631
 
2632 2632
             return get_the_content();
2633 2633
 
@@ -2644,60 +2644,60 @@  discard block
 block discarded – undo
2644 2644
      *
2645 2645
      * @since 1.9.0
2646 2646
      */
2647
-    public static function the_course_enrolment_actions(){
2647
+    public static function the_course_enrolment_actions() {
2648 2648
         ?>
2649 2649
         <section class="course-meta course-enrolment">
2650 2650
         <?php
2651 2651
         global  $post, $current_user;
2652
-        $is_user_taking_course = Sensei_Utils::user_started_course( $post->ID, $current_user->ID );
2653
-        if ( is_user_logged_in() && ! $is_user_taking_course ) {
2652
+        $is_user_taking_course = Sensei_Utils::user_started_course($post->ID, $current_user->ID);
2653
+        if (is_user_logged_in() && ! $is_user_taking_course) {
2654 2654
 
2655 2655
             // Get the product ID
2656
-            $wc_post_id = absint( get_post_meta( $post->ID, '_course_woocommerce_product', true ) );
2656
+            $wc_post_id = absint(get_post_meta($post->ID, '_course_woocommerce_product', true));
2657 2657
 
2658 2658
             // Check for woocommerce
2659
-            if ( Sensei_WC::is_woocommerce_active() && ( 0 < intval( $wc_post_id ) ) ) {
2659
+            if (Sensei_WC::is_woocommerce_active() && (0 < intval($wc_post_id))) {
2660 2660
                 sensei_wc_add_to_cart($post->ID);
2661 2661
             } else {
2662 2662
                 sensei_start_course_form($post->ID);
2663 2663
             } // End If Statement
2664 2664
 
2665
-        } elseif ( is_user_logged_in() ) {
2665
+        } elseif (is_user_logged_in()) {
2666 2666
 
2667 2667
             // Check if course is completed
2668
-            $user_course_status = Sensei_Utils::user_course_status( $post->ID, $current_user->ID );
2669
-            $completed_course = Sensei_Utils::user_completed_course( $user_course_status );
2668
+            $user_course_status = Sensei_Utils::user_course_status($post->ID, $current_user->ID);
2669
+            $completed_course = Sensei_Utils::user_completed_course($user_course_status);
2670 2670
             // Success message
2671
-            if ( $completed_course ) { ?>
2672
-                <div class="status completed"><?php  _e( 'Completed', 'woothemes-sensei' ); ?></div>
2671
+            if ($completed_course) { ?>
2672
+                <div class="status completed"><?php  _e('Completed', 'woothemes-sensei'); ?></div>
2673 2673
                 <?php
2674
-                $has_quizzes = Sensei()->course->course_quizzes( $post->ID, true );
2675
-                if( has_filter( 'sensei_results_links' ) || $has_quizzes ) { ?>
2674
+                $has_quizzes = Sensei()->course->course_quizzes($post->ID, true);
2675
+                if (has_filter('sensei_results_links') || $has_quizzes) { ?>
2676 2676
                     <p class="sensei-results-links">
2677 2677
                         <?php
2678 2678
                         $results_link = '';
2679
-                        if( $has_quizzes ) {
2680
-                            $results_link = '<a class="view-results" href="' . Sensei()->course_results->get_permalink( $post->ID ) . '">' .  __( 'View results', 'woothemes-sensei' ) . '</a>';
2679
+                        if ($has_quizzes) {
2680
+                            $results_link = '<a class="view-results" href="'.Sensei()->course_results->get_permalink($post->ID).'">'.__('View results', 'woothemes-sensei').'</a>';
2681 2681
                         }
2682
-                        $results_link = apply_filters( 'sensei_results_links', $results_link );
2682
+                        $results_link = apply_filters('sensei_results_links', $results_link);
2683 2683
                         echo $results_link;
2684 2684
                         ?></p>
2685 2685
                 <?php } ?>
2686 2686
             <?php } else { ?>
2687
-                <div class="status in-progress"><?php echo __( 'In Progress', 'woothemes-sensei' ); ?></div>
2687
+                <div class="status in-progress"><?php echo __('In Progress', 'woothemes-sensei'); ?></div>
2688 2688
             <?php }
2689 2689
 
2690 2690
         } else {
2691 2691
             // Get the product ID
2692
-            $wc_post_id = absint( get_post_meta( $post->ID, '_course_woocommerce_product', true ) );
2692
+            $wc_post_id = absint(get_post_meta($post->ID, '_course_woocommerce_product', true));
2693 2693
             // Check for woocommerce
2694
-            if ( Sensei_WC::is_woocommerce_active() && ( 0 < intval( $wc_post_id ) ) ) {
2694
+            if (Sensei_WC::is_woocommerce_active() && (0 < intval($wc_post_id))) {
2695 2695
 
2696 2696
                 sensei_wc_add_to_cart($post->ID);
2697 2697
 
2698 2698
             } else {
2699 2699
 
2700
-                if( get_option( 'users_can_register') ) {
2700
+                if (get_option('users_can_register')) {
2701 2701
 
2702 2702
 
2703 2703
                     $my_courses_page_id = '';
@@ -2713,24 +2713,24 @@  discard block
 block discarded – undo
2713 2713
                     $wp_register_link = apply_filters('sensei_use_wp_register_link', false);
2714 2714
 
2715 2715
                     $settings = Sensei()->settings->get_settings();
2716
-                    if( isset( $settings[ 'my_course_page' ] )
2717
-                        && 0 < intval( $settings[ 'my_course_page' ] ) ){
2716
+                    if (isset($settings['my_course_page'])
2717
+                        && 0 < intval($settings['my_course_page'])) {
2718 2718
 
2719
-                        $my_courses_page_id = $settings[ 'my_course_page' ];
2719
+                        $my_courses_page_id = $settings['my_course_page'];
2720 2720
 
2721 2721
                     }
2722 2722
 
2723 2723
                     // If a My Courses page was set in Settings, and 'sensei_use_wp_register_link'
2724 2724
                     // is false, link to My Courses. If not, link to default WordPress registration page.
2725
-                    if( !empty( $my_courses_page_id ) && $my_courses_page_id && !$wp_register_link){
2725
+                    if ( ! empty($my_courses_page_id) && $my_courses_page_id && ! $wp_register_link) {
2726 2726
 
2727
-                        $my_courses_url = get_permalink( $my_courses_page_id  );
2728
-                        $register_link = '<a href="'.$my_courses_url. '">' . __('Register', 'woothemes-sensei') .'</a>';
2729
-                        echo '<div class="status register">' . $register_link . '</div>' ;
2727
+                        $my_courses_url = get_permalink($my_courses_page_id);
2728
+                        $register_link = '<a href="'.$my_courses_url.'">'.__('Register', 'woothemes-sensei').'</a>';
2729
+                        echo '<div class="status register">'.$register_link.'</div>';
2730 2730
 
2731
-                    } else{
2731
+                    } else {
2732 2732
 
2733
-                        wp_register( '<div class="status register">', '</div>' );
2733
+                        wp_register('<div class="status register">', '</div>');
2734 2734
 
2735 2735
                     }
2736 2736
 
@@ -2749,19 +2749,19 @@  discard block
 block discarded – undo
2749 2749
      *
2750 2750
      * @since 1.9.0
2751 2751
      */
2752
-    public static function the_course_video(){
2752
+    public static function the_course_video() {
2753 2753
 
2754 2754
         global $post;
2755 2755
         // Get the meta info
2756
-        $course_video_embed = get_post_meta( $post->ID, '_course_video_embed', true );
2756
+        $course_video_embed = get_post_meta($post->ID, '_course_video_embed', true);
2757 2757
 
2758
-        if ( 'http' == substr( $course_video_embed, 0, 4) ) {
2758
+        if ('http' == substr($course_video_embed, 0, 4)) {
2759 2759
 
2760
-            $course_video_embed = wp_oembed_get( esc_url( $course_video_embed ) );
2760
+            $course_video_embed = wp_oembed_get(esc_url($course_video_embed));
2761 2761
 
2762 2762
         } // End If Statement
2763 2763
 
2764
-        if ( '' != $course_video_embed ) { ?>
2764
+        if ('' != $course_video_embed) { ?>
2765 2765
 
2766 2766
             <div class="course-video">
2767 2767
                 <?php echo html_entity_decode($course_video_embed); ?>
@@ -2776,7 +2776,7 @@  discard block
 block discarded – undo
2776 2776
      * @global $post
2777 2777
      * @since 1.9.0
2778 2778
      */
2779
-    public static function the_title(){
2779
+    public static function the_title() {
2780 2780
 
2781 2781
         global $post;
2782 2782
 
@@ -2789,7 +2789,7 @@  discard block
 block discarded – undo
2789 2789
                 /**
2790 2790
                  * Filter documented in class-sensei-messages.php the_title
2791 2791
                  */
2792
-                echo apply_filters( 'sensei_single_title', get_the_title( $post ), $post->post_type );
2792
+                echo apply_filters('sensei_single_title', get_the_title($post), $post->post_type);
2793 2793
                 ?>
2794 2794
 
2795 2795
             </h1>
@@ -2805,30 +2805,30 @@  discard block
 block discarded – undo
2805 2805
      *
2806 2806
      * @since 1.9.0
2807 2807
      */
2808
-    public static function course_category_title(){
2808
+    public static function course_category_title() {
2809 2809
 
2810
-        if( ! is_tax( 'course-category' ) ){
2810
+        if ( ! is_tax('course-category')) {
2811 2811
             return;
2812 2812
         }
2813 2813
 
2814 2814
         $category_slug = get_query_var('course-category');
2815
-        $term  = get_term_by('slug',$category_slug,'course-category');
2815
+        $term = get_term_by('slug', $category_slug, 'course-category');
2816 2816
 
2817
-        if( ! empty($term) ){
2817
+        if ( ! empty($term)) {
2818 2818
 
2819 2819
             $title = $term->name;
2820 2820
 
2821
-        }else{
2821
+        } else {
2822 2822
 
2823 2823
             $title = 'Course Category';
2824 2824
 
2825 2825
         }
2826 2826
 
2827 2827
         $html = '<h2 class="sensei-category-title">';
2828
-        $html .= __('Category') . ' ' . $title;
2828
+        $html .= __('Category').' '.$title;
2829 2829
         $html .= '</h2>';
2830 2830
 
2831
-        echo apply_filters( 'course_category_title', $html , $term->term_id );
2831
+        echo apply_filters('course_category_title', $html, $term->term_id);
2832 2832
 
2833 2833
     }// course_category_title
2834 2834
 
@@ -2841,16 +2841,16 @@  discard block
 block discarded – undo
2841 2841
      * @param WP_Query $query
2842 2842
      * @return WP_Query
2843 2843
      */
2844
-    public static function alter_course_category_order( $query ){
2844
+    public static function alter_course_category_order($query) {
2845 2845
 
2846
-        if( ! is_tax( 'course-category' ) || ! $query->is_main_query() ){
2846
+        if ( ! is_tax('course-category') || ! $query->is_main_query()) {
2847 2847
             return $query;
2848 2848
         }
2849 2849
 
2850
-        $order = get_option( 'sensei_course_order', '' );
2851
-        if( !empty( $order )  ){
2852
-            $query->set('orderby', 'menu_order' );
2853
-            $query->set('order', 'ASC' );
2850
+        $order = get_option('sensei_course_order', '');
2851
+        if ( ! empty($order)) {
2852
+            $query->set('orderby', 'menu_order');
2853
+            $query->set('order', 'ASC');
2854 2854
         }
2855 2855
 
2856 2856
         return $query;
@@ -2871,7 +2871,7 @@  discard block
 block discarded – undo
2871 2871
      *
2872 2872
      * @return array
2873 2873
      */
2874
-    public static function get_default_query_args(){
2874
+    public static function get_default_query_args() {
2875 2875
         return array(
2876 2876
             'post_type' 		=> 'course',
2877 2877
             'posts_per_page' 		=> 1000,
@@ -2889,14 +2889,14 @@  discard block
 block discarded – undo
2889 2889
      * @param $course_id
2890 2890
      * @return bool
2891 2891
      */
2892
-    public static function is_prerequisite_complete( $course_id ){
2892
+    public static function is_prerequisite_complete($course_id) {
2893 2893
 
2894
-        $course_prerequisite_id = get_post_meta( $course_id, '_course_prerequisite', true );
2894
+        $course_prerequisite_id = get_post_meta($course_id, '_course_prerequisite', true);
2895 2895
 
2896 2896
         // if it has a pre requisite course check it
2897
-        if( ! empty(  $course_prerequisite_id ) ){
2897
+        if ( ! empty($course_prerequisite_id)) {
2898 2898
 
2899
-            return Sensei_Utils::user_completed_course( $course_prerequisite_id, get_current_user_id() );
2899
+            return Sensei_Utils::user_completed_course($course_prerequisite_id, get_current_user_id());
2900 2900
 
2901 2901
         }
2902 2902
 
@@ -2912,4 +2912,4 @@  discard block
 block discarded – undo
2912 2912
  * for backward compatibility
2913 2913
  * @since 1.9.0
2914 2914
  */
2915
-class WooThemes_Sensei_Course extends Sensei_Course{}
2915
+class WooThemes_Sensei_Course extends Sensei_Course {}
Please login to merge, or discard this patch.
includes/class-sensei-messages.php 1 patch
Indentation   +222 added lines, -222 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
 	 * @since  1.6.0
23 23
 	 */
24 24
 	public function __construct () {
25
-        $this->token = 'messages';
25
+		$this->token = 'messages';
26 26
 		$this->post_type = 'sensei_message';
27 27
 		$this->meta_fields = array( 'sender', 'receiver' );
28 28
 
@@ -37,11 +37,11 @@  discard block
 block discarded – undo
37 37
 		// Monitor when new reply is posted
38 38
 		add_action( 'comment_post', array( $this, 'message_reply_received' ), 10, 1 );
39 39
 
40
-        // Block WordPress from sending comment update emails for the messages post type
41
-        add_filter('comment_notification_recipients', array( $this, 'stop_wp_comment_emails' ),  20, 2  );
40
+		// Block WordPress from sending comment update emails for the messages post type
41
+		add_filter('comment_notification_recipients', array( $this, 'stop_wp_comment_emails' ),  20, 2  );
42 42
 
43
-        // Block WordPress from sending comment moderator emails on the sensei messages post types
44
-        add_filter('comment_moderation_recipients', array( $this, 'stop_wp_comment_emails' ),  20, 2  );
43
+		// Block WordPress from sending comment moderator emails on the sensei messages post types
44
+		add_filter('comment_moderation_recipients', array( $this, 'stop_wp_comment_emails' ),  20, 2  );
45 45
 
46 46
 		// Process saving of message posts
47 47
 		add_action( 'save_post', array( $this, 'save_message' ) );
@@ -49,20 +49,20 @@  discard block
 block discarded – undo
49 49
 		// Add message links to courses & lessons
50 50
 		add_action( 'sensei_single_course_content_inside_before', array( $this, 'send_message_link' ), 35 );
51 51
 
52
-        // add message link to lesson
53
-        add_action( 'sensei_single_lesson_content_inside_before', array( $this, 'send_message_link' ), 30, 2 );
52
+		// add message link to lesson
53
+		add_action( 'sensei_single_lesson_content_inside_before', array( $this, 'send_message_link' ), 30, 2 );
54 54
 
55
-        // add message link to lesson
56
-        add_action( 'sensei_single_quiz_questions_before', array( $this, 'send_message_link' ), 10, 2 );
55
+		// add message link to lesson
56
+		add_action( 'sensei_single_quiz_questions_before', array( $this, 'send_message_link' ), 10, 2 );
57 57
 
58 58
 		// Hide messages and replies from users who do not have access
59
-        add_action( 'template_redirect', array( $this, 'message_login' ), 10, 1 );
60
-        add_action( 'pre_get_posts', array( $this, 'message_list' ), 10, 1 );
61
-        add_filter( 'the_title', array( $this, 'message_title' ), 10, 2 );
62
-        add_filter( 'the_content', array( $this, 'message_content' ), 10, 1 );
63
-        add_filter( 'comments_array', array( $this, 'message_replies' ), 100, 1 );
64
-        add_filter( 'get_comments_number', array( $this, 'message_reply_count' ), 100, 2 );
65
-        add_filter( 'comments_open', array( $this, 'message_replies_open' ), 100, 2 );
59
+		add_action( 'template_redirect', array( $this, 'message_login' ), 10, 1 );
60
+		add_action( 'pre_get_posts', array( $this, 'message_list' ), 10, 1 );
61
+		add_filter( 'the_title', array( $this, 'message_title' ), 10, 2 );
62
+		add_filter( 'the_content', array( $this, 'message_content' ), 10, 1 );
63
+		add_filter( 'comments_array', array( $this, 'message_replies' ), 100, 1 );
64
+		add_filter( 'get_comments_number', array( $this, 'message_reply_count' ), 100, 2 );
65
+		add_filter( 'comments_open', array( $this, 'message_replies_open' ), 100, 2 );
66 66
 	} // End __construct()
67 67
 
68 68
 	public function add_menu_item() {
@@ -163,8 +163,8 @@  discard block
 block discarded – undo
163 163
 	public function send_message_link( $post_id = 0, $user_id = 0 ) {
164 164
 		global  $post;
165 165
 
166
-        // only show the link for the allowed post types:
167
-        $allowed_post_types = array('lesson', 'course', 'quiz');
166
+		// only show the link for the allowed post types:
167
+		$allowed_post_types = array('lesson', 'course', 'quiz');
168 168
 		if ( ! in_array( get_post_type() , $allowed_post_types ) ) {
169 169
 
170 170
 			return;
@@ -187,8 +187,8 @@  discard block
 block discarded – undo
187 187
 				} elseif( 'course' == $post->post_type ) {
188 188
 					$contact_button_text = __( 'Contact Course Teacher', 'woothemes-sensei' );
189 189
 				}else{
190
-                    $contact_button_text = __( 'Contact Teacher', 'woothemes-sensei' );
191
-                }
190
+					$contact_button_text = __( 'Contact Teacher', 'woothemes-sensei' );
191
+				}
192 192
 
193 193
 				$html .= '<p><a class="button send-message-button" href="' . esc_url($href) . '#private_message">' . $contact_button_text . '</a></p>';
194 194
 			}
@@ -213,19 +213,19 @@  discard block
 block discarded – undo
213 213
 
214 214
 		if( ! isset( $post->ID ) ) return $html;
215 215
 
216
-        //confirm private message
217
-        $confirmation = '';
218
-        if( isset( $_GET[ 'send' ] ) && 'complete' == $_GET[ 'send' ] ) {
216
+		//confirm private message
217
+		$confirmation = '';
218
+		if( isset( $_GET[ 'send' ] ) && 'complete' == $_GET[ 'send' ] ) {
219 219
 
220
-            $confirmation_message = __('Your private message has been sent.', 'woothemes-sensei');
221
-            $confirmation = '<div class="sensei-message tick">' . $confirmation_message . '</div>';
220
+			$confirmation_message = __('Your private message has been sent.', 'woothemes-sensei');
221
+			$confirmation = '<div class="sensei-message tick">' . $confirmation_message . '</div>';
222 222
 
223
-        }
223
+		}
224 224
 
225 225
 		$html .= '<h3 id="private_message">' . __( 'Send Private Message', 'woothemes-sensei' ) . '</h3>';
226
-        $html .= '<p>';
227
-        $html .=  $confirmation;
228
-        $html .= '</p>';
226
+		$html .= '<p>';
227
+		$html .=  $confirmation;
228
+		$html .= '</p>';
229 229
 		$html .= '<form name="contact-teacher" action="" method="post" class="contact-teacher">';
230 230
 			$html .= '<p class="form-row form-row-wide">';
231 231
 				$html .= '<textarea name="contact_message" placeholder="' . __( 'Enter your private message.', 'woothemes-sensei' ) . '"></textarea>';
@@ -256,7 +256,7 @@  discard block
 block discarded – undo
256 256
 	public function message_reply_received( $comment_id = 0 ) {
257 257
 
258 258
 		// Get comment object
259
-    	$comment = get_comment( $comment_id );
259
+		$comment = get_comment( $comment_id );
260 260
 
261 261
 		if( is_null( $comment ) ) return;
262 262
 
@@ -271,87 +271,87 @@  discard block
 block discarded – undo
271 271
 		do_action( 'sensei_private_message_reply', $comment, $message );
272 272
 	}
273 273
 
274
-    /**
275
-     * This function stops WordPress from sending the default comment update emails.
276
-     *
277
-     * This function is hooked into comment_notification_recipients. It will simply return
278
-     * an empty array if the current passed in comment is on a message post type.
279
-     *
280
-     * @param array $emails
281
-     * @param int $comment_id
282
-     * @return array;
283
-     */
284
-    public function stop_wp_comment_emails( $emails , $comment_id ){
274
+	/**
275
+	 * This function stops WordPress from sending the default comment update emails.
276
+	 *
277
+	 * This function is hooked into comment_notification_recipients. It will simply return
278
+	 * an empty array if the current passed in comment is on a message post type.
279
+	 *
280
+	 * @param array $emails
281
+	 * @param int $comment_id
282
+	 * @return array;
283
+	 */
284
+	public function stop_wp_comment_emails( $emails , $comment_id ){
285 285
 
286
-        $comment = get_comment( $comment_id );
287
-        if( isset( $comment->comment_post_ID ) &&
288
-            'sensei_message' == get_post_type( $comment->comment_post_ID )  ){
286
+		$comment = get_comment( $comment_id );
287
+		if( isset( $comment->comment_post_ID ) &&
288
+			'sensei_message' == get_post_type( $comment->comment_post_ID )  ){
289 289
 
290
-            // empty the emails array to ensure no emails are sent for this comment
291
-            $emails = array();
290
+			// empty the emails array to ensure no emails are sent for this comment
291
+			$emails = array();
292 292
 
293
-        }
294
-        return $emails;
293
+		}
294
+		return $emails;
295 295
 
296
-    }// end stop_wp_comment_emails
296
+	}// end stop_wp_comment_emails
297 297
 
298 298
 	/**
299
-     * Save new message post
300
-     * @param  integer $sender_id   ID of sender
301
-     * @param  integer $receiver_id ID of receiver
302
-     * @param  string  $message     Message content
303
-     * @param  string  $post_id     ID of post related to message
304
-     * @return mixed                Message ID on success, boolean false on failure
305
-     */
306
-    private function save_new_message_post( $sender_id = 0, $receiver_id = 0, $message = '', $post_id = 0 ) {
299
+	 * Save new message post
300
+	 * @param  integer $sender_id   ID of sender
301
+	 * @param  integer $receiver_id ID of receiver
302
+	 * @param  string  $message     Message content
303
+	 * @param  string  $post_id     ID of post related to message
304
+	 * @return mixed                Message ID on success, boolean false on failure
305
+	 */
306
+	private function save_new_message_post( $sender_id = 0, $receiver_id = 0, $message = '', $post_id = 0 ) {
307 307
 
308
-    	$message_id = false;
308
+		$message_id = false;
309 309
 
310
-    	if( $sender_id && $receiver_id && $message && $post_id ) {
310
+		if( $sender_id && $receiver_id && $message && $post_id ) {
311 311
 
312
-    		$title = wp_trim_words( $message, 8, '...' );
312
+			$title = wp_trim_words( $message, 8, '...' );
313 313
 
314
-    		// Set up post data for message
315
-	    	$message_data = array(
316
-	            'post_type'      => $this->post_type,
317
-	            'post_title'     => esc_html( $title ),
318
-	            'post_content'   => esc_html( $message ),
319
-	            'post_status'    => 'publish',
320
-	            'ping_status'    => 'closed',
321
-	            'comment_status' => 'open',
322
-	            'post_excerpt'   => '',
323
-	            'post_author'	 => intval( $sender_id )
324
-	        );
314
+			// Set up post data for message
315
+			$message_data = array(
316
+				'post_type'      => $this->post_type,
317
+				'post_title'     => esc_html( $title ),
318
+				'post_content'   => esc_html( $message ),
319
+				'post_status'    => 'publish',
320
+				'ping_status'    => 'closed',
321
+				'comment_status' => 'open',
322
+				'post_excerpt'   => '',
323
+				'post_author'	 => intval( $sender_id )
324
+			);
325 325
 
326
-	    	// Insert post
327
-	        $message_id = wp_insert_post( $message_data );
326
+			// Insert post
327
+			$message_id = wp_insert_post( $message_data );
328 328
 
329
-	        if( ! is_wp_error( $message_id ) ) {
329
+			if( ! is_wp_error( $message_id ) ) {
330 330
 
331
-	        	// Add sender to message meta
332
-	        	$sender = get_userdata( $sender_id );
333
-	        	add_post_meta( $message_id, '_sender', $sender->user_login );
331
+				// Add sender to message meta
332
+				$sender = get_userdata( $sender_id );
333
+				add_post_meta( $message_id, '_sender', $sender->user_login );
334 334
 
335
-	        	// Add receiver to message meta
336
-	        	$receiver = get_userdata( $receiver_id );
337
-		        add_post_meta( $message_id, '_receiver', $receiver->user_login );
335
+				// Add receiver to message meta
336
+				$receiver = get_userdata( $receiver_id );
337
+				add_post_meta( $message_id, '_receiver', $receiver->user_login );
338 338
 
339
-		        // Add lesson/course ID to message meta
340
-		        $post = get_post( $post_id );
341
-		        add_post_meta( $message_id, '_posttype', $post->post_type );
342
-		        add_post_meta( $message_id, '_post', $post->ID );
339
+				// Add lesson/course ID to message meta
340
+				$post = get_post( $post_id );
341
+				add_post_meta( $message_id, '_posttype', $post->post_type );
342
+				add_post_meta( $message_id, '_post', $post->ID );
343 343
 
344
-		        do_action( 'sensei_new_private_message', $message_id );
344
+				do_action( 'sensei_new_private_message', $message_id );
345 345
 
346
-		    } else {
346
+			} else {
347 347
 
348
-		    	$message_id = false;
348
+				$message_id = false;
349 349
 
350
-		    }
351
-	    }
350
+			}
351
+		}
352 352
 
353
-	    return $message_id;
354
-    }
353
+		return $message_id;
354
+	}
355 355
 
356 356
 	/**
357 357
 	 * Check if user has access to view this message
@@ -390,56 +390,56 @@  discard block
 block discarded – undo
390 390
 		remove_meta_box('commentstatusdiv', $this->post_type, 'normal');
391 391
 	}
392 392
 
393
-    /**
394
-     * Function message_login()
395
-     *
396
-     * Only show /messages/* to logged in users, and
397
-     * redirect logged out users to wp-login.php
398
-     *
399
-     * @since 1.9.0
400
-     * @param  none
401
-     * @return void
402
-     */
393
+	/**
394
+	 * Function message_login()
395
+	 *
396
+	 * Only show /messages/* to logged in users, and
397
+	 * redirect logged out users to wp-login.php
398
+	 *
399
+	 * @since 1.9.0
400
+	 * @param  none
401
+	 * @return void
402
+	 */
403 403
 
404
-    public function message_login () {
404
+	public function message_login () {
405 405
 
406
-        if ( is_user_logged_in() ) {
406
+		if ( is_user_logged_in() ) {
407 407
 
408
-            return;
409
-        }
408
+			return;
409
+		}
410 410
 
411
-        $settings = Sensei()->settings->get_settings();
412
-        if( isset( $settings[ 'my_course_page' ] )
413
-            && 0 < intval( $settings[ 'my_course_page' ] ) ){
411
+		$settings = Sensei()->settings->get_settings();
412
+		if( isset( $settings[ 'my_course_page' ] )
413
+			&& 0 < intval( $settings[ 'my_course_page' ] ) ){
414 414
 
415
-            $my_courses_page_id = $settings[ 'my_course_page' ];
415
+			$my_courses_page_id = $settings[ 'my_course_page' ];
416 416
 
417
-            $my_courses_url = get_permalink($my_courses_page_id);
417
+			$my_courses_url = get_permalink($my_courses_page_id);
418 418
 
419
-        }
419
+		}
420 420
 
421
-        if ( is_single() && is_singular( $this->post_type )
422
-            || is_post_type_archive( $this->post_type ) ) {
421
+		if ( is_single() && is_singular( $this->post_type )
422
+			|| is_post_type_archive( $this->post_type ) ) {
423 423
 
424
-            if ( isset($my_courses_url) ) {
424
+			if ( isset($my_courses_url) ) {
425 425
 
426
-                wp_redirect($my_courses_url, 303);
427
-                exit;
428
-            }
426
+				wp_redirect($my_courses_url, 303);
427
+				exit;
428
+			}
429 429
 
430
-            else {
430
+			else {
431 431
 
432
-                wp_redirect(home_url('/wp-login.php'), 303);
433
-                exit;
434
-            }
432
+				wp_redirect(home_url('/wp-login.php'), 303);
433
+				exit;
434
+			}
435 435
 
436
-        }
437
-    }
436
+		}
437
+	}
438 438
 	/**
439
-     * Only show allowed messages in messages archive
440
-     * @param  array $query Original query
441
-     * @return void
442
-     */
439
+	 * Only show allowed messages in messages archive
440
+	 * @param  array $query Original query
441
+	 * @return void
442
+	 */
443 443
 	public function message_list( $query ) {
444 444
 		global $current_user;
445 445
 
@@ -556,17 +556,17 @@  discard block
 block discarded – undo
556 556
 		return $open;
557 557
 	}
558 558
 
559
-    /**
560
-     * Print outthe message was sent by $sender_username on the
561
-     *
562
-     * @since 1.9.0
563
-     */
564
-    public static function the_message_sent_by_title(){
559
+	/**
560
+	 * Print outthe message was sent by $sender_username on the
561
+	 *
562
+	 * @since 1.9.0
563
+	 */
564
+	public static function the_message_sent_by_title(){
565 565
 
566
-        $sender_username = get_post_meta( get_the_ID() , '_sender', true );
567
-        if( $sender_username ) {
566
+		$sender_username = get_post_meta( get_the_ID() , '_sender', true );
567
+		if( $sender_username ) {
568 568
 
569
-            $sender = get_user_by( 'login', $sender_username ); ?>
569
+			$sender = get_user_by( 'login', $sender_username ); ?>
570 570
 
571 571
             <p class="message-meta">
572 572
                 <small>
@@ -578,41 +578,41 @@  discard block
 block discarded – undo
578 578
 
579 579
         <?php }
580 580
 
581
-    }
581
+	}
582 582
 
583
-    /**
584
-     * sensei_single_title output for single page title
585
-     * @since  1.1.0
586
-     * @return void
587
-     * @deprecate
588
-     */
589
-    public static function the_title() {
583
+	/**
584
+	 * sensei_single_title output for single page title
585
+	 * @since  1.1.0
586
+	 * @return void
587
+	 * @deprecate
588
+	 */
589
+	public static function the_title() {
590 590
 
591
-        global $post;
591
+		global $post;
592 592
 
593
-        $content_post_id = get_post_meta( $post->ID, '_post', true );
594
-        if( $content_post_id ) {
595
-            $title = sprintf( __( 'Re: %1$s', 'woothemes-sensei' ), '<a href="' . get_permalink( $content_post_id ) . '">' . get_the_title( $content_post_id ) . '</a>' );
596
-        } else {
597
-            $title = get_the_title( $post->ID );
598
-        }
593
+		$content_post_id = get_post_meta( $post->ID, '_post', true );
594
+		if( $content_post_id ) {
595
+			$title = sprintf( __( 'Re: %1$s', 'woothemes-sensei' ), '<a href="' . get_permalink( $content_post_id ) . '">' . get_the_title( $content_post_id ) . '</a>' );
596
+		} else {
597
+			$title = get_the_title( $post->ID );
598
+		}
599 599
 
600
-        ?>
600
+		?>
601 601
         <header>
602 602
 
603 603
             <h1>
604 604
 
605 605
                 <?php
606
-                /**
607
-                 * Filter Sensei single title
608
-                 *
609
-                 * @since 1.8.0
610
-                 * @param string $title
611
-                 * @param string $template
612
-                 * @param string $post_type
613
-                 */
614
-                echo apply_filters( 'sensei_single_title', $title, $post->post_type );
615
-                ?>
606
+				/**
607
+				 * Filter Sensei single title
608
+				 *
609
+				 * @since 1.8.0
610
+				 * @param string $title
611
+				 * @param string $template
612
+				 * @param string $post_type
613
+				 */
614
+				echo apply_filters( 'sensei_single_title', $title, $post->post_type );
615
+				?>
616 616
 
617 617
             </h1>
618 618
 
@@ -620,52 +620,52 @@  discard block
 block discarded – undo
620 620
 
621 621
         <?php
622 622
 
623
-    } // End sensei_single_title()
623
+	} // End sensei_single_title()
624 624
 
625
-    /**
626
-     * Generates the my messages
627
-     * archive header.
628
-     *
629
-     * @since 1.9.0
630
-     *
631
-     * @return string
632
-     */
633
-    public static function the_archive_header( ){
625
+	/**
626
+	 * Generates the my messages
627
+	 * archive header.
628
+	 *
629
+	 * @since 1.9.0
630
+	 *
631
+	 * @return string
632
+	 */
633
+	public static function the_archive_header( ){
634 634
 
635
-        $html = '';
636
-        $html .= '<header class="archive-header"><h1>';
637
-        $html .= __( 'My Messages', 'woothemes-sensei' );
638
-        $html .= '</h1></header>';
635
+		$html = '';
636
+		$html .= '<header class="archive-header"><h1>';
637
+		$html .= __( 'My Messages', 'woothemes-sensei' );
638
+		$html .= '</h1></header>';
639 639
 
640
-        /**
641
-         * Filter the sensei messages archive title.
642
-         * @since 1.0.0
643
-         */
644
-        echo apply_filters( 'sensei_message_archive_title', $html );
640
+		/**
641
+		 * Filter the sensei messages archive title.
642
+		 * @since 1.0.0
643
+		 */
644
+		echo apply_filters( 'sensei_message_archive_title', $html );
645 645
 
646
-    } // get_archive_header()
646
+	} // get_archive_header()
647 647
 
648
-    /**
649
-     * Output the title for a message given the post_id.
650
-     *
651
-     * @since 1.9.0
652
-     * @param $post_id
653
-     */
654
-    public static function the_message_title( $message_post_id ){
648
+	/**
649
+	 * Output the title for a message given the post_id.
650
+	 *
651
+	 * @since 1.9.0
652
+	 * @param $post_id
653
+	 */
654
+	public static function the_message_title( $message_post_id ){
655 655
 
656
-        $content_post_id = get_post_meta( $message_post_id, '_post', true );
656
+		$content_post_id = get_post_meta( $message_post_id, '_post', true );
657 657
 
658
-        if( $content_post_id ) {
658
+		if( $content_post_id ) {
659 659
 
660
-            $title = sprintf( __( 'Re: %1$s', 'woothemes-sensei' ), get_the_title( $content_post_id ) );
660
+			$title = sprintf( __( 'Re: %1$s', 'woothemes-sensei' ), get_the_title( $content_post_id ) );
661 661
 
662
-        } else {
662
+		} else {
663 663
 
664
-            $title = get_the_title( $message_post_id );
664
+			$title = get_the_title( $message_post_id );
665 665
 
666
-        }
666
+		}
667 667
 
668
-        ?>
668
+		?>
669 669
         <h2>
670 670
             <a href="<?php esc_url( get_permalink( $message_post_id ) );?>">
671 671
                 <?php echo  $title; ?>
@@ -674,21 +674,21 @@  discard block
 block discarded – undo
674 674
         </h2>
675 675
 
676 676
         <?php
677
-    } //end the_message_header
677
+	} //end the_message_header
678 678
 
679
-    /**
680
-     * Output the message sender given the post id.
681
-     *
682
-     * @param $message_post_id
683
-     */
684
-    public  static function the_message_sender( $message_post_id ){
679
+	/**
680
+	 * Output the message sender given the post id.
681
+	 *
682
+	 * @param $message_post_id
683
+	 */
684
+	public  static function the_message_sender( $message_post_id ){
685 685
 
686
-        $sender_username = get_post_meta( $message_post_id, '_sender', true );
687
-        $sender = get_user_by( 'login', $sender_username );
686
+		$sender_username = get_post_meta( $message_post_id, '_sender', true );
687
+		$sender = get_user_by( 'login', $sender_username );
688 688
 
689
-        if( $sender_username && $sender instanceof WP_User ) {
690
-            $sender_display_name = sprintf( __( 'Sent by %1$s on %2$s.', 'woothemes-sensei' ), $sender->display_name, get_the_date() );
691
-            ?>
689
+		if( $sender_username && $sender instanceof WP_User ) {
690
+			$sender_display_name = sprintf( __( 'Sent by %1$s on %2$s.', 'woothemes-sensei' ), $sender->display_name, get_the_date() );
691
+			?>
692 692
             <p class="message-meta">
693 693
                 <small>
694 694
                     <em> <?php echo $sender_display_name; ?> </em>
@@ -696,18 +696,18 @@  discard block
 block discarded – undo
696 696
             </p>
697 697
 
698 698
             <?php
699
-        } // end if
700
-
701
-    } // end the_message_archive_sender
702
-
703
-    /**
704
-     * Link to the users my messages page
705
-     *
706
-     * @since 1.9.0
707
-     */
708
-    public static function the_my_messages_link(){
709
-        if( ! Sensei()->settings->get('messages_disable')  ) {
710
-            ?>
699
+		} // end if
700
+
701
+	} // end the_message_archive_sender
702
+
703
+	/**
704
+	 * Link to the users my messages page
705
+	 *
706
+	 * @since 1.9.0
707
+	 */
708
+	public static function the_my_messages_link(){
709
+		if( ! Sensei()->settings->get('messages_disable')  ) {
710
+			?>
711 711
             <p class="my-messages-link-container">
712 712
                 <a class="my-messages-link" href="<?php echo get_post_type_archive_link( 'sensei_message' ); ?>"
713 713
                    title="<?php _e( 'View & reply to private messages sent to your course & lesson teachers.', 'woothemes-sensei' ); ?>">
@@ -715,8 +715,8 @@  discard block
 block discarded – undo
715 715
                 </a>
716 716
             </p>
717 717
             <?php
718
-        }
719
-    }
718
+		}
719
+	}
720 720
 
721 721
 } // End Class
722 722
 
Please login to merge, or discard this patch.
includes/class-sensei-learners-main.php 2 patches
Indentation   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -206,13 +206,13 @@  discard block
 block discarded – undo
206 206
 
207 207
 	/**
208 208
 	 * Generates content for a single row of the table in the user management
209
-     * screen.
210
-     *
209
+	 * screen.
210
+	 *
211 211
 	 * @since  1.7.0
212
-     *
212
+	 *
213 213
 	 * @param object $item The current item
214
-     *
215
-     * @return void
214
+	 *
215
+	 * @return void
216 216
 	 */
217 217
 	protected function get_row_data( $item ) {
218 218
 		global $wp_version;
@@ -220,8 +220,8 @@  discard block
 block discarded – undo
220 220
 		switch ( $this->view ) {
221 221
 			case 'learners' :
222 222
 
223
-                // in this case the item passed in is actually the users activity on course of lesson
224
-                $user_activity = $item;
223
+				// in this case the item passed in is actually the users activity on course of lesson
224
+				$user_activity = $item;
225 225
 				$post_id = false;
226 226
 
227 227
 				if( $this->lesson_id ) {
@@ -240,45 +240,45 @@  discard block
 block discarded – undo
240 240
 
241 241
 				if( 'complete' == $user_activity->comment_approved || 'graded' == $user_activity->comment_approved || 'passed' == $user_activity->comment_approved ) {
242 242
 
243
-                    $status_html = '<span class="graded">' .__( 'Completed', 'woothemes-sensei' ) . '</span>';
243
+					$status_html = '<span class="graded">' .__( 'Completed', 'woothemes-sensei' ) . '</span>';
244 244
 
245 245
 				} else {
246 246
 
247
-                    $status_html = '<span class="in-progress">' . __( 'In Progress', 'woothemes-sensei' ) . '</span>';
247
+					$status_html = '<span class="in-progress">' . __( 'In Progress', 'woothemes-sensei' ) . '</span>';
248 248
 
249 249
 				}
250 250
 
251
-                $title = Sensei_Student::get_full_name( $user_activity->user_id );
251
+				$title = Sensei_Student::get_full_name( $user_activity->user_id );
252 252
 				$a_title = sprintf( __( 'Edit &#8220;%s&#8221;' ), $title );
253 253
 
254
-                // get the learners order for this course if the course was purchased
254
+				// get the learners order for this course if the course was purchased
255 255
 
256
-                $course_order_id_attribute = '';
257
-                if( Sensei_WC::is_woocommerce_active() ){
256
+				$course_order_id_attribute = '';
257
+				if( Sensei_WC::is_woocommerce_active() ){
258 258
 
259
-                    $course_product_order_id = Sensei_WC::get_learner_course_active_order_id( $user_activity->user_id, $post_id  );
259
+					$course_product_order_id = Sensei_WC::get_learner_course_active_order_id( $user_activity->user_id, $post_id  );
260 260
 
261
-                    if( $course_product_order_id ){
261
+					if( $course_product_order_id ){
262 262
 
263
-                        $course_order_id_attribute = ' data-order_id="' . $course_product_order_id . '" ';
263
+						$course_order_id_attribute = ' data-order_id="' . $course_product_order_id . '" ';
264 264
 
265
-                    }
265
+					}
266 266
 
267
-                }
267
+				}
268 268
 
269
-                /**
270
-                 * sensei_learners_main_column_data filter
271
-                 *
272
-                 * This filter runs on the learner management screen for a specific course.
273
-                 * It provides the learner row column details.
274
-                 *
275
-                 * @param array $columns{
276
-                 *   type string $title
277
-                 *   type string $date_started
278
-                 *   type string $course_status (completed, started etc)
279
-                 *   type html $action_buttons
280
-                 * }
281
-                 */
269
+				/**
270
+				 * sensei_learners_main_column_data filter
271
+				 *
272
+				 * This filter runs on the learner management screen for a specific course.
273
+				 * It provides the learner row column details.
274
+				 *
275
+				 * @param array $columns{
276
+				 *   type string $title
277
+				 *   type string $date_started
278
+				 *   type string $course_status (completed, started etc)
279
+				 *   type html $action_buttons
280
+				 * }
281
+				 */
282 282
 				$column_data = apply_filters( 'sensei_learners_main_column_data', array(
283 283
 						'title' => '<strong><a class="row-title" href="' . admin_url( 'user-edit.php?user_id=' . $user_activity->user_id ) . '" title="' . esc_attr( $a_title ) . '">' . $title . '</a></strong>',
284 284
 						'date_started' => get_comment_meta( $user_activity->comment_ID, 'start', true),
@@ -308,7 +308,7 @@  discard block
 block discarded – undo
308 308
 
309 309
 			case 'courses' :
310 310
 			default:
311
-                $course_learners = Sensei_Utils::sensei_check_for_activity( apply_filters( 'sensei_learners_course_learners', array( 'post_id' => $item->ID, 'type' => 'sensei_course_status', 'status' => 'any' ) ) );
311
+				$course_learners = Sensei_Utils::sensei_check_for_activity( apply_filters( 'sensei_learners_course_learners', array( 'post_id' => $item->ID, 'type' => 'sensei_course_status', 'status' => 'any' ) ) );
312 312
 				$title = get_the_title( $item );
313 313
 				$a_title = sprintf( __( 'Edit &#8220;%s&#8221;' ), $title );
314 314
 
Please login to merge, or discard this patch.
Spacing   +178 added lines, -178 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
2
+if ( ! defined('ABSPATH')) exit; // Exit if accessed directly
3 3
 
4 4
 /**
5 5
  * Sensei Learners Overview List Table Class
@@ -23,28 +23,28 @@  discard block
 block discarded – undo
23 23
 	 * @since  1.6.0
24 24
 	 * @return  void
25 25
 	 */
26
-	public function __construct ( $course_id = 0, $lesson_id = 0 ) {
27
-		$this->course_id = intval( $course_id );
28
-		$this->lesson_id = intval( $lesson_id );
26
+	public function __construct($course_id = 0, $lesson_id = 0) {
27
+		$this->course_id = intval($course_id);
28
+		$this->lesson_id = intval($lesson_id);
29 29
 
30
-		if( isset( $_GET['view'] ) && in_array( $_GET['view'], array( 'courses', 'lessons', 'learners' ) ) ) {
30
+		if (isset($_GET['view']) && in_array($_GET['view'], array('courses', 'lessons', 'learners'))) {
31 31
 			$this->view = $_GET['view'];
32 32
 		}
33 33
 
34 34
 		// Viewing a single lesson always sets the view to Learners
35
-		if( $this->lesson_id ) {
35
+		if ($this->lesson_id) {
36 36
 			$this->view = 'learners';
37 37
 		}
38 38
 
39 39
 		// Load Parent token into constructor
40
-		parent::__construct( 'learners_main' );
40
+		parent::__construct('learners_main');
41 41
 
42 42
 		// Actions
43
-		add_action( 'sensei_before_list_table', array( $this, 'data_table_header' ) );
44
-		add_action( 'sensei_after_list_table', array( $this, 'data_table_footer' ) );
45
-		add_action( 'sensei_learners_extra', array( $this, 'add_learners_box' ) );
43
+		add_action('sensei_before_list_table', array($this, 'data_table_header'));
44
+		add_action('sensei_after_list_table', array($this, 'data_table_footer'));
45
+		add_action('sensei_learners_extra', array($this, 'add_learners_box'));
46 46
 
47
-		add_filter( 'sensei_list_table_search_button_text', array( $this, 'search_button' ) );
47
+		add_filter('sensei_list_table_search_button_text', array($this, 'search_button'));
48 48
 	} // End __construct()
49 49
 
50 50
 	/**
@@ -54,38 +54,38 @@  discard block
 block discarded – undo
54 54
 	 */
55 55
 	function get_columns() {
56 56
 		$columns = array();
57
-		switch( $this->view ) {
57
+		switch ($this->view) {
58 58
 			case 'learners':
59 59
 				$columns = array(
60
-					'title' => __( 'Learner', 'woothemes-sensei' ),
61
-					'date_started' => __( 'Date Started', 'woothemes-sensei' ),
62
-					'user_status' => __( 'Status', 'woothemes-sensei' ),
60
+					'title' => __('Learner', 'woothemes-sensei'),
61
+					'date_started' => __('Date Started', 'woothemes-sensei'),
62
+					'user_status' => __('Status', 'woothemes-sensei'),
63 63
 				);
64 64
 				break;
65 65
 
66 66
 			case 'lessons':
67 67
 				$columns = array(
68
-					'title' => __( 'Lesson', 'woothemes-sensei' ),
69
-					'num_learners' => __( '# Learners', 'woothemes-sensei' ),
70
-					'updated' => __( 'Last Updated', 'woothemes-sensei' ),
68
+					'title' => __('Lesson', 'woothemes-sensei'),
69
+					'num_learners' => __('# Learners', 'woothemes-sensei'),
70
+					'updated' => __('Last Updated', 'woothemes-sensei'),
71 71
 				);
72 72
 				break;
73 73
 
74 74
 			case 'courses':
75 75
 			default:
76 76
 				$columns = array(
77
-					'title' => __( 'Course', 'woothemes-sensei' ),
78
-					'num_learners' => __( '# Learners', 'woothemes-sensei' ),
79
-					'updated' => __( 'Last Updated', 'woothemes-sensei' ),
77
+					'title' => __('Course', 'woothemes-sensei'),
78
+					'num_learners' => __('# Learners', 'woothemes-sensei'),
79
+					'updated' => __('Last Updated', 'woothemes-sensei'),
80 80
 				);
81 81
 				break;
82 82
 		}
83 83
 		$columns['actions'] = '';
84 84
 		// Backwards compatible
85
-		if ( 'learners' == $this->view ) {
86
-			$columns = apply_filters( 'sensei_learners_learners_columns', $columns, $this );
85
+		if ('learners' == $this->view) {
86
+			$columns = apply_filters('sensei_learners_learners_columns', $columns, $this);
87 87
 		}
88
-		$columns = apply_filters( 'sensei_learners_default_columns', $columns, $this );
88
+		$columns = apply_filters('sensei_learners_default_columns', $columns, $this);
89 89
 		return $columns;
90 90
 	}
91 91
 
@@ -96,32 +96,32 @@  discard block
 block discarded – undo
96 96
 	 */
97 97
 	function get_sortable_columns() {
98 98
 		$columns = array();
99
-		switch( $this->view ) {
99
+		switch ($this->view) {
100 100
 			case 'learners':
101 101
 				$columns = array(
102
-					'title' => array( 'title', false ),
102
+					'title' => array('title', false),
103 103
 				);
104 104
 				break;
105 105
 
106 106
 			case 'lessons':
107 107
 				$columns = array(
108
-					'title' => array( 'title', false ),
109
-					'updated' => array( 'post_modified', false ),
108
+					'title' => array('title', false),
109
+					'updated' => array('post_modified', false),
110 110
 				);
111 111
 				break;
112 112
 
113 113
 			default:
114 114
 				$columns = array(
115
-					'title' => array( 'title', false ),
116
-					'updated' => array( 'post_modified', false ),
115
+					'title' => array('title', false),
116
+					'updated' => array('post_modified', false),
117 117
 				);
118 118
 				break;
119 119
 		}
120 120
 		// Backwards compatible
121
-		if ( 'learners' == $this->view ) {
122
-			$columns = apply_filters( 'sensei_learners_learners_columns_sortable', $columns, $this );
121
+		if ('learners' == $this->view) {
122
+			$columns = apply_filters('sensei_learners_learners_columns_sortable', $columns, $this);
123 123
 		}
124
-		$columns = apply_filters( 'sensei_learners_default_columns_sortable', $columns, $this );
124
+		$columns = apply_filters('sensei_learners_default_columns_sortable', $columns, $this);
125 125
 		return $columns;
126 126
 	}
127 127
 
@@ -135,72 +135,72 @@  discard block
 block discarded – undo
135 135
 
136 136
 		// Handle orderby
137 137
 		$orderby = '';
138
-		if ( !empty( $_GET['orderby'] ) ) {
139
-			if ( array_key_exists( esc_html( $_GET['orderby'] ), $this->get_sortable_columns() ) ) {
140
-				$orderby = esc_html( $_GET['orderby'] );
138
+		if ( ! empty($_GET['orderby'])) {
139
+			if (array_key_exists(esc_html($_GET['orderby']), $this->get_sortable_columns())) {
140
+				$orderby = esc_html($_GET['orderby']);
141 141
 			} // End If Statement
142 142
 		}
143 143
 
144 144
 		// Handle order
145 145
 		$order = 'DESC';
146
-		if ( !empty( $_GET['order'] ) ) {
147
-			$order = ( 'ASC' == strtoupper($_GET['order']) ) ? 'ASC' : 'DESC';
146
+		if ( ! empty($_GET['order'])) {
147
+			$order = ('ASC' == strtoupper($_GET['order'])) ? 'ASC' : 'DESC';
148 148
 		}
149 149
 
150 150
 		// Handle category selection
151 151
 		$category = false;
152
-		if ( !empty( $_GET['course_cat'] ) ) {
153
-			$category = intval( $_GET['course_cat'] );
152
+		if ( ! empty($_GET['course_cat'])) {
153
+			$category = intval($_GET['course_cat']);
154 154
 		} // End If Statement
155 155
 
156 156
 		// Handle search
157 157
 		$search = false;
158
-		if ( !empty( $_GET['s'] ) ) {
159
-			$search = esc_html( $_GET['s'] );
158
+		if ( ! empty($_GET['s'])) {
159
+			$search = esc_html($_GET['s']);
160 160
 		} // End If Statement
161 161
 
162
-		$per_page = $this->get_items_per_page( 'sensei_comments_per_page' );
163
-		$per_page = apply_filters( 'sensei_comments_per_page', $per_page, 'sensei_comments' );
162
+		$per_page = $this->get_items_per_page('sensei_comments_per_page');
163
+		$per_page = apply_filters('sensei_comments_per_page', $per_page, 'sensei_comments');
164 164
 
165 165
 		$paged = $this->get_pagenum();
166 166
 		$offset = 0;
167
-		if ( !empty($paged) ) {
168
-			$offset = $per_page * ( $paged - 1 );
167
+		if ( ! empty($paged)) {
168
+			$offset = $per_page * ($paged - 1);
169 169
 		} // End If Statement
170 170
 
171
-		switch( $this->view ) {
171
+		switch ($this->view) {
172 172
 			case 'learners':
173
-				if ( empty($orderby) ) {
173
+				if (empty($orderby)) {
174 174
 					$orderby = '';
175 175
 				}
176
-				$this->items = $this->get_learners( compact( 'per_page', 'offset', 'orderby', 'order', 'search' ) );
176
+				$this->items = $this->get_learners(compact('per_page', 'offset', 'orderby', 'order', 'search'));
177 177
 
178 178
 			break;
179 179
 
180 180
 			case 'lessons':
181
-				if ( empty($orderby) ) {
181
+				if (empty($orderby)) {
182 182
 					$orderby = 'post_modified';
183 183
 				}
184
-				$this->items = $this->get_lessons( compact( 'per_page', 'offset', 'orderby', 'order', 'search' ) );
184
+				$this->items = $this->get_lessons(compact('per_page', 'offset', 'orderby', 'order', 'search'));
185 185
 
186 186
 			break;
187 187
 
188 188
 			default:
189
-				if ( empty($orderby) ) {
189
+				if (empty($orderby)) {
190 190
 					$orderby = 'post_modified';
191 191
 				}
192
-				$this->items = $this->get_courses( compact( 'per_page', 'offset', 'orderby', 'order', 'category', 'search' ) );
192
+				$this->items = $this->get_courses(compact('per_page', 'offset', 'orderby', 'order', 'category', 'search'));
193 193
 
194 194
 			break;
195 195
 		}
196 196
 
197 197
 		$total_items = $this->total_items;
198
-		$total_pages = ceil( $total_items / $per_page );
199
-		$this->set_pagination_args( array(
198
+		$total_pages = ceil($total_items / $per_page);
199
+		$this->set_pagination_args(array(
200 200
 			'total_items' => $total_items,
201 201
 			'total_pages' => $total_pages,
202 202
 			'per_page' => $per_page
203
-		) );
203
+		));
204 204
 
205 205
 	} // End prepare_items()
206 206
 
@@ -214,53 +214,53 @@  discard block
 block discarded – undo
214 214
      *
215 215
      * @return void
216 216
 	 */
217
-	protected function get_row_data( $item ) {
217
+	protected function get_row_data($item) {
218 218
 		global $wp_version;
219 219
 
220
-		switch ( $this->view ) {
220
+		switch ($this->view) {
221 221
 			case 'learners' :
222 222
 
223 223
                 // in this case the item passed in is actually the users activity on course of lesson
224 224
                 $user_activity = $item;
225 225
 				$post_id = false;
226 226
 
227
-				if( $this->lesson_id ) {
227
+				if ($this->lesson_id) {
228 228
 
229
-					$post_id = intval( $this->lesson_id );
230
-					$object_type = __( 'lesson', 'woothemes-sensei' );
229
+					$post_id = intval($this->lesson_id);
230
+					$object_type = __('lesson', 'woothemes-sensei');
231 231
 					$post_type = 'lesson';
232 232
 
233
-				} elseif( $this->course_id ) {
233
+				} elseif ($this->course_id) {
234 234
 
235
-					$post_id = intval( $this->course_id );
236
-					$object_type = __( 'course', 'woothemes-sensei' );
235
+					$post_id = intval($this->course_id);
236
+					$object_type = __('course', 'woothemes-sensei');
237 237
 					$post_type = 'course';
238 238
 
239 239
 				}
240 240
 
241
-				if( 'complete' == $user_activity->comment_approved || 'graded' == $user_activity->comment_approved || 'passed' == $user_activity->comment_approved ) {
241
+				if ('complete' == $user_activity->comment_approved || 'graded' == $user_activity->comment_approved || 'passed' == $user_activity->comment_approved) {
242 242
 
243
-                    $status_html = '<span class="graded">' .__( 'Completed', 'woothemes-sensei' ) . '</span>';
243
+                    $status_html = '<span class="graded">'.__('Completed', 'woothemes-sensei').'</span>';
244 244
 
245 245
 				} else {
246 246
 
247
-                    $status_html = '<span class="in-progress">' . __( 'In Progress', 'woothemes-sensei' ) . '</span>';
247
+                    $status_html = '<span class="in-progress">'.__('In Progress', 'woothemes-sensei').'</span>';
248 248
 
249 249
 				}
250 250
 
251
-                $title = Sensei_Student::get_full_name( $user_activity->user_id );
252
-				$a_title = sprintf( __( 'Edit &#8220;%s&#8221;' ), $title );
251
+                $title = Sensei_Student::get_full_name($user_activity->user_id);
252
+				$a_title = sprintf(__('Edit &#8220;%s&#8221;'), $title);
253 253
 
254 254
                 // get the learners order for this course if the course was purchased
255 255
 
256 256
                 $course_order_id_attribute = '';
257
-                if( Sensei_WC::is_woocommerce_active() ){
257
+                if (Sensei_WC::is_woocommerce_active()) {
258 258
 
259
-                    $course_product_order_id = Sensei_WC::get_learner_course_active_order_id( $user_activity->user_id, $post_id  );
259
+                    $course_product_order_id = Sensei_WC::get_learner_course_active_order_id($user_activity->user_id, $post_id);
260 260
 
261
-                    if( $course_product_order_id ){
261
+                    if ($course_product_order_id) {
262 262
 
263
-                        $course_order_id_attribute = ' data-order_id="' . $course_product_order_id . '" ';
263
+                        $course_order_id_attribute = ' data-order_id="'.$course_product_order_id.'" ';
264 264
 
265 265
                     }
266 266
 
@@ -279,50 +279,50 @@  discard block
 block discarded – undo
279 279
                  *   type html $action_buttons
280 280
                  * }
281 281
                  */
282
-				$column_data = apply_filters( 'sensei_learners_main_column_data', array(
283
-						'title' => '<strong><a class="row-title" href="' . admin_url( 'user-edit.php?user_id=' . $user_activity->user_id ) . '" title="' . esc_attr( $a_title ) . '">' . $title . '</a></strong>',
284
-						'date_started' => get_comment_meta( $user_activity->comment_ID, 'start', true),
282
+				$column_data = apply_filters('sensei_learners_main_column_data', array(
283
+						'title' => '<strong><a class="row-title" href="'.admin_url('user-edit.php?user_id='.$user_activity->user_id).'" title="'.esc_attr($a_title).'">'.$title.'</a></strong>',
284
+						'date_started' => get_comment_meta($user_activity->comment_ID, 'start', true),
285 285
 						'user_status' => $status_html,
286
-						'actions' => '<a class="remove-learner button" data-user_id="' . $user_activity->user_id . '" data-post_id="' . $post_id . '" data-post_type="' . $post_type . '" '. $course_order_id_attribute . '">' . sprintf( __( 'Remove from %1$s', 'woothemes-sensei' ), $object_type ) . '</a>',
287
-					), $item, $post_id, $post_type );
286
+						'actions' => '<a class="remove-learner button" data-user_id="'.$user_activity->user_id.'" data-post_id="'.$post_id.'" data-post_type="'.$post_type.'" '.$course_order_id_attribute.'">'.sprintf(__('Remove from %1$s', 'woothemes-sensei'), $object_type).'</a>',
287
+					), $item, $post_id, $post_type);
288 288
 
289 289
 				break;
290 290
 
291 291
 			case 'lessons' :
292
-				$lesson_learners = Sensei_Utils::sensei_check_for_activity( apply_filters( 'sensei_learners_lesson_learners', array( 'post_id' => $item->ID, 'type' => 'sensei_lesson_status', 'status' => 'any' ) ) );
293
-				$title = get_the_title( $item );
294
-				$a_title = sprintf( __( 'Edit &#8220;%s&#8221;' ), $title );
292
+				$lesson_learners = Sensei_Utils::sensei_check_for_activity(apply_filters('sensei_learners_lesson_learners', array('post_id' => $item->ID, 'type' => 'sensei_lesson_status', 'status' => 'any')));
293
+				$title = get_the_title($item);
294
+				$a_title = sprintf(__('Edit &#8220;%s&#8221;'), $title);
295 295
 
296 296
 				$grading_action = '';
297
-				if ( get_post_meta( $item->ID, '_quiz_has_questions', true ) ) {
298
-					$grading_action = ' <a class="button" href="' . esc_url( add_query_arg( array( 'page' => 'sensei_grading', 'lesson_id' => $item->ID, 'course_id' => $this->course_id ), admin_url( 'admin.php' ) ) ) . '">' . __( 'Grading', 'woothemes-sensei' ) . '</a>';
297
+				if (get_post_meta($item->ID, '_quiz_has_questions', true)) {
298
+					$grading_action = ' <a class="button" href="'.esc_url(add_query_arg(array('page' => 'sensei_grading', 'lesson_id' => $item->ID, 'course_id' => $this->course_id), admin_url('admin.php'))).'">'.__('Grading', 'woothemes-sensei').'</a>';
299 299
 				}
300 300
 
301
-				$column_data = apply_filters( 'sensei_learners_main_column_data', array(
302
-						'title' => '<strong><a class="row-title" href="' . admin_url( 'post.php?action=edit&post=' . $item->ID ) . '" title="' . esc_attr( $a_title ) . '">' . $title . '</a></strong>',
301
+				$column_data = apply_filters('sensei_learners_main_column_data', array(
302
+						'title' => '<strong><a class="row-title" href="'.admin_url('post.php?action=edit&post='.$item->ID).'" title="'.esc_attr($a_title).'">'.$title.'</a></strong>',
303 303
 						'num_learners' => $lesson_learners,
304 304
 						'updated' => $item->post_modified,
305
-						'actions' => '<a class="button" href="' . esc_url( add_query_arg( array( 'page' => $this->page_slug, 'lesson_id' => $item->ID, 'course_id' => $this->course_id, 'view' => 'learners' ), admin_url( 'admin.php' ) ) ) . '">' . __( 'Manage learners', 'woothemes-sensei' ) . '</a> ' . $grading_action,
306
-					), $item, $this->course_id );
305
+						'actions' => '<a class="button" href="'.esc_url(add_query_arg(array('page' => $this->page_slug, 'lesson_id' => $item->ID, 'course_id' => $this->course_id, 'view' => 'learners'), admin_url('admin.php'))).'">'.__('Manage learners', 'woothemes-sensei').'</a> '.$grading_action,
306
+					), $item, $this->course_id);
307 307
 				break;
308 308
 
309 309
 			case 'courses' :
310 310
 			default:
311
-                $course_learners = Sensei_Utils::sensei_check_for_activity( apply_filters( 'sensei_learners_course_learners', array( 'post_id' => $item->ID, 'type' => 'sensei_course_status', 'status' => 'any' ) ) );
312
-				$title = get_the_title( $item );
313
-				$a_title = sprintf( __( 'Edit &#8220;%s&#8221;' ), $title );
311
+                $course_learners = Sensei_Utils::sensei_check_for_activity(apply_filters('sensei_learners_course_learners', array('post_id' => $item->ID, 'type' => 'sensei_course_status', 'status' => 'any')));
312
+				$title = get_the_title($item);
313
+				$a_title = sprintf(__('Edit &#8220;%s&#8221;'), $title);
314 314
 
315 315
 				$grading_action = '';
316
-				if ( version_compare($wp_version, '4.1', '>=') ) {
317
-					$grading_action = ' <a class="button" href="' . esc_url( add_query_arg( array( 'page' => 'sensei_grading', 'course_id' => $item->ID ), admin_url( 'admin.php' ) ) ) . '">' . __( 'Grading', 'woothemes-sensei' ) . '</a>';
316
+				if (version_compare($wp_version, '4.1', '>=')) {
317
+					$grading_action = ' <a class="button" href="'.esc_url(add_query_arg(array('page' => 'sensei_grading', 'course_id' => $item->ID), admin_url('admin.php'))).'">'.__('Grading', 'woothemes-sensei').'</a>';
318 318
 				}
319 319
 
320
-				$column_data = apply_filters( 'sensei_learners_main_column_data', array(
321
-						'title' => '<strong><a class="row-title" href="' . admin_url( 'post.php?action=edit&post=' . $item->ID ) . '" title="' . esc_attr( $a_title ) . '">' . $title . '</a></strong>',
320
+				$column_data = apply_filters('sensei_learners_main_column_data', array(
321
+						'title' => '<strong><a class="row-title" href="'.admin_url('post.php?action=edit&post='.$item->ID).'" title="'.esc_attr($a_title).'">'.$title.'</a></strong>',
322 322
 						'num_learners' => $course_learners,
323 323
 						'updated' => $item->post_modified,
324
-						'actions' => '<a class="button" href="' . esc_url( add_query_arg( array( 'page' => $this->page_slug, 'course_id' => $item->ID, 'view' => 'learners' ), admin_url( 'admin.php' ) ) ) . '">' . __( 'Manage learners', 'woothemes-sensei' ) . '</a> ' . $grading_action,
325
-					), $item );
324
+						'actions' => '<a class="button" href="'.esc_url(add_query_arg(array('page' => $this->page_slug, 'course_id' => $item->ID, 'view' => 'learners'), admin_url('admin.php'))).'">'.__('Manage learners', 'woothemes-sensei').'</a> '.$grading_action,
325
+					), $item);
326 326
 
327 327
 				break;
328 328
 		} // switch
@@ -335,7 +335,7 @@  discard block
 block discarded – undo
335 335
 	 * @since  1.7.0
336 336
 	 * @return array courses
337 337
 	 */
338
-	private function get_courses( $args ) {
338
+	private function get_courses($args) {
339 339
 		$course_args = array(
340 340
 			'post_type' => 'course',
341 341
 			'post_status' => 'publish',
@@ -345,7 +345,7 @@  discard block
 block discarded – undo
345 345
 			'order' => $args['order'],
346 346
 		);
347 347
 
348
-		if( $args['category'] ) {
348
+		if ($args['category']) {
349 349
 			$course_args['tax_query'][] = array(
350 350
 				'taxonomy' => 'course-category',
351 351
 				'field' => 'id',
@@ -353,11 +353,11 @@  discard block
 block discarded – undo
353 353
 			);
354 354
 		}
355 355
 
356
-		if( $args['search'] ) {
356
+		if ($args['search']) {
357 357
 			$course_args['s'] = $args['search'];
358 358
 		}
359 359
 
360
-		$courses_query = new WP_Query( apply_filters( 'sensei_learners_filter_courses', $course_args ) );
360
+		$courses_query = new WP_Query(apply_filters('sensei_learners_filter_courses', $course_args));
361 361
 
362 362
 		$this->total_items = $courses_query->found_posts;
363 363
 		return $courses_query->posts;
@@ -368,7 +368,7 @@  discard block
 block discarded – undo
368 368
 	 * @since  1.7.0
369 369
 	 * @return array lessons
370 370
 	 */
371
-	private function get_lessons( $args ) {
371
+	private function get_lessons($args) {
372 372
 		$lesson_args = array(
373 373
 			'post_type' => 'lesson',
374 374
 			'post_status' => 'publish',
@@ -378,18 +378,18 @@  discard block
 block discarded – undo
378 378
 			'order' => $args['order'],
379 379
 		);
380 380
 
381
-		if( $this->course_id ) {
381
+		if ($this->course_id) {
382 382
 			$lesson_args['meta_query'][] = array(
383 383
 				'key' => '_lesson_course',
384 384
 				'value' => $this->course_id,
385 385
 			);
386 386
 		}
387 387
 
388
-		if( $args['search'] ) {
388
+		if ($args['search']) {
389 389
 			$lesson_args['s'] = $args['search'];
390 390
 		}
391 391
 
392
-		$lessons_query = new WP_Query( apply_filters( 'sensei_learners_filter_lessons', $lesson_args ) );
392
+		$lessons_query = new WP_Query(apply_filters('sensei_learners_filter_lessons', $lesson_args));
393 393
 
394 394
 		$this->total_items = $lessons_query->found_posts;
395 395
 		return $lessons_query->posts;
@@ -400,22 +400,22 @@  discard block
 block discarded – undo
400 400
 	 * @since  1.7.0
401 401
 	 * @return array learners
402 402
 	 */
403
-	private function get_learners( $args ) {
403
+	private function get_learners($args) {
404 404
 
405 405
 		$user_ids = false;
406 406
 		$post_id = 0;
407 407
 		$activity = '';
408 408
 
409
-		if( $this->lesson_id ) {
410
-			$post_id = intval( $this->lesson_id );
409
+		if ($this->lesson_id) {
410
+			$post_id = intval($this->lesson_id);
411 411
 			$activity = 'sensei_lesson_status';
412 412
 		}
413
-		elseif( $this->course_id ) {
414
-			$post_id = intval( $this->course_id );
413
+		elseif ($this->course_id) {
414
+			$post_id = intval($this->course_id);
415 415
 			$activity = 'sensei_course_status';
416 416
 		}
417 417
 
418
-		if( ! $post_id || ! $activity ) {
418
+		if ( ! $post_id || ! $activity) {
419 419
 			$this->total_items = 0;
420 420
 			return array();
421 421
 		}
@@ -431,32 +431,32 @@  discard block
 block discarded – undo
431 431
 			);
432 432
 
433 433
 		// Searching users on statuses requires sub-selecting the statuses by user_ids
434
-		if ( $args['search'] ) {
434
+		if ($args['search']) {
435 435
 			$user_args = array(
436
-				'search' => '*' . $args['search'] . '*',
436
+				'search' => '*'.$args['search'].'*',
437 437
 				'fields' => 'ID'
438 438
 			);
439 439
 			// Filter for extending
440
-			$user_args = apply_filters( 'sensei_learners_search_users', $user_args );
441
-			if ( !empty( $user_args ) ) {
442
-				$learners_search = new WP_User_Query( $user_args );
440
+			$user_args = apply_filters('sensei_learners_search_users', $user_args);
441
+			if ( ! empty($user_args)) {
442
+				$learners_search = new WP_User_Query($user_args);
443 443
 				$activity_args['user_id'] = $learners_search->get_results();
444 444
 			}
445 445
 		}
446 446
 
447
-		$activity_args = apply_filters( 'sensei_learners_filter_users', $activity_args );
447
+		$activity_args = apply_filters('sensei_learners_filter_users', $activity_args);
448 448
 
449 449
 		// WP_Comment_Query doesn't support SQL_CALC_FOUND_ROWS, so instead do this twice
450
-		$total_learners = Sensei_Utils::sensei_check_for_activity( array_merge( $activity_args, array('count' => true, 'offset' => 0, 'number' => 0) ) );
450
+		$total_learners = Sensei_Utils::sensei_check_for_activity(array_merge($activity_args, array('count' => true, 'offset' => 0, 'number' => 0)));
451 451
 		// Ensure we change our range to fit (in case a search threw off the pagination) - Should this be added to all views?
452
-		if ( $total_learners < $activity_args['offset'] ) {
453
-			$new_paged = floor( $total_learners / $activity_args['number'] );
452
+		if ($total_learners < $activity_args['offset']) {
453
+			$new_paged = floor($total_learners / $activity_args['number']);
454 454
 			$activity_args['offset'] = $new_paged * $activity_args['number'];
455 455
 		}
456
-		$learners = Sensei_Utils::sensei_check_for_activity( $activity_args, true );
456
+		$learners = Sensei_Utils::sensei_check_for_activity($activity_args, true);
457 457
 		// Need to always return an array, even with only 1 item
458
-		if ( !is_array($learners) ) {
459
-			$learners = array( $learners );
458
+		if ( ! is_array($learners)) {
459
+			$learners = array($learners);
460 460
 		}
461 461
 		$this->total_items = $total_learners;
462 462
 		return $learners;
@@ -469,22 +469,22 @@  discard block
 block discarded – undo
469 469
 	 * @return void
470 470
 	 */
471 471
 	public function no_items() {
472
-		switch( $this->view ) {
472
+		switch ($this->view) {
473 473
 			case 'learners' :
474
-				$text = __( 'No learners found.', 'woothemes-sensei' );
474
+				$text = __('No learners found.', 'woothemes-sensei');
475 475
 				break;
476 476
 
477 477
 			case 'lessons' :
478
-				$text = __( 'No lessons found.', 'woothemes-sensei' );
478
+				$text = __('No lessons found.', 'woothemes-sensei');
479 479
 				break;
480 480
 
481 481
 			case 'courses':
482 482
 			case 'default':
483 483
 			default:
484
-				$text = __( 'No courses found.', 'woothemes-sensei' );
484
+				$text = __('No courses found.', 'woothemes-sensei');
485 485
 				break;
486 486
 		}
487
-		echo apply_filters( 'sensei_learners_no_items_text', $text );
487
+		echo apply_filters('sensei_learners_no_items_text', $text);
488 488
 	} // End no_items()
489 489
 
490 490
 	/**
@@ -495,40 +495,40 @@  discard block
 block discarded – undo
495 495
 	public function data_table_header() {
496 496
 
497 497
 		echo '<div class="learners-selects">';
498
-		do_action( 'sensei_learners_before_dropdown_filters' );
498
+		do_action('sensei_learners_before_dropdown_filters');
499 499
 
500 500
 		// Display Course Categories only on default view
501
-		if( 'courses' == $this->view ) {
501
+		if ('courses' == $this->view) {
502 502
 
503 503
 			$selected_cat = 0;
504
-			if ( isset( $_GET['course_cat'] ) && '' != esc_html( $_GET['course_cat'] ) ) {
505
-				$selected_cat = intval( $_GET['course_cat'] );
504
+			if (isset($_GET['course_cat']) && '' != esc_html($_GET['course_cat'])) {
505
+				$selected_cat = intval($_GET['course_cat']);
506 506
 			}
507 507
 
508
-			$cats = get_terms( 'course-category', array( 'hide_empty' => false ) );
508
+			$cats = get_terms('course-category', array('hide_empty' => false));
509 509
 
510
-			echo '<div class="select-box">' . "\n";
510
+			echo '<div class="select-box">'."\n";
511 511
 
512
-				echo '<select id="course-category-options" data-placeholder="' . __( 'Course Category', 'woothemes-sensei' ) . '" name="learners_course_cat" class="chosen_select widefat">' . "\n";
512
+				echo '<select id="course-category-options" data-placeholder="'.__('Course Category', 'woothemes-sensei').'" name="learners_course_cat" class="chosen_select widefat">'."\n";
513 513
 
514
-					echo '<option value="0">' . __( 'All Course Categories', 'woothemes-sensei' ) . '</option>' . "\n";
514
+					echo '<option value="0">'.__('All Course Categories', 'woothemes-sensei').'</option>'."\n";
515 515
 
516
-					foreach( $cats as $cat ) {
517
-						echo '<option value="' . $cat->term_id . '"' . selected( $cat->term_id, $selected_cat, false ) . '>' . $cat->name . '</option>' . "\n";
516
+					foreach ($cats as $cat) {
517
+						echo '<option value="'.$cat->term_id.'"'.selected($cat->term_id, $selected_cat, false).'>'.$cat->name.'</option>'."\n";
518 518
 					}
519 519
 
520
-				echo '</select>' . "\n";
520
+				echo '</select>'."\n";
521 521
 
522
-			echo '</div>' . "\n";
522
+			echo '</div>'."\n";
523 523
 		}
524 524
 		echo '</div><!-- /.learners-selects -->';
525 525
 
526 526
 		$menu = array();
527 527
 		// Have Course no Lesson
528
-		if( $this->course_id && ! $this->lesson_id ) {
528
+		if ($this->course_id && ! $this->lesson_id) {
529 529
 
530 530
 			$learners_class = $lessons_class = '';
531
-			switch( $this->view ) {
531
+			switch ($this->view) {
532 532
 				case 'learners':
533 533
 					$learners_class = 'current';
534 534
 				break;
@@ -547,12 +547,12 @@  discard block
 block discarded – undo
547 547
 			$learner_args['view'] = 'learners';
548 548
 			$lesson_args['view'] = 'lessons';
549 549
 
550
-			$menu['learners'] = '<a class="' . $learners_class . '" href="' . esc_url( add_query_arg( $learner_args, admin_url( 'admin.php' ) ) ) . '">' . __( 'Learners', 'woothemes-sensei' ) . '</a>';
551
-			$menu['lessons'] = '<a class="' . $lessons_class . '" href="' . esc_url( add_query_arg( $lesson_args, admin_url( 'admin.php' ) ) ) . '">' . __( 'Lessons', 'woothemes-sensei' ) . '</a>';
550
+			$menu['learners'] = '<a class="'.$learners_class.'" href="'.esc_url(add_query_arg($learner_args, admin_url('admin.php'))).'">'.__('Learners', 'woothemes-sensei').'</a>';
551
+			$menu['lessons'] = '<a class="'.$lessons_class.'" href="'.esc_url(add_query_arg($lesson_args, admin_url('admin.php'))).'">'.__('Lessons', 'woothemes-sensei').'</a>';
552 552
 
553 553
 		} 
554 554
 		// Have Course and Lesson
555
-		elseif( $this->course_id && $this->lesson_id ) {
555
+		elseif ($this->course_id && $this->lesson_id) {
556 556
 
557 557
 			$query_args = array(
558 558
 				'page' => $this->page_slug,
@@ -560,18 +560,18 @@  discard block
 block discarded – undo
560 560
 				'view' => 'lessons'
561 561
 			);
562 562
 
563
-			$course = get_the_title( $this->course_id );
563
+			$course = get_the_title($this->course_id);
564 564
 
565
-			$menu['back'] = '<a href="' . esc_url( add_query_arg( $query_args, admin_url( 'admin.php' ) ) ) . '">' . sprintf( __( '%1$sBack to %2$s%3$s', 'woothemes-sensei' ), '<em>&larr; ', $course, '</em>' ) . '</a>';
565
+			$menu['back'] = '<a href="'.esc_url(add_query_arg($query_args, admin_url('admin.php'))).'">'.sprintf(__('%1$sBack to %2$s%3$s', 'woothemes-sensei'), '<em>&larr; ', $course, '</em>').'</a>';
566 566
 		}
567
-		$menu = apply_filters( 'sensei_learners_sub_menu', $menu );
568
-		if ( !empty($menu) ) {
569
-			echo '<ul class="subsubsub">' . "\n";
570
-			foreach ( $menu as $class => $item ) {
571
-				$menu[ $class ] = "\t<li class='$class'>$item";
567
+		$menu = apply_filters('sensei_learners_sub_menu', $menu);
568
+		if ( ! empty($menu)) {
569
+			echo '<ul class="subsubsub">'."\n";
570
+			foreach ($menu as $class => $item) {
571
+				$menu[$class] = "\t<li class='$class'>$item";
572 572
 			}
573
-			echo implode( " |</li>\n", $menu ) . "</li>\n";
574
-			echo '</ul>' . "\n";
573
+			echo implode(" |</li>\n", $menu)."</li>\n";
574
+			echo '</ul>'."\n";
575 575
 		}
576 576
 
577 577
 	} // End data_table_header()
@@ -596,50 +596,50 @@  discard block
 block discarded – undo
596 596
 		$form_post_type = '';
597 597
 		$form_course_id = 0;
598 598
 		$form_lesson_id = 0;
599
-		if( $this->course_id && ! $this->lesson_id ) {
600
-			$post_title = get_the_title( $this->course_id );
601
-			$post_type = __( 'Course', 'woothemes-sensei' );
599
+		if ($this->course_id && ! $this->lesson_id) {
600
+			$post_title = get_the_title($this->course_id);
601
+			$post_type = __('Course', 'woothemes-sensei');
602 602
 			$form_post_type = 'course';
603 603
 			$form_course_id = $this->course_id;
604 604
 		}
605
-		elseif( $this->course_id && $this->lesson_id ) {
606
-			$post_title = get_the_title( $this->lesson_id );
607
-			$post_type = __( 'Lesson', 'woothemes-sensei' );
605
+		elseif ($this->course_id && $this->lesson_id) {
606
+			$post_title = get_the_title($this->lesson_id);
607
+			$post_type = __('Lesson', 'woothemes-sensei');
608 608
 			$form_post_type = 'lesson';
609 609
 			$form_course_id = $this->course_id;
610 610
 			$form_lesson_id = $this->lesson_id;
611
-			$course_title = get_the_title( $this->course_id );
611
+			$course_title = get_the_title($this->course_id);
612 612
 		}
613
-		if ( empty($form_post_type) ) {
613
+		if (empty($form_post_type)) {
614 614
 			return;
615 615
 		}
616 616
 		?>
617 617
 		<div class="postbox">
618
-			<h3><span><?php printf( __( 'Add Learner to %1$s', 'woothemes-sensei' ), $post_type ); ?></span></h3>
618
+			<h3><span><?php printf(__('Add Learner to %1$s', 'woothemes-sensei'), $post_type); ?></span></h3>
619 619
 			<div class="inside">
620 620
 				<form name="add_learner" action="" method="post">
621 621
 					<p>
622
-						<input name="add_user_id" placeholder="<?php _e( 'Find learner', 'woothemes-sensei' ) ;?>" id="add_learner_search" style="min-width:300px;" />
623
-						<?php if( 'lesson' == $form_post_type ) { ?>
624
-							<label for="add_complete_lesson"><input type="checkbox" id="add_complete_lesson" name="add_complete_lesson"  value="yes" /> <?php _e( 'Complete lesson for learner', 'woothemes-sensei' ); ?></label>
625
-						<?php } elseif( 'course' == $form_post_type ) { ?>
626
-							<label for="add_complete_course"><input type="checkbox" id="add_complete_course" name="add_complete_course"  value="yes" /> <?php _e( 'Complete course for learner', 'woothemes-sensei' ); ?></label>
622
+						<input name="add_user_id" placeholder="<?php _e('Find learner', 'woothemes-sensei'); ?>" id="add_learner_search" style="min-width:300px;" />
623
+						<?php if ('lesson' == $form_post_type) { ?>
624
+							<label for="add_complete_lesson"><input type="checkbox" id="add_complete_lesson" name="add_complete_lesson"  value="yes" /> <?php _e('Complete lesson for learner', 'woothemes-sensei'); ?></label>
625
+						<?php } elseif ('course' == $form_post_type) { ?>
626
+							<label for="add_complete_course"><input type="checkbox" id="add_complete_course" name="add_complete_course"  value="yes" /> <?php _e('Complete course for learner', 'woothemes-sensei'); ?></label>
627 627
 						<?php } ?>
628 628
 						<br/>
629
-						<span class="description"><?php _e( 'Search for a user by typing their name or username.', 'woothemes-sensei' ); ?></span>
629
+						<span class="description"><?php _e('Search for a user by typing their name or username.', 'woothemes-sensei'); ?></span>
630 630
 					</p>
631
-					<p><?php submit_button( sprintf( __( 'Add to \'%1$s\'', 'woothemes-sensei' ), $post_title ), 'primary', 'add_learner_submit', false, array() ); ?></p>
632
-					<?php if( 'lesson' == $form_post_type ) { ?>
633
-						<p><span class="description"><?php printf( __( 'Learner will also be added to the course \'%1$s\' if they are not already taking it.', 'woothemes-sensei' ), $course_title ); ?></span></p>
631
+					<p><?php submit_button(sprintf(__('Add to \'%1$s\'', 'woothemes-sensei'), $post_title), 'primary', 'add_learner_submit', false, array()); ?></p>
632
+					<?php if ('lesson' == $form_post_type) { ?>
633
+						<p><span class="description"><?php printf(__('Learner will also be added to the course \'%1$s\' if they are not already taking it.', 'woothemes-sensei'), $course_title); ?></span></p>
634 634
 					<?php } ?>
635 635
 
636 636
 					<input type="hidden" name="add_post_type" value="<?php echo $form_post_type; ?>" />
637 637
 					<input type="hidden" name="add_course_id" value="<?php echo $form_course_id; ?>" />
638 638
 					<input type="hidden" name="add_lesson_id" value="<?php echo $form_lesson_id; ?>" />
639 639
 					<?php
640
-						do_action( 'sensei_learners_add_learner_form' );
640
+						do_action('sensei_learners_add_learner_form');
641 641
 					?>
642
-					<?php wp_nonce_field( 'add_learner_to_sensei', 'add_learner_nonce' ); ?>
642
+					<?php wp_nonce_field('add_learner_to_sensei', 'add_learner_nonce'); ?>
643 643
 				</form>
644 644
 			</div>
645 645
 		</div>
@@ -651,19 +651,19 @@  discard block
 block discarded – undo
651 651
 	 * @since  1.7.0
652 652
 	 * @return void
653 653
 	 */
654
-	public function search_button( $text = '' ) {
654
+	public function search_button($text = '') {
655 655
 
656
-		switch( $this->view ) {
656
+		switch ($this->view) {
657 657
 			case 'learners':
658
-				$text = __( 'Search Learners', 'woothemes-sensei' );
658
+				$text = __('Search Learners', 'woothemes-sensei');
659 659
 			break;
660 660
 
661 661
 			case 'lessons':
662
-				$text = __( 'Search Lessons', 'woothemes-sensei' );
662
+				$text = __('Search Lessons', 'woothemes-sensei');
663 663
 			break;
664 664
 
665 665
 			default:
666
-				$text = __( 'Search Courses', 'woothemes-sensei' );
666
+				$text = __('Search Courses', 'woothemes-sensei');
667 667
 			break;
668 668
 		}
669 669
 
Please login to merge, or discard this patch.