PluginProbe
Tutor LMS – eLearning and online course solution / 1.6.8
Tutor LMS – eLearning and online course solution v1.6.8
4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 4.0.2 4.0.1 4.0.0 3.9.15 3.9.14 3.9.13 3.9.12 3.9.11 trunk 1.0.0 1.0.0-alpha 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 All 191 releases
tutor / templates / dashboard / settings / education.php
education.php
31 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * @package TutorLMS/Templates
4 * @version 1.4.3
5 */
6 ?>
7 <h3><?php _e('Settings', 'tutor') ?></h3>
8
9 <div class="tutor-dashboard-content-inner">
10
11 <div class="tutor-dashboard-inline-links">
12 <?php
13 $settings_url = tutor_utils()->get_tutor_dashboard_page_permalink('settings');
14 $education = tutor_utils()->get_tutor_dashboard_page_permalink('settings/education');
15 $skill = tutor_utils()->get_tutor_dashboard_page_permalink('settings/skill');
16 $withdraw = tutor_utils()->get_tutor_dashboard_page_permalink('settings/withdraw-settings');
17 ?>
18 <ul>
19 <li>
20 <a href="<?php echo esc_url($settings_url); ?>"> <?php _e('Profile', 'tutor'); ?></a>
21 </li>
22 <?php if(current_user_can(tutor()->instructor_role)){ ?>
23 <li>
24 <a href="<?php echo esc_url($withdraw); ?>"> <?php _e('Withdraw', 'tutor'); ?></a>
25 </li>
26 <?php } ?>
27
28 </ul>
29 </div>
30
31 </div>