at path:
ROOT
/
wp-content
/
plugins
/
tutor
/
templates
/
dashboard
/
assignments.php
run:
R
W
Run
announcements
DIR
2026-04-14 05:34:27
R
W
Run
assignments
DIR
2026-04-14 05:34:27
R
W
Run
elements
DIR
2026-04-14 05:34:27
R
W
Run
enrolled-courses
DIR
2026-04-14 05:34:27
R
W
Run
instructor
DIR
2026-04-14 05:34:27
R
W
Run
my-courses
DIR
2026-04-14 05:34:27
R
W
Run
my-quiz-attempts
DIR
2026-04-14 05:34:27
R
W
Run
notifications
DIR
2026-04-14 05:34:27
R
W
Run
question-answer
DIR
2026-04-14 05:34:27
R
W
Run
quiz-attempts
DIR
2026-04-14 05:34:27
R
W
Run
reviews
DIR
2026-04-14 05:34:27
R
W
Run
settings
DIR
2026-04-14 05:34:27
R
W
Run
withdraw-method-fields
DIR
2026-04-14 05:34:27
R
W
Run
announcements.php
4.61 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
assignments.php
5.34 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
create-course.php
644 By
2026-04-14 05:34:27
R
W
Run
Delete
Rename
dashboard.php
16.65 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
enrolled-courses.php
4.66 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
index.php
459 By
2026-04-14 05:34:27
R
W
Run
Delete
Rename
logged-in.php
261 By
2026-04-14 05:34:27
R
W
Run
Delete
Rename
my-courses.php
15.04 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
my-profile.php
2.59 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
my-quiz-attempts.php
1.79 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
purchase_history.php
10.65 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
question-answer.php
4.59 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
quiz-attempts.php
1.95 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
registration.php
6.49 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
reviews.php
3.84 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
settings.php
775 By
2026-04-14 05:34:27
R
W
Run
Delete
Rename
wishlist.php
2.02 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
withdraw.php
13.39 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
error_log
up
📄
assignments.php
Save
<?php /** * Template for displaying Assignments * * @package Tutor\Templates * @subpackage Dashboard * @author Themeum <support@themeum.com> * @link https://themeum.com * @since 1.3.4 */ if ( ! defined( 'TUTOR_PRO_VERSION' ) ) { return; } use Tutor\Helpers\QueryHelper; use TUTOR\Input; use Tutor\Models\CourseModel; use TUTOR_ASSIGNMENTS\Assignments_List; $per_page = tutor_utils()->get_option( 'pagination_per_page', 10 ); //phpcs:ignore $current_page = max( 1, Input::get( 'current_page', 1, Input::TYPE_INT ) ); $offset = ( $current_page - 1 ) * $per_page; $course_id = Input::get( 'course-id', 0, Input::TYPE_INT ); $order_filter = QueryHelper::get_valid_sort_order( Input::get( 'order', 'DESC' ) ); $date_filter = Input::get( 'date', '' ); $current_user = get_current_user_id(); //phpcs:ignore $assignments = tutor_utils()->get_assignments_by_instructor( null, compact( 'course_id', 'order_filter', 'date_filter', 'per_page', 'offset' ) ); $courses = ( current_user_can( 'administrator' ) ) ? CourseModel::get_courses() : CourseModel::get_courses_by_instructor(); ?> <div class="tutor-fs-5 tutor-fw-medium tutor-color-black tutor-mb-24"><?php esc_html_e( 'Assignment', 'tutor' ); ?></div> <div class="tutor-dashboard-content-inner tutor-dashboard-assignments"> <div class="tutor-row tutor-mb-24"> <div class="tutor-col-lg-6 tutor-mb-16 tutor-mb-lg-0"> <label class="tutor-form-label"> <?php esc_html_e( 'Courses', 'tutor' ); ?> </label> <select class="tutor-form-select tutor-announcement-course-sorting" data-searchable> <option value=""><?php esc_html_e( 'All', 'tutor' ); ?></option> <?php if ( $courses ) : ?> <?php foreach ( $courses as $course ) : ?> <option value="<?php echo esc_attr( $course->ID ); ?>" <?php selected( $course_id, $course->ID, 'selected' ); ?>> <?php echo esc_html( $course->post_title ); ?> </option> <?php endforeach; ?> <?php else : ?> <option value=""><?php esc_html_e( 'No course found', 'tutor' ); ?></option> <?php endif; ?> </select> </div> <div class="tutor-col-6 tutor-col-lg-3"> <label class="tutor-form-label"><?php esc_html_e( 'Sort By', 'tutor' ); ?></label> <select class="tutor-form-select tutor-announcement-order-sorting" data-search="no"> <option <?php selected( $order_filter, 'ASC' ); ?>><?php esc_html_e( 'ASC', 'tutor' ); ?></option> <option <?php selected( $order_filter, 'DESC' ); ?>><?php esc_html_e( 'DESC', 'tutor' ); ?></option> </select> </div> <div class="tutor-col-6 tutor-col-lg-3"> <label class="tutor-form-label"><?php esc_html_e( 'Create Date', 'tutor' ); ?></label> <div class="tutor-v2-date-picker"> <div class="tutor-form-wrap"> <span class="tutor-form-icon tutor-form-icon-reverse"> <span class="tutor-icon-calender-line" aria-hidden="true"></span> </span> <input class="tutor-form-control" placeholder="<?php esc_attr_e( 'Loading...', 'tutor' ); ?>"> </div> </div> </div> </div> <?php if ( is_array( $assignments->results ) && count( $assignments->results ) ) : ?> <?php $submitted_url = tutor_utils()->get_tutor_dashboard_page_permalink( 'assignments/submitted' ); ?> <div class="tutor-table-responsive"> <table class="tutor-table table-assignment"> <thead> <tr> <th> <?php esc_html_e( 'Assignment Name', 'tutor' ); ?> </th> <th> <span class="tutor-fs-7"><?php esc_html_e( 'Total Marks', 'tutor' ); ?></span> </th> <th> <span class="tutor-fs-7"><?php esc_html_e( 'Total Submit', 'tutor' ); ?></span> </th> <th></th> </tr> </thead> <tbody> <?php foreach ( $assignments->results as $item ) : $max_mark = tutor_utils()->get_assignment_option( $item->ID, 'total_mark' ); $course_id = tutor_utils()->get_course_id_by( 'assignment', $item->ID ); $comment_count = count( Assignments_List::get_submitted_assignments( $item->ID ) ); // @TODO: assign post_meta is empty if user don't click on update button (http://prntscr.com/oax4t8) but post status is publish. ?> <tr> <td> <?php echo esc_html( $item->post_title ); ?> <div class="tutor-fs-7 tutor-mt-8"> <span class="tutor-fw-medium"><?php esc_html_e( 'Course', 'tutor' ); ?>: </span> <a target="_blank" href='<?php echo esc_url( get_the_permalink( $course_id ) ); ?>'><?php echo esc_html( get_the_title( $course_id ) ); ?> </a> </div> </td> <td> <?php echo esc_html( $max_mark ); ?> </td> <td> <?php echo esc_html( $comment_count ); ?> </td> <td class="tutor-text-right"> <a href="<?php echo esc_url( $submitted_url . '?assignment=' . $item->ID ); ?>" class="tutor-btn tutor-btn-outline-primary tutor-btn-sm"> <?php esc_html_e( 'Details', 'tutor' ); ?> </a> </td> </tr> <?php endforeach; ?> </tbody> </table> </div> <?php else : ?> <?php tutor_utils()->tutor_empty_state( tutor_utils()->not_found_text() ); ?> <?php endif; ?> <?php if ( $assignments->count > $per_page ) { $pagination_data = array( 'total_items' => $assignments->count, 'per_page' => $per_page, 'paged' => $current_page, ); tutor_load_template_from_custom_path( tutor()->path . 'templates/dashboard/elements/pagination.php', $pagination_data ); } ?> </div>