Current File : /home/getxxhzo/xpertbee.com/wp-content/plugins/tutor/templates/feature_disabled.php |
<?php
/**
* Display Permission denied
*
* @package Tutor\Templates
* @author Themeum <support@themeum.com>
* @link https://themeum.com
* @since 1.0.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
?>
<div class="tutor-disabled-wrapper">
<div class="tutor-disabled-content-wrapper">
<?php if ( isset( $image_path ) && '' !== $image_path ) : ?>
<div>
<center>
<img src="<?php echo esc_url( $image_path ); ?>" alt="disabled">
</center>
</div>
<?php endif; ?>
<div>
<?php if ( isset( $title ) && '' !== $title ) : ?>
<h3>
<?php echo esc_html( $title ); ?>
</h3>
<?php endif; ?>
<?php if ( isset( $description ) && '' !== $description ) : ?>
<p>
<?php echo wp_kses_post( $description ); ?>
</p>
<?php endif; ?>
</div>
<div>
<?php if ( isset( $button ) && count( $button ) ) : ?>
<a href="<?php echo esc_url( $button['url'] ); ?>" class="<?php echo esc_attr( $button['class'] ); ?>">
<?php echo esc_html( $button['text'] ); ?>
</a>
<?php endif; ?>
</div>
</div>
</div>