tools
5 years ago
add_new_instructor.php
4 years ago
addons.php
5 years ago
announcements.php
4 years ago
answer.php
4 years ago
enable_disable_addons.php
4 years ago
get-pro.php
5 years ago
instructors.php
4 years ago
question_answer.php
4 years ago
quiz_attempts.php
4 years ago
students.php
4 years ago
tools.php
5 years ago
tutor-pro-addons.php
5 years ago
uninstall.php
4 years ago
view_attempt.php
4 years ago
withdraw_requests.php
4 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 esc_html_e( 'Students', 'tutor' ); ?></h2> |
| 9 | |
| 10 | <form id="students-filter" method="get"> |
| 11 | <input type="hidden" name="page" value="<?php echo esc_attr( \Tutor\Students_List::STUDENTS_LIST_PAGE ); ?>" /> |
| 12 | <?php |
| 13 | $studentList->search_box( __( 'Search', 'tutor' ), 'students' ); |
| 14 | $studentList->display(); ?> |
| 15 | </form> |
| 16 | </div> |