received-reviews.php
34 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Reviews received |
| 4 | * |
| 5 | * @since v.1.2.13 |
| 6 | * |
| 7 | * @author Themeum |
| 8 | * @url https://themeum.com |
| 9 | * @package Tutor |
| 10 | */ |
| 11 | |
| 12 | ?> |
| 13 | |
| 14 | <div class="tutor-dashboard-content-inner"> |
| 15 | <h3><?php _e(sprintf("My Reviews"), 'tutor'); ?></h3> |
| 16 | <div class="tutor-dashboard-inline-links"> |
| 17 | <ul> |
| 18 | <li><a href="<?php echo tutor_utils()->get_tutor_dashboard_page_permalink('reviews'); ?>"> <?php _e('Given (15)'); ?></a> </li> |
| 19 | <li class="active"><a href="<?php echo tutor_utils()->get_tutor_dashboard_page_permalink('reviews/received-reviews'); ?>"> <?php _e('Received (27)'); ?></a> </li> |
| 20 | </ul> |
| 21 | </div> |
| 22 | <div class=" tutor-course-reviews-wrap"> |
| 23 | |
| 24 | <?php |
| 25 | // TODO: Need get_reviews_by_instructor() function to get instructor reviews |
| 26 | |
| 27 | ?> |
| 28 | |
| 29 | <div class="tutor-reviews-list"> |
| 30 | Review Received Contents |
| 31 | </div> |
| 32 | </div> |
| 33 | </div> |
| 34 |