PluginProbe
Tutor LMS – eLearning and online course solution / 1.4.1
Tutor LMS – eLearning and online course solution v1.4.1
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
26 lines 952 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 <?php if(current_user_can(tutor()->instructor_role)){ ?>
18 <li>
19 <a href="<?php echo esc_url($withdraw); ?>"> <?php _e('Withdraw', 'tutor'); ?></a>
20 </li>
21 <?php } ?>
22
23 </ul>
24 </div>
25
26 </div>