course-filter
1 year ago
dashboard
8 months ago
ecommerce
7 months ago
email
9 months ago
global
3 years ago
instructor
3 years ago
loop
9 months ago
modal
3 years ago
profile
3 years ago
shortcode
1 year ago
single
8 months ago
template-part
1 year ago
widget
3 years ago
archive-course-init.php
9 months ago
archive-course.php
3 years ago
course-embed.php
1 year ago
course-none.php
3 years ago
dashboard.php
1 year ago
feature_disabled.php
3 years ago
login-form.php
1 year ago
login.php
3 years ago
metabox-wrapper.php
3 years ago
permission-denied.php
3 years ago
public-profile.php
8 months ago
single-assignment.php
3 years ago
single-content-loader.php
2 years ago
single-course.php
9 months ago
single-lesson.php
3 years ago
single-preview-lesson.php
3 years ago
single-quiz.php
1 year ago
template.php
3 years ago
feature_disabled.php
49 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Display Permission denied |
| 4 | * |
| 5 | * @package Tutor\Templates |
| 6 | * @author Themeum <support@themeum.com> |
| 7 | * @link https://themeum.com |
| 8 | * @since 1.0.0 |
| 9 | */ |
| 10 | |
| 11 | if ( ! defined( 'ABSPATH' ) ) { |
| 12 | exit; |
| 13 | } |
| 14 | |
| 15 | ?> |
| 16 | <div class="tutor-disabled-wrapper"> |
| 17 | <div class="tutor-disabled-content-wrapper"> |
| 18 | <?php if ( isset( $image_path ) && '' !== $image_path ) : ?> |
| 19 | <div> |
| 20 | <center> |
| 21 | <img src="<?php echo esc_url( $image_path ); ?>" alt="disabled"> |
| 22 | </center> |
| 23 | </div> |
| 24 | <?php endif; ?> |
| 25 | |
| 26 | <div> |
| 27 | <?php if ( isset( $title ) && '' !== $title ) : ?> |
| 28 | <h3> |
| 29 | <?php echo esc_html( $title ); ?> |
| 30 | </h3> |
| 31 | <?php endif; ?> |
| 32 | |
| 33 | <?php if ( isset( $description ) && '' !== $description ) : ?> |
| 34 | <p> |
| 35 | <?php echo wp_kses_post( $description ); ?> |
| 36 | </p> |
| 37 | <?php endif; ?> |
| 38 | </div> |
| 39 | |
| 40 | <div> |
| 41 | <?php if ( isset( $button ) && count( $button ) ) : ?> |
| 42 | <a href="<?php echo esc_url( $button['url'] ); ?>" class="<?php echo esc_attr( $button['class'] ); ?>"> |
| 43 | <?php echo esc_html( $button['text'] ); ?> |
| 44 | </a> |
| 45 | <?php endif; ?> |
| 46 | </div> |
| 47 | </div> |
| 48 | </div> |
| 49 |