%PDF- %PDF-
Direktori : /var/www/html/ceaa/wp-content/plugins/learnpress/templates/profile/tabs/ |
Current File : /var/www/html/ceaa/wp-content/plugins/learnpress/templates/profile/tabs/courses.php |
<?php /** * Template for displaying courses tab in user profile page. * * This template can be overridden by copying it to yourtheme/learnpress/tabs/courses.php. * * @author ThimPress * @package Learnpress/Templates * @version 3.0.0 */ /** * Prevent loading this file directly */ defined( 'ABSPATH' ) || exit(); $profile = learn_press_get_profile(); $query = $profile->query_courses(); if ( ! $query['total'] ) { learn_press_display_message( __( 'You haven\'t got any courses yet!', 'learnpress' ) ); return; } ?> <div class="learn-press-subtab-content"> <h3 class="profile-heading"><?php _e( 'My Courses', 'learnpress' ); ?></h3> <table class="lp-list-table profile-list-courses profile-list-table"> <thead> <tr> <th class="column-course"><?php _e( 'Course', 'learnpress' ); ?></th> <th class="column-date"><?php _e( 'Date', 'learnpress' ); ?></th> <th class="column-passing-grade"><?php _e( 'Passing Grade', 'learnpress' ); ?></th> <th class="column-status"><?php _e( 'Progress', 'learnpress' ); ?></th> </tr> </thead> <tbody> <?php foreach ( $query['items'] as $user_course ) { ?> <?php $course = learn_press_get_course( $user_course->get_id() ); ?> <tr> <td class="column-course"> <a href="<?php echo $course->get_permalink(); ?>"> <?php echo $course->get_title(); ?> </a> </td> <td class="column-date"><?php echo $user_course->get_start_time( 'd M Y' ); ?></td> <td class="column-passing-grade"><?php echo $course->get_passing_condition( true ); ?></td> <td class="column-status"> <span class="result-percent"><?php echo $user_course->get_percent_result(); ?></span> <span class="lp-label label-<?php echo esc_attr( $user_course->get_results( 'status' ) ); ?>"> <?php echo $user_course->get_status_label( $user_course->get_results( 'status' ) ); ?> </span> </td> </tr> <?php } ?> </tbody> <tfoot> <tr class="list-table-nav"> <td colspan="2" class="nav-text"> <?php echo $query->get_offset_text(); ?> </td> <td colspan="2" class="nav-pages"> <?php $query->get_nav_numbers( true ); ?> </td> </tr> </tfoot> </table> </div>