tools
5 years ago
add_new_instructor.php
5 years ago
addons.php
5 years ago
announcements.php
5 years ago
answer.php
5 years ago
enable_disable_addons.php
5 years ago
get-pro.php
5 years ago
instructors.php
5 years ago
question_answer.php
5 years ago
quiz_attempts.php
5 years ago
students.php
5 years ago
tools.php
5 years ago
tutor-pro-addons.php
5 years ago
uninstall.php
5 years ago
view_attempt.php
5 years ago
withdraw_requests.php
5 years ago
students.php
16 lines
| 1 | <?php |
| 2 | $studentList = new \TUTOR\Students_List(); |
| 3 | $studentList->prepare_items(); |
| 4 | ?> |
| 5 | |
| 6 | |
| 7 | <div class="wrap"> |
| 8 | <h2><?php _e('Students', 'tutor'); ?></h2> |
| 9 | |
| 10 | <form id="students-filter" method="get"> |
| 11 | <input type="hidden" name="page" value="<?php echo $_REQUEST['page'] ?>" /> |
| 12 | <?php |
| 13 | $studentList->search_box(__('Search', 'tutor'), 'students'); |
| 14 | $studentList->display(); ?> |
| 15 | </form> |
| 16 | </div> |