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