PluginProbe
WP Courses LMS – Online Courses Builder, eLearning Courses, Courses Solution, Education Courses / trunk
WP Courses LMS – Online Courses Builder, eLearning Courses, Courses Solution, Education Courses vtrunk
3.2.30 trunk 3.1.40 3.1.41 3.1.42 3.1.43 3.2.0 3.2.1 3.2.10 3.2.11 3.2.12 3.2.13 3.2.14 3.2.15 3.2.16 3.2.17 3.2.18 3.2.19 3.2.2 3.2.20 3.2.21 3.2.22 3.2.23 3.2.24 3.2.25 All 36 releases
wp-courses / admin / dashboard.php

dashboard.php in WP Courses LMS – Online Courses Builder, eLearning Courses, Courses Solution, Education Courses trunk, at admin/dashboard.php

58 lines 2.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 global $wpdb;
3 $table_name = $wpdb->prefix . 'wpc_tracking';
4 $sql = "SELECT DISTINCT user_id FROM $table_name";
5 $results = $wpdb->get_results($sql);
6 $user_count = $wpdb->num_rows;
7
8 ?>
9
10 <?php do_action('wpc_after_dashboard_data'); ?>
11 <div class="wpc-flex-container">
12 <div class="wpc-flex-content wpc-flex-content-large">
13 <div class="wpc-flex-container">
14
15 <div class="wpc-flex-4 wpc-material wpc-fade">
16 <h2 class="wpc-material-heading" style="text-align: center;">Active Students</h2>
17 <div class="wpc-meta-lg wpc-center" style="color: #FCD46C;"><?php echo (int) $user_count; ?></div>
18 </div>
19
20 <div class="wpc-flex-4 wpc-material wpc-fade">
21 <h2 class="wpc-material-heading" style="text-align: center;">Courses</h2>
22 <div class="wpc-meta-lg wpc-center" style="color: #E21772;"><?php echo (int) wp_count_posts('course')->publish; ?></div>
23 </div>
24
25 <div class="wpc-flex-4 wpc-material wpc-fade">
26 <h2 class="wpc-material-heading" style="text-align: center;">Lessons</h2>
27 <div class="wpc-meta-lg wpc-center" style="color: #89D6E2;"><?php echo (int) wp_count_posts('lesson')->publish; ?></div>
28 </div>
29
30 </div>
31
32 <div class="wpc-flex-container">
33
34 <div class="wpc-flex-12 wpc-material wpc-fade">
35 <h2 class="wpc-material-heading"><?php esc_html_e('Tracking Data', 'wp-courses'); ?></h2>
36 <?php include 'charts/chart-tracking-data.php'; ?>
37 </div>
38
39 <div class="wpc-flex-6 wpc-material wpc-fade">
40 <h2 class="wpc-material-heading"><?php esc_html_e('Popular Courses by % Viewed or Completed', 'wp-courses'); ?></h2>
41 <?php include 'charts/chart-popular-courses.php'; ?>
42 </div>
43
44 <div class="wpc-flex-6 wpc-material wpc-fade">
45 <h2 class="wpc-material-heading"><?php esc_html_e('Most Active Users', 'wp-courses'); ?></h2>
46 <?php include 'charts/chart-most-active-users.php'; ?>
47 </div>
48
49 </div>
50
51 </div>
52
53 </div>
54
55
56
57
58