Sindbad~EG File Manager
<?php
/**
* Template for displaying user time on course.
*
* @author ThimPress
* @package LearnPress/Templates
* @version 4.0.1
*/
defined( 'ABSPATH' ) || exit;
/**
* @var string $status
* @var LP_Datetime $start_time
* @var LP_Datetime $end_time
* @var LP_Datetime $expiration_time
*/
$time = current_time( 'mysql', true );
$user = LP_Global::user();
$course = LP_Global::course();
?>
<div class="course-time">
<p class="course-time-row">
<strong><?php esc_html_e( 'You started on:', 'learnpress' ); ?></strong>
<time class="entry-date enrolled"><?php echo $start_time->format( 'i18n' ); ?></time>
</p>
<?php if ( in_array( $status, array( learn_press_user_item_in_progress_slug(), 'enrolled' ) ) ) : ?>
<?php if ( $expiration_time ) : ?>
<p class="course-time-row">
<strong><?php esc_html_e( 'Course will end:', 'learnpress' ); ?></strong>
<time class="entry-date expire"><?php echo $expiration_time->format( 'i18n' ); ?></time>
</p>
<?php else : ?>
<p class="course-time-row">
<strong><?php esc_html_e( 'Duration:', 'learnpress' ); ?></strong>
<?php esc_html_e( 'Lifetime', 'learnpress' ); ?>
</p>
<?php endif; ?>
<?php elseif ( $status === 'finished' && $end_time ) : ?>
<p class="course-time-row">
<strong><?php esc_html_e( 'You finished on:', 'learnpress' ); ?></strong>
<time class="entry-date finished"><?php echo $end_time->format( 'i18n' ); ?></time>
</p>
<?php endif; ?>
</div>
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists