education.php
7 years ago
profile.php
7 years ago
reset-password.php
7 years ago
skill.php
7 years ago
withdraw-settings.php
7 years ago
skill.php
30 lines
| 1 | |
| 2 | <h3><?php _e('Settings', 'tutor') ?></h3> |
| 3 | |
| 4 | <div class="tutor-dashboard-content-inner"> |
| 5 | |
| 6 | <div class="tutor-dashboard-inline-links"> |
| 7 | <?php |
| 8 | $settings_url = tutor_utils()->get_tutor_dashboard_page_permalink('settings'); |
| 9 | $education = tutor_utils()->get_tutor_dashboard_page_permalink('settings/education'); |
| 10 | $skill = tutor_utils()->get_tutor_dashboard_page_permalink('settings/skill'); |
| 11 | $withdraw = tutor_utils()->get_tutor_dashboard_page_permalink('settings/withdraw-settings'); |
| 12 | ?> |
| 13 | <ul> |
| 14 | <li> |
| 15 | <a href="<?php echo esc_url($settings_url); ?>"> <?php _e('Profile', 'tutor'); ?></a> |
| 16 | </li> |
| 17 | <!--<li> |
| 18 | <a href="<?php /*echo esc_url($education); */?>"> <?php /*_e('Education'); */?></a> |
| 19 | </li> |
| 20 | <li class="active"> |
| 21 | <a href="<?php /*echo esc_url($skill); */?>"> <?php /*_e('Expertise & Skill'); */?></a> |
| 22 | </li>--> |
| 23 | <li> |
| 24 | <a href="<?php echo esc_url($withdraw); ?>"> <?php _e('Withdraw', 'tutor'); ?></a> |
| 25 | </li> |
| 26 | |
| 27 | </ul> |
| 28 | </div> |
| 29 | |
| 30 | </div> |