course-completion-chart.php
5 days ago
overview-chart.php
5 days ago
recent-student-review-item.php
5 days ago
top-performing-course-filter.php
5 days ago
top-performing-course-item.php
5 days ago
upcoming-task-item.php
5 days ago
overview-chart.php
37 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Overview Chart Component - Earnings Over Time |
| 4 | * |
| 5 | * @package Tutor\Templates |
| 6 | * @author Themeum <support@themeum.com> |
| 7 | * @link https://themeum.com |
| 8 | * @since 4.0.0 |
| 9 | */ |
| 10 | |
| 11 | defined( 'ABSPATH' ) || exit; |
| 12 | ?> |
| 13 | |
| 14 | <!-- Overview Chart --> |
| 15 | |
| 16 | <div |
| 17 | data-section-id="overview_chart" |
| 18 | class="tutor-dashboard-home-chart" |
| 19 | x-show="watch('overview_chart')" |
| 20 | x-cloak |
| 21 | > |
| 22 | <div class="tutor-dashboard-home-chart-header"> |
| 23 | <div class="tutor-small"> |
| 24 | <?php esc_html_e( 'Earnings Over Time', 'tutor' ); ?> |
| 25 | </div> |
| 26 | <div class="tutor-flex tutor-align-center tutor-gap-6"> |
| 27 | <div class="tutor-dashboard-home-chart-legend" data-color="brand"> |
| 28 | <?php esc_html_e( 'Earnings', 'tutor' ); ?> |
| 29 | </div> |
| 30 | <div class="tutor-dashboard-home-chart-legend" data-color="success"> |
| 31 | <?php esc_html_e( 'Enrolled', 'tutor' ); ?> |
| 32 | </div> |
| 33 | </div> |
| 34 | </div> |
| 35 | <canvas class="tutor-dashboard-home-chart-canvas" x-data='tutorOverviewChart(<?php echo esc_attr( wp_json_encode( $overview_chart_data ) ); ?>)' x-ref="canvas"></canvas> |
| 36 | </div> |
| 37 |