announcements
4 years ago
assignments
4 years ago
earning
4 years ago
enrolled-courses
4 years ago
instructor
4 years ago
my-quiz-attempts
4 years ago
notifications
4 years ago
question-answer
4 years ago
quiz-attempts
4 years ago
reviews
4 years ago
settings
4 years ago
withdraw-method-fields
4 years ago
announcements.php
4 years ago
assignments.php
4 years ago
create-course.php
4 years ago
dashboard-menu.php
4 years ago
dashboard.php
4 years ago
earning.php
4 years ago
enrolled-courses.php
4 years ago
index.php
4 years ago
logged-in.php
5 years ago
my-courses.php
4 years ago
my-profile.php
4 years ago
my-quiz-attempts.php
4 years ago
purchase_history.php
4 years ago
question-answer.php
4 years ago
quiz-attempts.php
4 years ago
registration.php
4 years ago
reviews.php
4 years ago
settings.php
4 years ago
wishlist.php
4 years ago
withdraw.php
4 years ago
settings.php
30 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @package TutorLMS/Templates |
| 4 | * @version 1.4.3 |
| 5 | */ |
| 6 | |
| 7 | ?> |
| 8 | <h3><?php _e( 'Settings', 'tutor' ); ?></h3> |
| 9 | |
| 10 | <div class="tutor-dashboard-content-inner"> |
| 11 | |
| 12 | <div class="tutor-dashboard-inline-links"> |
| 13 | <?php |
| 14 | tutor_load_template( 'dashboard.settings.nav-bar', array( 'active_setting_nav' => 'profile' ) ); |
| 15 | ?> |
| 16 | </div> |
| 17 | |
| 18 | </div> |
| 19 | |
| 20 | <?php |
| 21 | if ( isset( $GLOBALS['tutor_setting_nav']['profile'] ) ) { |
| 22 | tutor_load_template( 'dashboard.settings.profile' ); |
| 23 | } else { |
| 24 | foreach ( $GLOBALS['tutor_setting_nav'] as $page ) { |
| 25 | echo '<script>window.location.replace("', esc_url( $page['url'] ), '");</script>'; |
| 26 | break; |
| 27 | } |
| 28 | } |
| 29 | ?> |
| 30 |