PluginProbe
Tutor LMS – eLearning and online course solution / 3.7.2
Tutor LMS – eLearning and online course solution v3.7.2
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.php
settings.php
33 lines 775 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Frontend Settings Page
4 *
5 * @package Tutor\Templates
6 * @subpackage Dashboard
7 * @author Themeum <support@themeum.com>
8 * @link https://themeum.com
9 * @version 1.4.3
10 */
11
12 ?>
13 <div class="tutor-fs-4 tutor-fw-medium tutor-mb-24"><?php esc_html_e( 'Settings', 'tutor' ); ?></div>
14
15 <div class="tutor-dashboard-content-inner">
16 <div class="tutor-mb-32">
17 <?php
18 tutor_load_template( 'dashboard.settings.nav-bar', array( 'active_setting_nav' => 'profile' ) );
19 ?>
20 </div>
21 </div>
22
23 <?php
24 if ( isset( $GLOBALS['tutor_setting_nav']['profile'] ) ) {
25 tutor_load_template( 'dashboard.settings.profile' );
26 } else {
27 foreach ( $GLOBALS['tutor_setting_nav'] as $page ) {
28 echo '<script>window.location.replace("', esc_url( $page['url'] ), '");</script>';
29 break;
30 }
31 }
32 ?>
33