PluginProbe
Tutor LMS – eLearning and online course solution / 1.3.7
Tutor LMS – eLearning and online course solution v1.3.7
4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 4.0.2 4.0.1 4.0.0 3.9.15 3.9.14 3.9.13 3.9.12 3.9.11 trunk 1.0.0 1.0.0-alpha 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 All 191 releases
tutor / templates / dashboard / instructor / logged-in.php
logged-in.php
21 lines 608 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 $is_instructor = tutor_utils()->is_instructor();
3 if ($is_instructor){
4 ?>
5
6 <div class="tutor-alert-warning tutor-instructor-alert">
7 <h2><?php _e("You are instructor", 'tutor'); ?></h2>
8
9 <p>
10 <?php _e(sprintf("Registered at : %s %s", date_i18n(get_option('date_format'), $is_instructor), date_i18n(get_option('time_format'), $is_instructor) ), 'tutor'); ?>
11 </p>
12
13 <p>
14 <?php _e(sprintf('Status : %s', tutor_utils()->instructor_status()), 'tutor'); ?>
15 </p>
16
17 </div>
18
19 <?php }else{
20 tutor_load_template('dashboard.instructor.apply_for_instructor');
21 } ?>