announcements
5 years ago
assignments
5 years ago
earning
5 years ago
enrolled-courses
5 years ago
instructor
5 years ago
my-quiz-attempts
5 years ago
notifications
5 years ago
question-answer
5 years ago
quiz-attempts
5 years ago
reviews
5 years ago
settings
5 years ago
withdraw-method-fields
5 years ago
announcements.php
5 years ago
assignments.php
5 years ago
create-course.php
5 years ago
dashboard.php
5 years ago
earning.php
5 years ago
enrolled-courses.php
5 years ago
index.php
5 years ago
logged-in.php
5 years ago
my-courses.php
5 years ago
my-profile.php
5 years ago
my-quiz-attempts.php
5 years ago
purchase_history.php
5 years ago
question-answer.php
5 years ago
quiz-attempts.php
5 years ago
registration.php
5 years ago
reviews.php
5 years ago
settings.php
5 years ago
wishlist.php
5 years ago
withdraw.php
5 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', ['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 | } |
| 24 | else{ |
| 25 | foreach($GLOBALS['tutor_setting_nav'] as $page){ |
| 26 | echo '<script>window.location.replace("',$page['url'],'");</script>'; |
| 27 | break; |
| 28 | } |
| 29 | } |
| 30 | ?> |