Addons.php
4 years ago
Admin.php
4 years ago
Ajax.php
4 years ago
Assets.php
4 years ago
Course.php
4 years ago
Course_Filter.php
4 years ago
Course_Settings_Tabs.php
5 years ago
Course_Widget.php
5 years ago
Custom_Validation.php
5 years ago
Dashboard.php
4 years ago
Email.php
5 years ago
FormHandler.php
5 years ago
Frontend.php
5 years ago
Gutenberg.php
4 years ago
Instructor.php
4 years ago
Instructors_List.php
4 years ago
Lesson.php
4 years ago
Options.php
4 years ago
Post_types.php
4 years ago
Private_Course_Access.php
5 years ago
Q_and_A.php
5 years ago
Question_Answers_List.php
4 years ago
Quiz.php
4 years ago
Quiz_Attempts_List.php
4 years ago
RestAPI.php
4 years ago
Rewrite_Rules.php
4 years ago
Shortcode.php
4 years ago
Student.php
4 years ago
Students_List.php
4 years ago
Taxonomies.php
5 years ago
Template.php
4 years ago
Theme_Compatibility.php
5 years ago
Tools.php
4 years ago
Tutor.php
4 years ago
TutorEDD.php
5 years ago
Tutor_Base.php
5 years ago
Tutor_List_Table.php
4 years ago
Tutor_Setup.php
4 years ago
Upgrader.php
5 years ago
User.php
4 years ago
Utils.php
4 years ago
Video_Stream.php
5 years ago
Withdraw.php
5 years ago
Withdraw_Requests_List.php
4 years ago
WooCommerce.php
4 years ago
Quiz_Attempts_List.php
206 lines
| 1 | <?php |
| 2 | namespace TUTOR; |
| 3 | |
| 4 | if ( ! defined( 'ABSPATH' ) ) |
| 5 | exit; |
| 6 | |
| 7 | if (! class_exists('Tutor_List_Table')){ |
| 8 | include_once tutor()->path.'classes/Tutor_List_Table.php'; |
| 9 | } |
| 10 | |
| 11 | class Quiz_Attempts_List extends \Tutor_List_Table { |
| 12 | |
| 13 | const QUIZ_ATTEMPT_PAGE = 'tutor_quiz_attempts'; |
| 14 | |
| 15 | function __construct(){ |
| 16 | global $status, $page; |
| 17 | |
| 18 | //Set parent defaults |
| 19 | parent::__construct( array( |
| 20 | 'singular' => 'attempt', //singular name of the listed records |
| 21 | 'plural' => 'attempts', //plural name of the listed records |
| 22 | 'ajax' => false //does this table support ajax? |
| 23 | ) ); |
| 24 | } |
| 25 | |
| 26 | function column_default($item, $column_name){ |
| 27 | switch($column_name){ |
| 28 | case 'unknown_col': |
| 29 | return $item->$column_name; |
| 30 | default: |
| 31 | //return print_r($item,true); //Show the whole array for troubleshooting purposes |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | function column_student($item){ |
| 36 | $actions = array(); |
| 37 | |
| 38 | $actions['answer'] = sprintf('<a href="?page=%s&sub_page=%s&attempt_id=%s">'.__('Review', 'tutor').'</a>',$_REQUEST['page'],'view_attempt',$item->attempt_id); |
| 39 | //$actions['delete'] = sprintf('<a href="?page=%s&action=%s&attempt_id=%s">Delete</a>',$_REQUEST['page'],'delete',$item->attempt_id); |
| 40 | |
| 41 | $quiz_title = "<p><strong>{$item->display_name}</strong></p>"; |
| 42 | $quiz_title .= "<p>{$item->user_email}</p>"; |
| 43 | //@since 1.9.5 instead of showing time ago showing original date time |
| 44 | if ($item->attempt_ended_at){ |
| 45 | $ended_ago_time = human_time_diff(strtotime($item->attempt_ended_at), tutor_time()).__(' ago', 'tutor'); |
| 46 | $attempt_started_at = date_format(date_create($item->attempt_started_at), 'd M, Y, h:i a'); |
| 47 | $quiz_title .= "<span>{$attempt_started_at}</span>"; |
| 48 | } |
| 49 | |
| 50 | //Return the title contents |
| 51 | return sprintf('%1$s <span style="color:silver">(id:%2$s)</span>%3$s', |
| 52 | $quiz_title, |
| 53 | $item->attempt_id, |
| 54 | $this->row_actions($actions) |
| 55 | ); |
| 56 | } |
| 57 | |
| 58 | function column_quiz($item){ |
| 59 | return $item->post_title; |
| 60 | } |
| 61 | |
| 62 | function column_cb($item){ |
| 63 | return sprintf( |
| 64 | '<input type="checkbox" name="%1$s[]" value="%2$s" />', |
| 65 | /*$1%s*/ $this->_args['singular'], //Let's simply repurpose the table's singular label ("instructor") |
| 66 | /*$2%s*/ $item->attempt_id //The value of the checkbox should be the record's id |
| 67 | ); |
| 68 | } |
| 69 | |
| 70 | function column_course($item) { |
| 71 | $quiz = tutor_utils()->get_course_by_quiz($item->quiz_id); |
| 72 | |
| 73 | if ($quiz) { |
| 74 | $title = get_the_title( $quiz->ID ); |
| 75 | return "<a href='" . admin_url( "post.php?post={$quiz->ID}&action=edit" ) . "'>{$title}</a>"; |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | function column_total_questions($item) { |
| 80 | echo $item->total_questions; |
| 81 | } |
| 82 | |
| 83 | function column_earned_marks($item){ |
| 84 | |
| 85 | if ($item->attempt_status === 'review_required'){ |
| 86 | $output = '<span class="result-review-required">' . __('Under Review', 'tutor') . '</span>'; |
| 87 | }else { |
| 88 | |
| 89 | $pass_mark_percent = tutor_utils()->get_quiz_option($item->quiz_id, 'passing_grade', 0); |
| 90 | $earned_percentage = $item->earned_marks > 0 ? (number_format(($item->earned_marks * 100) / $item->total_marks)) : 0; |
| 91 | |
| 92 | $output = $item->earned_marks .__( ' out of ', 'tutor' ). " {$item->total_marks} <br />"; |
| 93 | $output .= "({$earned_percentage}%) ".__( ' pass ', 'tutor' )." ({$pass_mark_percent}%) <br />"; |
| 94 | |
| 95 | if ($earned_percentage >= $pass_mark_percent) { |
| 96 | $output .= '<span class="result-pass">' . __('Pass', 'tutor') . '</span>'; |
| 97 | } else { |
| 98 | $output .= '<span class="result-fail">' . __('Fail', 'tutor') . '</span>'; |
| 99 | } |
| 100 | } |
| 101 | return $output; |
| 102 | } |
| 103 | |
| 104 | function column_attempt_status($item){ |
| 105 | $status = ucwords(str_replace('quiz_', '', $item->attempt_status)); |
| 106 | |
| 107 | return "<span class='attempt-status-{$item->attempt_status}'>{$status}</span>"; |
| 108 | } |
| 109 | |
| 110 | function get_columns(){ |
| 111 | $columns = array( |
| 112 | 'cb' => '<input type="checkbox" />', //Render a checkbox instead of text |
| 113 | 'student' => __('Students', 'tutor'), |
| 114 | 'quiz' => __('Quiz', 'tutor'), |
| 115 | 'course' => __('Course', 'tutor'), |
| 116 | 'total_questions' => __('Total Questions', 'tutor'), |
| 117 | 'earned_marks' => __('Earned Points', 'tutor'), |
| 118 | //'attempt_status' => __('Attempt Status', 'tutor'), |
| 119 | ); |
| 120 | return $columns; |
| 121 | } |
| 122 | |
| 123 | function get_sortable_columns() { |
| 124 | $sortable_columns = array( |
| 125 | //'display_name' => array('title',false), //true means it's already sorted |
| 126 | ); |
| 127 | return $sortable_columns; |
| 128 | } |
| 129 | |
| 130 | function get_bulk_actions() { |
| 131 | $actions = array( |
| 132 | 'delete' => 'Delete' |
| 133 | ); |
| 134 | return $actions; |
| 135 | } |
| 136 | |
| 137 | function process_bulk_action() { |
| 138 | global $wpdb; |
| 139 | |
| 140 | //Detect when a bulk action is being triggered... |
| 141 | if( 'delete' === $this->current_action() ) { |
| 142 | if ( empty($_GET['attempt']) || ! is_array($_GET['attempt'])){ |
| 143 | return; |
| 144 | } |
| 145 | |
| 146 | $attempt_ids = array_map('sanitize_text_field', $_GET['attempt']); |
| 147 | $attempt_ids = array_map( 'absint', $attempt_ids ); |
| 148 | |
| 149 | tutor_utils()->delete_quiz_attempt( $attempt_ids ); |
| 150 | } |
| 151 | } |
| 152 | |
| 153 | function prepare_items( $search_filter = '', $course_filter = '', $date_filter = '', $order_filter = '' ) { |
| 154 | global $wpdb; |
| 155 | |
| 156 | $per_page = 20; |
| 157 | |
| 158 | $columns = $this->get_columns(); |
| 159 | $hidden = array(); |
| 160 | $sortable = $this->get_sortable_columns(); |
| 161 | |
| 162 | $this->_column_headers = array($columns, $hidden, $sortable); |
| 163 | $this->process_bulk_action(); |
| 164 | |
| 165 | $current_page = $this->get_pagenum(); |
| 166 | |
| 167 | $total_items = 0; |
| 168 | $this->items = array(); |
| 169 | |
| 170 | if ( current_user_can( 'administrator' ) ) { |
| 171 | |
| 172 | $this->items = tutor_utils()->get_quiz_attempts( ( $current_page - 1 ) * $per_page, $per_page, $search_filter, $course_filter, $date_filter, $order_filter ); |
| 173 | |
| 174 | $total_items = tutor_utils()->get_total_quiz_attempts(); |
| 175 | |
| 176 | } elseif ( current_user_can( 'tutor_instructor' ) ){ |
| 177 | /** |
| 178 | * Instructors course specific quiz attempts |
| 179 | */ |
| 180 | $user_id = get_current_user_id(); |
| 181 | $get_assigned_courses_ids = $wpdb->get_col($wpdb->prepare("SELECT meta_value from {$wpdb->usermeta} WHERE meta_key = '_tutor_instructor_course_id' AND user_id = %d", $user_id)); |
| 182 | |
| 183 | $custom_author_query = "AND {$wpdb->posts}.post_author = {$user_id}"; |
| 184 | if (is_array($get_assigned_courses_ids) && count($get_assigned_courses_ids)){ |
| 185 | $in_query_pre = implode(',', $get_assigned_courses_ids); |
| 186 | $custom_author_query = " AND ( {$wpdb->posts}.post_author = {$user_id} OR {$wpdb->posts}.ID IN({$in_query_pre}) ) "; |
| 187 | } |
| 188 | $course_post_type = tutor()->course_post_type; |
| 189 | $get_course_ids = $wpdb->get_col("SELECT ID from {$wpdb->posts} where post_type = '{$course_post_type}' $custom_author_query ; "); |
| 190 | |
| 191 | if (is_array($get_course_ids) && count($get_course_ids)){ |
| 192 | |
| 193 | $this->items = tutor_utils()->get_quiz_attempts_by_course_ids(( $current_page - 1 ) * $per_page, $per_page, $get_course_ids, $search_filter, $course_filter, $date_filter, $order_filter ); |
| 194 | |
| 195 | $total_items = tutor_utils()->get_total_quiz_attempts_by_course_ids($get_course_ids); |
| 196 | } |
| 197 | |
| 198 | } |
| 199 | |
| 200 | $this->set_pagination_args( array( |
| 201 | 'total_items' => $total_items, |
| 202 | 'per_page' => $per_page, |
| 203 | 'total_pages' => ceil($total_items/$per_page) |
| 204 | ) ); |
| 205 | } |
| 206 | } |