announcements
3 years ago
assignments
2 years ago
elements
1 year ago
enrolled-courses
3 years ago
instructor
2 years ago
my-courses
3 years ago
my-quiz-attempts
3 years ago
notifications
3 years ago
question-answer
2 years ago
quiz-attempts
3 years ago
reviews
3 years ago
settings
1 year ago
withdraw-method-fields
3 years ago
announcements.php
1 year ago
assignments.php
1 year ago
create-course.php
1 year ago
dashboard.php
1 year ago
enrolled-courses.php
1 year ago
index.php
3 years ago
logged-in.php
3 years ago
my-courses.php
1 year ago
my-profile.php
3 years ago
my-quiz-attempts.php
3 years ago
purchase_history.php
1 year ago
question-answer.php
2 years ago
quiz-attempts.php
1 year ago
registration.php
2 years ago
reviews.php
3 years ago
settings.php
1 year ago
wishlist.php
1 year ago
withdraw.php
1 year ago
my-courses.php
339 lines
| 1 | <?php |
| 2 | /** |
| 3 | * My Courses Page |
| 4 | * |
| 5 | * @package Tutor\Templates |
| 6 | * @subpackage Dashboard |
| 7 | * @author Themeum <support@themeum.com> |
| 8 | * @link https://themeum.com |
| 9 | * @since 1.4.3 |
| 10 | */ |
| 11 | |
| 12 | use TUTOR\Input; |
| 13 | use Tutor\Models\CourseModel; |
| 14 | |
| 15 | // Get the user ID and active tab. |
| 16 | $current_user_id = get_current_user_id(); |
| 17 | ! isset( $active_tab ) ? $active_tab = 'my-courses' : 0; |
| 18 | |
| 19 | // Map required course status according to page. |
| 20 | $status_map = array( |
| 21 | 'my-courses' => CourseModel::STATUS_PUBLISH, |
| 22 | 'my-courses/draft-courses' => CourseModel::STATUS_DRAFT, |
| 23 | 'my-courses/pending-courses' => CourseModel::STATUS_PENDING, |
| 24 | ); |
| 25 | |
| 26 | // Set currently required course status fo rcurrent tab. |
| 27 | $status = isset( $status_map[ $active_tab ] ) ? $status_map[ $active_tab ] : CourseModel::STATUS_PUBLISH; |
| 28 | |
| 29 | // Get counts for course tabs. |
| 30 | $count_map = array( |
| 31 | 'publish' => CourseModel::get_courses_by_instructor( $current_user_id, CourseModel::STATUS_PUBLISH, 0, 0, true ), |
| 32 | 'pending' => CourseModel::get_courses_by_instructor( $current_user_id, CourseModel::STATUS_PENDING, 0, 0, true ), |
| 33 | 'draft' => CourseModel::get_courses_by_instructor( $current_user_id, CourseModel::STATUS_DRAFT, 0, 0, true ), |
| 34 | ); |
| 35 | |
| 36 | $course_archive_arg = isset( $GLOBALS['tutor_course_archive_arg'] ) ? $GLOBALS['tutor_course_archive_arg']['column_per_row'] : null; |
| 37 | $courseCols = null === $course_archive_arg ? tutor_utils()->get_option( 'courses_col_per_row', 4 ) : $course_archive_arg; |
| 38 | $per_page = tutor_utils()->get_option( 'courses_per_page', 10 ); |
| 39 | $paged = Input::get( 'current_page', 1, Input::TYPE_INT ); |
| 40 | $offset = $per_page * ( $paged - 1 ); |
| 41 | |
| 42 | $results = CourseModel::get_courses_by_instructor( $current_user_id, $status, $offset, $per_page ); |
| 43 | $show_course_delete = true; |
| 44 | if ( ! current_user_can( 'administrator' ) && ! tutor_utils()->get_option( 'instructor_can_delete_course' ) ) { |
| 45 | $show_course_delete = false; |
| 46 | } |
| 47 | ?> |
| 48 | |
| 49 | <div class="tutor-dashboard-my-courses"> |
| 50 | <div class="tutor-fs-5 tutor-fw-medium tutor-color-black tutor-mb-16"> |
| 51 | <?php esc_html_e( 'My Courses', 'tutor' ); ?> |
| 52 | </div> |
| 53 | |
| 54 | <div class="tutor-dashboard-content-inner"> |
| 55 | <div class="tutor-mb-32"> |
| 56 | <ul class="tutor-nav"> |
| 57 | <li class="tutor-nav-item"> |
| 58 | <a class="tutor-nav-link<?php echo esc_attr( 'my-courses' === $active_tab ? ' is-active' : '' ); ?>" href="<?php echo esc_url( tutor_utils()->get_tutor_dashboard_page_permalink( 'my-courses' ) ); ?>"> |
| 59 | <?php esc_html_e( 'Publish', 'tutor' ); ?> <?php echo esc_html( '(' . $count_map['publish'] . ')' ); ?> |
| 60 | </a> |
| 61 | </li> |
| 62 | <li class="tutor-nav-item"> |
| 63 | <a class="tutor-nav-link<?php echo esc_attr( 'my-courses/pending-courses' === $active_tab ? ' is-active' : '' ); ?>" href="<?php echo esc_url( tutor_utils()->get_tutor_dashboard_page_permalink( 'my-courses/pending-courses' ) ); ?>"> |
| 64 | <?php esc_html_e( 'Pending', 'tutor' ); ?> <?php echo esc_html( '(' . $count_map['pending'] . ')' ); ?> |
| 65 | </a> |
| 66 | </li> |
| 67 | <li class="tutor-nav-item"> |
| 68 | <a class="tutor-nav-link<?php echo esc_attr( 'my-courses/draft-courses' === $active_tab ? ' is-active' : '' ); ?>" href="<?php echo esc_url( tutor_utils()->get_tutor_dashboard_page_permalink( 'my-courses/draft-courses' ) ); ?>"> |
| 69 | <?php esc_html_e( 'Draft', 'tutor' ); ?> <?php echo esc_html( '(' . $count_map['draft'] . ')' ); ?> |
| 70 | </a> |
| 71 | </li> |
| 72 | </ul> |
| 73 | </div> |
| 74 | |
| 75 | <!-- Course list --> |
| 76 | <?php |
| 77 | $placeholder_img = tutor()->url . 'assets/images/placeholder.svg'; |
| 78 | |
| 79 | if ( ! is_array( $results ) || ( ! count( $results ) && 1 == $paged ) ) { |
| 80 | tutor_utils()->tutor_empty_state( tutor_utils()->not_found_text() ); |
| 81 | } else { |
| 82 | ?> |
| 83 | <div class="tutor-grid tutor-grid-3"> |
| 84 | <?php |
| 85 | global $post; |
| 86 | $tutor_nonce_value = wp_create_nonce( tutor()->nonce_action ); |
| 87 | foreach ( $results as $post ) : |
| 88 | setup_postdata( $post ); |
| 89 | |
| 90 | $avg_rating = tutor_utils()->get_course_rating()->rating_avg; |
| 91 | $tutor_course_img = get_tutor_course_thumbnail_src(); |
| 92 | $id_string_delete = 'tutor_my_courses_delete_' . $post->ID; |
| 93 | $row_id = 'tutor-dashboard-my-course-' . $post->ID; |
| 94 | $course_duration = get_tutor_course_duration_context( $post->ID, true ); |
| 95 | $course_students = tutor_utils()->count_enrolled_users_by_course(); |
| 96 | $is_main_instructor = CourseModel::is_main_instructor( $post->ID ); |
| 97 | ?> |
| 98 | |
| 99 | <div id="<?php echo esc_attr( $row_id ); ?>" class="tutor-card tutor-course-card tutor-mycourse-<?php the_ID(); ?>"> |
| 100 | <a href="<?php echo esc_url( get_the_permalink() ); ?>" class="tutor-d-block"> |
| 101 | <div class="tutor-ratio tutor-ratio-16x9"> |
| 102 | <img class="tutor-card-image-top" src="<?php echo empty( $tutor_course_img ) ? esc_url( $placeholder_img ) : esc_url( $tutor_course_img ); ?>" alt="<?php the_title(); ?>" loading="lazy"> |
| 103 | </div> |
| 104 | </a> |
| 105 | |
| 106 | <?php if ( false === $is_main_instructor ) : ?> |
| 107 | <div class="tutor-course-co-author-badge"><?php esc_html_e( 'Co-author', 'tutor' ); ?></div> |
| 108 | <?php endif; ?> |
| 109 | |
| 110 | <div class="tutor-card-body"> |
| 111 | <div class="tutor-meta tutor-mb-8"> |
| 112 | <span> |
| 113 | <?php echo esc_html( get_the_date() ); ?> <?php echo esc_html( get_the_time() ); ?> |
| 114 | </span> |
| 115 | </div> |
| 116 | |
| 117 | <div class="tutor-course-name tutor-fs-6 tutor-fw-bold tutor-mb-16"> |
| 118 | <a href="<?php echo esc_url( get_the_permalink() ); ?>"><?php the_title(); ?></a> |
| 119 | </div> |
| 120 | |
| 121 | <?php if ( ! empty( $course_duration ) || ! empty( $course_students ) ) : ?> |
| 122 | <div class="tutor-meta tutor-mt-16"> |
| 123 | <?php if ( ! empty( $course_duration ) ) : ?> |
| 124 | <div> |
| 125 | <span class="tutor-icon-clock-line tutor-meta-icon" area-hidden="true"></span> |
| 126 | <span class="tutor-meta-value"> |
| 127 | <?php |
| 128 | echo wp_kses( |
| 129 | stripslashes( $course_duration ), |
| 130 | array( |
| 131 | 'span' => array( 'class' => true ), |
| 132 | ) |
| 133 | ); |
| 134 | ?> |
| 135 | </span> |
| 136 | </div> |
| 137 | <?php endif; ?> |
| 138 | |
| 139 | <?php if ( ! empty( $course_students ) ) : ?> |
| 140 | <div> |
| 141 | <span class="tutor-icon-user-line tutor-meta-icon" area-hidden="true"></span> |
| 142 | <span class="tutor-meta-value"> |
| 143 | <?php |
| 144 | echo wp_kses( |
| 145 | stripslashes( $course_students ), |
| 146 | array( |
| 147 | 'span' => array( 'class' => true ), |
| 148 | ) |
| 149 | ); |
| 150 | ?> |
| 151 | </span> |
| 152 | </div> |
| 153 | <?php endif; ?> |
| 154 | </div> |
| 155 | <?php endif; ?> |
| 156 | </div> |
| 157 | |
| 158 | <div class="tutor-card-footer"> |
| 159 | <div class="tutor-d-flex tutor-align-center tutor-justify-between"> |
| 160 | <div class="tutor-d-flex tutor-align-center"> |
| 161 | <span class="tutor-fs-7 tutor-fw-medium tutor-color-black"> |
| 162 | <?php |
| 163 | $price = tutor_utils()->get_course_price(); |
| 164 | if ( null === $price ) { |
| 165 | esc_html_e( 'Free', 'tutor' ); |
| 166 | } else { |
| 167 | echo wp_kses_post( tutor_utils()->get_course_price() ); |
| 168 | } |
| 169 | ?> |
| 170 | </span> |
| 171 | </div> |
| 172 | <div class="tutor-iconic-btn-group tutor-mr-n8"> |
| 173 | <a href="<?php echo esc_url( tutor_utils()->course_edit_link( $post->ID, tutor()->has_pro ? 'frontend' : 'backend' ) ); ?>" class="tutor-iconic-btn tutor-my-course-edit"> |
| 174 | <i class="tutor-icon-edit" area-hidden="true"></i> |
| 175 | </a> |
| 176 | <div class="tutor-dropdown-parent"> |
| 177 | <button type="button" class="tutor-iconic-btn" action-tutor-dropdown="toggle"> |
| 178 | <span class="tutor-icon-kebab-menu" area-hidden="true"></span> |
| 179 | </button> |
| 180 | <div id="table-dashboard-course-list-<?php echo esc_attr( $post->ID ); ?>" class="tutor-dropdown tutor-dropdown-dark tutor-text-left"> |
| 181 | |
| 182 | <!-- Submit Action --> |
| 183 | <?php if ( tutor()->has_pro && in_array( $post->post_status, array( CourseModel::STATUS_DRAFT ), true ) ) : ?> |
| 184 | <?php |
| 185 | $params = http_build_query( |
| 186 | array( |
| 187 | 'tutor_action' => 'update_course_status', |
| 188 | 'status' => CourseModel::STATUS_PENDING, |
| 189 | 'course_id' => $post->ID, |
| 190 | tutor()->nonce => $tutor_nonce_value, |
| 191 | ) |
| 192 | ); |
| 193 | ?> |
| 194 | <a class="tutor-dropdown-item" href="?<?php echo esc_attr( $params ); ?>"> |
| 195 | <i class="tutor-icon-share tutor-mr-8" area-hidden="true"></i> |
| 196 | <span> |
| 197 | <?php |
| 198 | $can_publish_course = current_user_can( 'administrator' ) || (bool) tutor_utils()->get_option( 'instructor_can_publish_course' ); |
| 199 | if ( $can_publish_course ) { |
| 200 | esc_html_e( 'Publish', 'tutor' ); |
| 201 | } else { |
| 202 | esc_html_e( 'Submit', 'tutor' ); |
| 203 | } |
| 204 | ?> |
| 205 | </span> |
| 206 | </a> |
| 207 | <?php endif; ?> |
| 208 | <!-- # Submit Action --> |
| 209 | |
| 210 | <!-- Duplicate Action --> |
| 211 | <?php if ( tutor()->has_pro && in_array( $post->post_status, array( CourseModel::STATUS_PUBLISH, CourseModel::STATUS_PENDING, CourseModel::STATUS_DRAFT ) ) ) : ?> |
| 212 | <?php |
| 213 | $params = http_build_query( |
| 214 | array( |
| 215 | 'tutor_action' => 'duplicate_course', |
| 216 | 'course_id' => $post->ID, |
| 217 | ) |
| 218 | ); |
| 219 | ?> |
| 220 | <a class="tutor-dropdown-item" href="?<?php echo esc_attr( $params ); ?>"> |
| 221 | <i class="tutor-icon-copy-text tutor-mr-8" area-hidden="true"></i> |
| 222 | <span><?php esc_html_e( 'Duplicate', 'tutor' ); ?></span> |
| 223 | </a> |
| 224 | <?php endif; ?> |
| 225 | <!-- # Duplicate Action --> |
| 226 | |
| 227 | <!-- Move to Draf Action --> |
| 228 | <?php if ( tutor()->has_pro && in_array( $post->post_status, array( CourseModel::STATUS_PUBLISH ) ) ) : ?> |
| 229 | <?php |
| 230 | $params = http_build_query( |
| 231 | array( |
| 232 | 'tutor_action' => 'update_course_status', |
| 233 | 'status' => CourseModel::STATUS_DRAFT, |
| 234 | 'course_id' => $post->ID, |
| 235 | tutor()->nonce => $tutor_nonce_value, |
| 236 | ) |
| 237 | ); |
| 238 | ?> |
| 239 | <a class="tutor-dropdown-item" href="?<?php echo esc_attr( $params ); ?>"> |
| 240 | <i class="tutor-icon-archive tutor-mr-8" area-hidden="true"></i> |
| 241 | <span><?php esc_html_e( 'Move to Draft', 'tutor' ); ?></span> |
| 242 | </a> |
| 243 | <?php endif; ?> |
| 244 | <!-- # Move to Draft Action --> |
| 245 | |
| 246 | <!-- Cancel Submission --> |
| 247 | <?php if ( tutor()->has_pro && in_array( $post->post_status, array( CourseModel::STATUS_PENDING ) ) ) : ?> |
| 248 | <?php |
| 249 | $params = http_build_query( |
| 250 | array( |
| 251 | 'tutor_action' => 'update_course_status', |
| 252 | 'status' => CourseModel::STATUS_DRAFT, |
| 253 | 'course_id' => $post->ID, |
| 254 | tutor()->nonce => $tutor_nonce_value, |
| 255 | ) |
| 256 | ); |
| 257 | ?> |
| 258 | <a href="?<?php echo esc_attr( $params ); ?>" class="tutor-dropdown-item"> |
| 259 | <i class="tutor-icon-times tutor-mr-8" area-hidden="true"></i> |
| 260 | <span><?php esc_html_e( 'Cancel Submission', 'tutor' ); ?></span> |
| 261 | </a> |
| 262 | <?php endif; ?> |
| 263 | <!-- # Cancel Submission --> |
| 264 | |
| 265 | <!-- Delete Action --> |
| 266 | <?php if ( $is_main_instructor && in_array( $post->post_status, array( CourseModel::STATUS_PUBLISH, CourseModel::STATUS_DRAFT ) ) ) : ?> |
| 267 | <?php if ( $show_course_delete ) : ?> |
| 268 | <a href="#" data-tutor-modal-target="<?php echo esc_attr( $id_string_delete ); ?>" class="tutor-dropdown-item tutor-admin-course-delete"> |
| 269 | <i class="tutor-icon-trash-can-bold tutor-mr-8" area-hidden="true"></i> |
| 270 | <span><?php esc_html_e( 'Delete', 'tutor' ); ?></span> |
| 271 | </a> |
| 272 | <?php endif; ?> |
| 273 | <?php endif; ?> |
| 274 | <!-- # Delete Action --> |
| 275 | |
| 276 | </div> |
| 277 | </div> |
| 278 | </div> |
| 279 | </div> |
| 280 | </div> |
| 281 | |
| 282 | <!-- Delete prompt modal --> |
| 283 | <div id="<?php echo esc_attr( $id_string_delete ); ?>" class="tutor-modal"> |
| 284 | <div class="tutor-modal-overlay"></div> |
| 285 | <div class="tutor-modal-window"> |
| 286 | <div class="tutor-modal-content tutor-modal-content-white"> |
| 287 | <button class="tutor-iconic-btn tutor-modal-close-o" data-tutor-modal-close> |
| 288 | <span class="tutor-icon-times" area-hidden="true"></span> |
| 289 | </button> |
| 290 | |
| 291 | <div class="tutor-modal-body tutor-text-center"> |
| 292 | <div class="tutor-mt-48"> |
| 293 | <img class="tutor-d-inline-block" src="<?php echo esc_attr( tutor()->url ); ?>assets/images/icon-trash.svg" /> |
| 294 | </div> |
| 295 | |
| 296 | <div class="tutor-fs-3 tutor-fw-medium tutor-color-black tutor-mb-12"><?php esc_html_e( 'Delete This Course?', 'tutor' ); ?></div> |
| 297 | <div class="tutor-fs-6 tutor-color-muted"><?php esc_html_e( 'Are you sure you want to delete this course permanently from the site? Please confirm your choice.', 'tutor' ); ?></div> |
| 298 | |
| 299 | <div class="tutor-d-flex tutor-justify-center tutor-my-48"> |
| 300 | <button data-tutor-modal-close class="tutor-btn tutor-btn-outline-primary"> |
| 301 | <?php esc_html_e( 'Cancel', 'tutor' ); ?> |
| 302 | </button> |
| 303 | <button class="tutor-btn tutor-btn-primary tutor-list-ajax-action tutor-ml-20" data-request_data='{"course_id":<?php echo esc_attr( $post->ID ); ?>,"action":"tutor_delete_dashboard_course","redirect_to":"<?php echo esc_url( tutor_utils()->get_current_url() ); ?>"}' data-delete_element_id="<?php echo esc_attr( $row_id ); ?>"> |
| 304 | <?php esc_html_e( 'Yes, Delete This', 'tutor' ); ?> |
| 305 | </button> |
| 306 | </div> |
| 307 | </div> |
| 308 | </div> |
| 309 | </div> |
| 310 | </div> |
| 311 | </div> |
| 312 | <?php |
| 313 | endforeach; |
| 314 | wp_reset_postdata(); |
| 315 | ?> |
| 316 | </div> |
| 317 | <div class="tutor-mt-20"> |
| 318 | <?php |
| 319 | if ( $count_map[ $status ] > $per_page ) { |
| 320 | $pagination_data = array( |
| 321 | 'total_items' => $count_map[ $status ], |
| 322 | 'per_page' => $per_page, |
| 323 | 'paged' => $paged, |
| 324 | ); |
| 325 | |
| 326 | tutor_load_template_from_custom_path( |
| 327 | tutor()->path . 'templates/dashboard/elements/pagination.php', |
| 328 | $pagination_data |
| 329 | ); |
| 330 | } |
| 331 | ?> |
| 332 | |
| 333 | </div> |
| 334 | <?php |
| 335 | } |
| 336 | ?> |
| 337 | </div> |
| 338 | </div> |
| 339 |