course-filter
4 years ago
dashboard
4 years ago
email
4 years ago
global
4 years ago
loop
4 years ago
profile
4 years ago
shortcode
4 years ago
single
4 years ago
template-part
4 years ago
widget
4 years ago
archive-course-init.php
4 years ago
archive-course.php
4 years ago
course-none.php
4 years ago
dashboard.php
4 years ago
feature_disabled.php
4 years ago
instructor-setting.php
4 years ago
login.php
4 years ago
permission-denied.php
4 years ago
public-profile.php
4 years ago
single-assignment.php
4 years ago
single-content-loader.php
4 years ago
single-course.php
4 years ago
single-lesson.php
4 years ago
single-preview-lesson.php
4 years ago
single-quiz.php
4 years ago
template.php
4 years ago
permission-denied.php
66 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Display Permission denied |
| 4 | * |
| 5 | * @since v.1.0.0 |
| 6 | * @author themeum |
| 7 | * @url https://themeum.com |
| 8 | * |
| 9 | * @package TutorLMS/Templates |
| 10 | * @version 1.4.3 |
| 11 | * |
| 12 | * Template content and design updated |
| 13 | * |
| 14 | * @version 1.9.6 |
| 15 | */ |
| 16 | |
| 17 | if ( ! defined( 'ABSPATH' ) ) { |
| 18 | exit; |
| 19 | } |
| 20 | |
| 21 | tutor_utils()->tutor_custom_header(); |
| 22 | |
| 23 | ?> |
| 24 | |
| 25 | <div class="tutor-denied-wrapper"> |
| 26 | |
| 27 | <div class="image-wrapper" style="background-image: url(<?php echo esc_url( tutor()->url.'assets/images/emptystate.svg' );?>);"> |
| 28 | </div> |
| 29 | |
| 30 | <div class="tutor-denied-content-wrapper"> |
| 31 | <div> |
| 32 | <img src="<?php echo esc_url( tutor()->url.'assets/images/tutor-logo.png' );?>" class="tutor-logo" alt="tutor-logo"> |
| 33 | </div> |
| 34 | <div> |
| 35 | <span class="color-text-primary tutor-fs-3 tutor-fw-medium"> |
| 36 | <?php echo isset($headline) ? $headline : __( 'Permission Denied', 'tutor' ); ?> |
| 37 | </span> |
| 38 | <p class="tutor-mt-12"> |
| 39 | <?php echo isset($message) ? $message : __( 'You don\'t have enough privilege to access this page', 'tutor' ); ?> |
| 40 | </p> |
| 41 | <p> |
| 42 | <?php echo isset($description) ? $description : __('Please make sure you are logged in to correct account if the content needs authorization.', 'tutor'); ?> |
| 43 | </p> |
| 44 | </div> |
| 45 | |
| 46 | <div> |
| 47 | <?php |
| 48 | if(!isset($button)) { |
| 49 | $button = array( |
| 50 | 'url' => get_home_url(), |
| 51 | 'text' => 'Homepage' |
| 52 | ); |
| 53 | } |
| 54 | ?> |
| 55 | <a href="<?php echo $button['url']; ?>" class="tutor-btn"> |
| 56 | <?php echo $button['text']; ?> |
| 57 | </a> |
| 58 | </div> |
| 59 | |
| 60 | </div> |
| 61 | |
| 62 | </div> |
| 63 | |
| 64 | <?php |
| 65 | tutor_utils()->tutor_custom_footer(); |
| 66 |