File: /home/mobilech/alliancelaptoptraining.com.np/wp-content/plugins/tutor/templates/dashboard.php
<?php
/**
* Template for displaying frontend dashboard
*
* @package Tutor\Templates
* @author Themeum <support@themeum.com>
* @link https://themeum.com
* @since 1.4.3
*/
defined( 'ABSPATH' ) || exit;
use Tutor\Components\Alert;
use Tutor\Components\EmptyState;
use TUTOR\Dashboard;
use TUTOR\Icon;
use TUTOR\User;
global $wp_query;
$dashboard_page_slug = '';
$dashboard_page_subslug = '';
$dashboard_page_name = '';
$page_data = array();
if ( isset( $wp_query->query_vars['tutor_dashboard_page'] ) && $wp_query->query_vars['tutor_dashboard_page'] ) {
$dashboard_page_slug = $wp_query->query_vars['tutor_dashboard_page'];
$dashboard_page_name = $wp_query->query_vars['tutor_dashboard_page'];
}
/**
* Getting dashboard sub pages
*/
if ( isset( $wp_query->query_vars['tutor_dashboard_sub_page'] ) && $wp_query->query_vars['tutor_dashboard_sub_page'] ) {
$dashboard_page_subslug = $wp_query->query_vars['tutor_dashboard_sub_page'];
$dashboard_page_name = $dashboard_page_subslug;
if ( $dashboard_page_slug ) {
$dashboard_page_name = $dashboard_page_slug . '/' . $dashboard_page_name;
}
}
$dashboard_page_name = apply_filters( 'tutor_dashboard_sub_page_template', $dashboard_page_name );
$dashboard_pages = tutor_utils()->tutor_dashboard_nav_ui_items();
$dashboard_pages = array_merge(
array(
'index' => array(
'title' => __( 'Dashboard', 'tutor' ),
),
),
$dashboard_pages
);
$page_meta = Dashboard::get_page_meta_data( $dashboard_page_slug ? $dashboard_page_slug : 'index', $dashboard_page_subslug, $dashboard_pages );
$meta_title = $page_meta['meta_title'];
Dashboard::set_document_title( $meta_title );
$is_by_short_code = isset( $is_shortcode ) && true === $is_shortcode;
if ( ! $is_by_short_code && ! defined( 'OTLMS_VERSION' ) ) :
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<?php wp_head(); ?>
</head>
<body <?php body_class( '' ); ?>>
<?php wp_body_open(); ?>
<?php
endif;
$user_id = get_current_user_id();
$user = get_user_by( 'ID', $user_id );
$enable_profile_completion = tutor_utils()->get_option( 'enable_profile_completion' );
$is_instructor = tutor_utils()->is_instructor();
$is_tour_completed = get_user_meta( $user_id, User::TOUR_COMPLETED_META, true );
// URLS.
$current_url = tutor()->current_url;
$footer_url_1 = trailingslashit( tutor_utils()->tutor_dashboard_url( $is_instructor ? 'my-courses' : '' ) );
$footer_url_2 = trailingslashit( tutor_utils()->tutor_dashboard_url( $is_instructor ? 'question-answer' : 'my-quiz-attempts' ) );
// Footer links.
$footer_links = array(
array(
'title' => $is_instructor ? __( 'My Courses', 'tutor' ) : __( 'Dashboard', 'tutor' ),
'url' => $footer_url_1,
'is_active' => $footer_url_1 == $current_url,
'icon_class' => 'ttr tutor-icon-dashboard',
),
array(
'title' => $is_instructor ? __( 'Q&A', 'tutor' ) : __( 'Quiz Attempts', 'tutor' ),
'url' => $footer_url_2,
'is_active' => $footer_url_2 == $current_url,
'icon_class' => $is_instructor ? 'ttr tutor-icon-question' : 'ttr tutor-icon-quiz-attempt',
),
array(
'title' => __( 'Menu', 'tutor' ),
'url' => '#',
'is_active' => false,
'icon_class' => 'ttr tutor-icon-hamburger-o tutor-dashboard-menu-toggler',
),
);
?>
<?php do_action( 'tutor_dashboard/before/wrap' ); ?>
<div class="tutor-dashboard-layout">
<?php tutor_load_template( 'dashboard.components.sidebar' ); ?>
<div class="tutor-dashboard-main">
<?php tutor_load_template( 'dashboard.components.header' ); ?>
<div class="tutor-dashboard-body" role="main">
<div class="tutor-dashboard-page">
<?php
if ( User::used_instructor_registration() && User::has_pending_instructor_application() && $dashboard_page_slug ) {
tutor_load_template( 'dashboard.instructor.instructor-request-alert' );
EmptyState::make()
->title( __( 'Your application is under review', 'tutor' ) )
->subtitle( __( 'Only your dashboard home is available while your instructor application is pending.', 'tutor' ) )
->attr( 'class', 'tutor-surface-l1 tutor-border tutor-rounded-2xl' )
->render();
} elseif ( $dashboard_page_name ) {
do_action( 'tutor_load_dashboard_template_before', $dashboard_page_name );
/**
* Load dashboard template part from other location
*
* This filter is basically added for adding templates from respective addons
*
* @since version 1.9.3
*/
$other_location = '';
$from_other_location = apply_filters( 'load_dashboard_template_part_from_other_location', $other_location );
if ( '' == $from_other_location ) {
tutor_load_template( 'dashboard.' . $dashboard_page_name );
} else {
// Load template from other location full abspath.
include_once $from_other_location;
}
do_action( 'tutor_load_dashboard_template_after', $dashboard_page_name );
} elseif ( User::is_instructor_view() ) {
tutor_load_template( 'dashboard.dashboard' );
} else {
tutor_load_template( 'dashboard.student.dashboard' );
}
?>
</div>
</div>
</div>
</div>
<?php if ( User::is_student_view() && ! $is_tour_completed ) : ?>
<?php tutor_load_template( 'shared.tour' ); ?>
<?php endif; ?>
<?php do_action( 'tutor_dashboard/after/wrap' ); ?>
<?php if ( ! $is_by_short_code && ! defined( 'OTLMS_VERSION' ) ) : ?>
<?php wp_footer(); ?>
<?php endif; ?>
</body>
</html>