HEX
Server: LiteSpeed
System: Linux dune179.sitesanctuary.org 5.14.0-427.40.1.el9_4.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 16 07:08:17 EDT 2024 x86_64
User: h278792 (1076)
PHP: 7.4.33
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/h278792/public_html/wp-content/plugins/ecademy-toolkit/widgets/banner-one.php
<?php
/**
 * Banner Widget
 */

namespace Elementor;

// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

class eCademy_Banner extends Widget_Base {

	public function get_name() {
        return 'eCademy_Banner_One';
    }

	public function get_title() {
        return esc_html__( 'بنر یک', 'ecademy-toolkit' );
    }

	public function get_icon() {
        return 'eicon-banner';
    }

	public function get_categories() {
        return [ 'ecademy-elements' ];
    }

	protected function register_controls() {

        $this->start_controls_section(
			'eCademy_Banner_Area',
			[
				'label' => esc_html__( 'کنترل های بنر', 'ecademy-toolkit' ),
				'tab' 	=> Controls_Manager::TAB_CONTENT,
			]
        );

            $this->add_control(
                'plugin_type',
                [
                    'label' 	=> esc_html__( 'افزونه فعال سازی خود را انتخاب کنید', 'ecademy-toolkit' ),
                    'type' 		=> Controls_Manager::SELECT,
                    'options' 	=> [
                        'lp'         => esc_html__( 'LearnPress', 'ecademy-toolkit' ),
                        'tutor'      => esc_html__( 'Tutor LMS', 'ecademy-toolkit' ),
                        'ld'         => esc_html__( 'LearnDash', 'ecademy-toolkit' ),
                    ],
                    'default' => 'lp',
                ]
            );

			$this->add_control(
				'bg_image',
				[
					'label' => esc_html__( 'بخش تصویر پس زمینه', 'ecademy-toolkit' ),
					'type'	 => Controls_Manager::MEDIA,
				]
			);

			$this->add_control(
				'title',
				[
					'label' 	=> esc_html__( 'عنوان', 'ecademy-toolkit' ),
					'type' 		=> Controls_Manager::TEXT,
					'default' 	=> __('پیشروترین ارائه دهنده آموزش از راه دور در جهان', 'ecademy-toolkit'),
				]
			);

			$this->add_control(
                'title_tag',
                [
                    'label' 	=> esc_html__( 'عنوان برچسب', 'ecademy-toolkit' ),
                    'type' 		=> Controls_Manager::SELECT,
                    'options' 	=> [
                        'h1'         => esc_html__( 'h1', 'ecademy-toolkit' ),
                        'h2'         => esc_html__( 'h2', 'ecademy-toolkit' ),
                        'h3'         => esc_html__( 'h3', 'ecademy-toolkit' ),
                        'h4'         => esc_html__( 'h4', 'ecademy-toolkit' ),
                        'h5'         => esc_html__( 'h5', 'ecademy-toolkit' ),
                        'h6'         => esc_html__( 'h6', 'ecademy-toolkit' ),
                    ],
                    'default' => 'h1',
                ]
            );

			$this->add_control(
				'content',
				[
					'label' 	=> esc_html__( 'محتوا', 'ecademy-toolkit' ),
					'type' 		=> Controls_Manager::TEXTAREA,
					'default' 	=> __('لورم ایپسوم متن ساختگی با تولید سادگی نامفهوم از صنعت چاپ و با استفاده از طراحان گرافیک است..', 'ecademy-toolkit'),
				]
			);

			$this->add_control(
				'button_text',
				[
					'label' 	=> esc_html__( 'متن بنر', 'ecademy-toolkit' ),
					'type' 		=> Controls_Manager::TEXT,
					'default' 	=> __('رایگان عضو شوید', 'ecademy-toolkit'),
				]
            );

            $this->add_control(
				'user_button_text',
				[
					'label' 	=> esc_html__( 'ورود کاربر به متن دکمه', 'ecademy-toolkit' ),
					'type' 		=> Controls_Manager::TEXT,
					'default' 	=> __('پروفایل', 'ecademy-toolkit'),
				]
			);

            $this->add_control(
				'button_icon',
				[
					'label' => esc_html__( 'آیکن دکمه', 'ecademy-toolkit' ),
                    'type' => Controls_Manager::ICON,
                    'label_block' => true,
                    'options' => ecademy_flaticons(),
				]
            );

            $this->add_control(
                'link_type',
                [
                    'label' 		=> esc_html__( 'نوع لینک دکمه', 'ecademy-toolkit' ),
                    'type' 			=> Controls_Manager::SELECT,
                    'label_block' 	=> true,
                    'options' => [
                        '1'  	=> esc_html__( 'پیوند به صفحه', 'ecademy-toolkit' ),
                        '2' 	=> esc_html__( 'لینک خارجی', 'ecademy-toolkit' ),
                    ],
                ]
            );

            $this->add_control(
                'link_to_page',
                [
                    'label' 		=> esc_html__( 'صفحه پیوند دکمه', 'ecademy-toolkit' ),
                    'type' 			=> Controls_Manager::SELECT,
                    'label_block' 	=> true,
                    'options' 		=> ecademy_toolkit_get_page_as_list(),
                    'condition' => [
                        'link_type' => '1',
                    ]
                ]
            );

            $this->add_control(
                'ex_link',
                [
                    'label'		=> esc_html__('لینک خارجی دکمه', 'ecademy-toolkit'),
                    'type'		=> Controls_Manager:: TEXT,
                    'condition' => [
                        'link_type' => '2',
                    ]
                ]
            );

            $this->add_control(
                'first_course',
                [
                    'label' 		=> esc_html__( 'بنر دوره اول', 'ecademy-toolkit' ),
                    'type' 			=> Controls_Manager::SELECT,
                    'label_block' 	=> true,
                    'options' 		=> ecademy_toolkit_get_course_as_list(),
                    'condition' => [
                        'plugin_type' => 'lp',
                    ]
                ]
            );

            $this->add_control(
                'second_course',
                [
                    'label' 		=> esc_html__( 'بنر دوره دوم', 'ecademy-toolkit' ),
                    'type' 			=> Controls_Manager::SELECT,
                    'label_block' 	=> true,
                    'options' 		=> ecademy_toolkit_get_course_as_list(),
                    'condition' => [
                        'plugin_type' => 'lp',
                    ]
                ]
            );

            $this->add_control(
                'first_tutor_course',
                [
                    'label' 		=> esc_html__( 'بنر دوره اول', 'ecademy-toolkit' ),
                    'type' 			=> Controls_Manager::SELECT,
                    'label_block' 	=> true,
                    'options' 		=> ecademy_toolkit_get_tutor_course_as_list(),
                    'condition' => [
                        'plugin_type' => 'tutor',
                    ]
                ]
            );

            $this->add_control(
                'second_tutor_course',
                [
                    'label' 		=> esc_html__( 'بنر دوره دوم', 'ecademy-toolkit' ),
                    'type' 			=> Controls_Manager::SELECT,
                    'label_block' 	=> true,
                    'options' 		=> ecademy_toolkit_get_tutor_course_as_list(),
                    'condition' => [
                        'plugin_type' => 'tutor',
                    ]
                ]
            );

            $this->add_control(
                'first_ld_course',
                [
                    'label' 		=> esc_html__( 'بنر دوره اول', 'ecademy-toolkit' ),
                    'type' 			=> Controls_Manager::SELECT,
                    'label_block' 	=> true,
                    'options' 		=> ecademy_toolkit_get_ld_course_as_list(),
                    'condition' => [
                        'plugin_type' => 'ld',
                    ]
                ]
            );

            $this->add_control(
                'second_ld_course',
                [
                    'label' 		=> esc_html__( 'بنر دوره دوم', 'ecademy-toolkit' ),
                    'type' 			=> Controls_Manager::SELECT,
                    'label_block' 	=> true,
                    'options' 		=> ecademy_toolkit_get_ld_course_as_list(),
                    'condition' => [
                        'plugin_type' => 'ld',
                    ]
                ]
            );

            $this->add_control(
                'free_text',
                [
                    'label' 		=> esc_html__( 'متن دوره رایگان', 'ecademy-toolkit' ),
                    'type' 			=> Controls_Manager::TEXT,
                    'label_block' 	=> true,
                    'condition' => [
                        'plugin_type' => 'tutor',
                    ]
                ]
            );

			$this->add_control(
                'shape1',
                [
                    'label'		=> esc_html__('شکل تصویر یک', 'ecademy-toolkit'),
                    'type'		=> Controls_Manager:: MEDIA,
                ]
			);

			$this->add_control(
                'shape2',
                [
                    'label'		=> esc_html__('شکل تصویر دو', 'ecademy-toolkit'),
                    'type'		=> Controls_Manager:: MEDIA,
                ]
			);

			$this->add_control(
                'shape3',
                [
                    'label'		=> esc_html__('شکل تصویر سه ', 'ecademy-toolkit'),
                    'type'		=> Controls_Manager:: MEDIA,
                ]
            );

            $this->add_control(
				'lessons_title',
				[
					'label' 	=> esc_html__( 'عنوان دروس', 'ecademy-toolkit' ),
					'type' 		=> Controls_Manager::TEXT,
					'default' 	=> __('درس', 'ecademy-toolkit'),
                    'condition' => [
                        'plugin_type' => ['lp', 'tutor'],
                    ]
				]
            );

            $this->add_control(
				'students_title',
				[
					'label' 	=> esc_html__( 'عنوان دانش آموزان', 'ecademy-toolkit' ),
					'type' 		=> Controls_Manager::TEXT,
					'default' 	=> __('دانش آموز', 'ecademy-toolkit'),
                    'condition' => [
                        'plugin_type' => ['lp', 'tutor'],
                    ]
				]
			);

        $this->end_controls_section();

        $this->start_controls_section(
			'banner_style',
			[
				'label' => esc_html__( 'سبک', 'ecademy-toolkit' ),
				'tab' => Controls_Manager::TAB_STYLE,
			]
		);

			$this->add_control(
				'title_color',
				[
					'label' => esc_html__( 'عنوان رنگ', 'ecademy-toolkit' ),
					'type' => Controls_Manager::COLOR,
					'selectors' => [
						'{{WRAPPER}} .main-banner-content h1, .main-banner-content h2, .main-banner-content h3, .main-banner-content h4, .main-banner-content h5, .main-banner-content h6' => 'color: {{VALUE}}',
					],
				]
			);

			$this->add_group_control(
                Group_Control_Typography::get_type(),
                [
                    'name' => 'title_typography',
                    'label' => __( 'عنوان تایپوگرافی', 'ecademy-toolkit' ),
                    'scheme' => Core\Schemes\Typography::TYPOGRAPHY_1,
                    'selector' => '{{WRAPPER}} .main-banner-content h1, .main-banner-content h2, .main-banner-content h3, .main-banner-content h4, .main-banner-content h5, .main-banner-content h6',
                ]
            );

			$this->add_control(
				'content_color',
				[
					'label' => esc_html__( 'رنگ محتوا', 'ecademy-toolkit' ),
					'type' => Controls_Manager::COLOR,
					'selectors' => [
						'{{WRAPPER}} .main-banner-content p' => 'color: {{VALUE}}',
					],
				]
			);

			$this->add_group_control(
                Group_Control_Typography::get_type(),
                [
                    'name' => 'content_typography',
                    'label' => __( 'تایپوگرافی محتوا', 'ecademy-toolkit' ),
                    'scheme' => Core\Schemes\Typography::TYPOGRAPHY_1,
                    'selector' => '{{WRAPPER}} .main-banner-content p',
                ]
            );

        $this->end_controls_section();

    }

	protected function render() {

		$settings = $this->get_settings_for_display();

        global $ecademy_opt;
		if( isset( $ecademy_opt['enable_lazyloader'] ) ):
			$is_lazyloader = $ecademy_opt['enable_lazyloader'];
		else:
			$is_lazyloader = true;
        endif;

        $ld_enroll_btn = !empty($ecademy_opt['ld_enroll_title']) ? $ecademy_opt['ld_enroll_title'] : '';
        $ld_free_title = !empty($ecademy_opt['ld_free_title']) ? $ecademy_opt['ld_free_title'] : '';

        // Inline Editing
        $this-> add_inline_editing_attributes('title','none');
        $this-> add_inline_editing_attributes('content','none');

        if( $settings['plugin_type'] == 'lp' ){
            if ( !ecademy_plugin_active( 'learnpress/learnpress.php' ) ) {
                if( is_user_logged_in() ):
                    ?>
                    <div class="container">
                        <div class="alert alert-danger" role="alert">
                            <?php echo esc_html__( 'لطفا افزونه LearnPress را نصب و فعال کنید', 'ecademy-toolkit' ); ?>
                        </div>
                    </div>
                    <?php
                endif;
                return;
            }
        }elseif( $settings['plugin_type'] == 'tutor' ) {
            if ( !ecademy_plugin_active( 'tutor/tutor.php' ) ) {
                if( is_user_logged_in() ):
                    ?>
                    <div class="container">
                        <div class="alert alert-danger" role="alert">
                            <?php echo esc_html__( 'لطفا افزونه Tutor LMS را نصب و فعال کنید', 'ecademy-toolkit' ); ?>
                        </div>
                    </div>
                    <?php
                endif;
                return;
            }
        }elseif( $settings['plugin_type'] == 'ld' ) {
            if ( !ecademy_plugin_active( 'sfwd-lms/sfwd_lms.php' ) ) {
                if( is_user_logged_in() ):
                    ?>
                    <div class="container">
                        <div class="alert alert-danger" role="alert">
                            <?php echo esc_html__( 'لطفا افزونه LearnDash را نصب و فعال کنید', 'ecademy-toolkit' ); ?>
                        </div>
                    </div>
                    <?php
                endif;
                return;
            }
        }

		// Button Icon
        if( $settings['button_icon'] != '' ):
            $icon = $settings['button_icon'];
        else:
            $icon = 'flaticon-user';
        endif;

        // Get Button Link
        if($settings['link_type'] == 1){
            $link = get_page_link( $settings['link_to_page'] );
        } else {
            $link = $settings['ex_link'];
        }

        if ( is_user_logged_in() ):
            $button_text = $settings['user_button_text'];
        else:
            $button_text = $settings['button_text'];
        endif;

        if( $settings['plugin_type'] == 'lp' ): ?>
            <div class="main-banner" style="background-image:url(<?php echo esc_url( $settings['bg_image']['url'] ); ?>);">
                <div class="container-fluid">
                    <div class="row align-items-center">
                        <div class="col-lg-6 col-md-12">
                            <div class="main-banner-content">
                                <<?php echo esc_attr( $settings['title_tag'] ); ?> <?php echo $this-> get_render_attribute_string('title'); ?>>
                                    <?php echo esc_html( $settings['title'] ); ?>
                                </<?php echo esc_attr( $settings['title_tag'] ); ?>>

                                <p <?php echo $this-> get_render_attribute_string('content'); ?>><?php echo esc_html( $settings['content'] ); ?></p>

                                <?php if( $button_text != '' ): ?>
                                    <a href="<?php echo esc_url( $link ); ?>" class="default-btn"><i class="<?php echo esc_attr( $icon ); ?>"></i><?php echo esc_html( $button_text ); ?><span></span></a>
                                <?php endif; ?>
                            </div>
                        </div>

                        <div class="col-lg-6 col-md-12">
                            <div class="main-banner-courses-list">
                                <div class="row">
                                    <?php if( $settings['first_course'] != '' ): ?>
                                        <div class="col-lg-6 col-md-6">
                                            <?php
                                            $args = array(
                                                'p'                 => $settings['first_course'],
                                                'post_type'         => 'lp_course',
                                                'meta_key'          => '_thumbnail_id',
                                            );
                                            $post_array = new \WP_Query( $args );
                                            ?>
                                            <?php while($post_array->have_posts()): $post_array->the_post();
                                            ?>
                                                <div class="single-courses-box">
                                                    <div class="courses-image">
                                                        <a href="<?php the_permalink(); ?>" class="d-block image">
                                                            <?php if( $is_lazyloader == true ): ?>
                                                                <img sm-src="<?php the_post_thumbnail_url('ecademy_default_thumb'); ?>" alt="<?php the_post_thumbnail_caption(); ?>">
                                                            <?php else: ?>
                                                                <img src="<?php the_post_thumbnail_url('ecademy_default_thumb'); ?>" alt="<?php the_post_thumbnail_caption(); ?>">
                                                            <?php endif; ?>
                                                        </a>

                                                        <?php LP()->template( 'course' )->course_pricing(); ?>
                                                    </div>
                                                    <div class="courses-content">
                                                        <div class="course-author d-flex align-items-center">
                                                            <?php ecademy_lp_the_loop_instructor(); ?>
                                                        </div>
                                                        <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
                                                        <p><?php the_excerpt(); ?></p>

                                                        <ul class="courses-box-footer d-flex justify-content-between align-items-center">
                                                            <?php if(ecademy_lp_the_loop_lessons()): ?>
                                                                <li>
                                                                    <i class='flaticon-agenda'></i>
                                                                    <?php echo ecademy_lp_the_loop_lessons(); ?> <?php echo esc_html( $settings['lessons_title'] ); ?>
                                                                </li>
                                                            <?php endif; ?>

                                                            <?php if(ecademy_lp_the_loop_students()): ?>
                                                                <li>
                                                                    <i class='flaticon-people'></i>
                                                                    <?php echo ecademy_lp_the_loop_students(); ?> <?php echo esc_html( $settings['students_title'] ); ?>
                                                                </li>
                                                            <?php endif; ?>
                                                        </ul>
                                                    </div>
                                                </div>
                                            <?php endwhile; ?>
                                            <?php wp_reset_query(); ?>
                                        </div>
                                    <?php endif; ?>

                                    <?php if( $settings['second_course'] != '' ): ?>
                                        <div class="col-lg-6 col-md-6">
                                            <?php
                                            $args = array(
                                                'p'                 => $settings['second_course'],
                                                'post_type'         => 'lp_course',
                                            );
                                            $post_array = new \WP_Query( $args );
                                            while($post_array->have_posts()): $post_array->the_post(); ?>
                                                <div class="single-courses-box">
                                                    <div class="courses-image">
                                                        <a href="<?php the_permalink(); ?>" class="d-block image">
                                                            <?php if( $is_lazyloader == true ): ?>
                                                                <img sm-src="<?php the_post_thumbnail_url('ecademy_default_thumb'); ?>" alt="<?php the_post_thumbnail_caption(); ?>">
                                                            <?php else: ?>
                                                                <img src="<?php the_post_thumbnail_url('ecademy_default_thumb'); ?>" alt="<?php the_post_thumbnail_caption(); ?>">
                                                            <?php endif; ?>
                                                        </a>

                                                        <?php LP()->template( 'course' )->course_pricing(); ?>

                                                    </div>
                                                    <div class="courses-content">
                                                        <div class="course-author d-flex align-items-center">
                                                            <?php ecademy_lp_the_loop_instructor(); ?>
                                                        </div>
                                                        <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
                                                        <p><?php the_excerpt(); ?></p>

                                                        <ul class="courses-box-footer d-flex justify-content-between align-items-center">
                                                            <?php if(ecademy_lp_the_loop_lessons()): ?>
                                                                <li>
                                                                    <i class='flaticon-agenda'></i>
                                                                    <?php echo ecademy_lp_the_loop_lessons(); ?> <?php echo esc_html( $settings['lessons_title'] ); ?>
                                                                </li>
                                                            <?php endif; ?>

                                                            <?php if(ecademy_lp_the_loop_students()): ?>
                                                                <li>
                                                                    <i class='flaticon-people'></i>
                                                                    <?php echo ecademy_lp_the_loop_students(); ?> <?php echo esc_html( $settings['students_title'] ); ?>
                                                                </li>
                                                            <?php endif; ?>
                                                        </ul>
                                                    </div>
                                                </div>
                                            <?php endwhile; ?>
                                            <?php wp_reset_query(); ?>
                                        </div>
                                    <?php endif; ?>
                                </div>

                                <?php if( $settings['shape1']['url'] != '' ): ?>
                                    <div class="banner-shape1" data-speed="0.06" data-revert="true">
                                        <?php if( $is_lazyloader == true ): ?>
                                            <img sm-src="<?php echo esc_url( $settings['shape1']['url'] ); ?>" alt="<?php echo esc_attr__( 'شکل تصویر', 'ecademy-toolkit' ); ?>">
                                        <?php else: ?>
                                            <img src="<?php echo esc_url( $settings['shape1']['url'] ); ?>" alt="<?php echo esc_attr__( 'شکل تصویر', 'ecademy-toolkit' ); ?>">
                                        <?php endif; ?>
                                    </div>
                                <?php endif; ?>

                                <?php if( $settings['shape2']['url'] != '' ): ?>
                                    <div class="banner-shape2" data-speed="0.06" data-revert="true">
                                        <?php if( $is_lazyloader == true ): ?>
                                            <img sm-src="<?php echo esc_url( $settings['shape2']['url'] ); ?>" alt="<?php echo esc_attr__( 'شکل تصویر', 'ecademy-toolkit' ); ?>">
                                        <?php else: ?>
                                            <img src="<?php echo esc_url( $settings['shape2']['url'] ); ?>" alt="<?php echo esc_attr__( 'شکل تصویر', 'ecademy-toolkit' ); ?>">
                                        <?php endif; ?>
                                    </div>
                                <?php endif; ?>

                                <?php if( $settings['shape3']['url'] != '' ): ?>
                                    <div class="banner-shape3" data-speed="0.06" data-revert="true">
                                        <?php if( $is_lazyloader == true ): ?>
                                            <img sm-src="<?php echo esc_url( $settings['shape3']['url'] ); ?>" alt="<?php echo esc_attr__( 'شکل تصویر', 'ecademy-toolkit' ); ?>">
                                        <?php else: ?>
                                            <img src="<?php echo esc_url( $settings['shape3']['url'] ); ?>" alt="<?php echo esc_attr__( 'شکل تصویر', 'ecademy-toolkit' ); ?>">
                                        <?php endif; ?>
                                    </div>
                                <?php endif; ?>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
            <?php
        elseif( $settings['plugin_type'] == 'tutor' ): ?>
            <div class="main-banner" style="background-image:url(<?php echo esc_url( $settings['bg_image']['url'] ); ?>);">
                <div class="container-fluid">
                    <div class="row align-items-center">
                        <div class="col-lg-6 col-md-12">
                            <div class="main-banner-content">
                                <<?php echo esc_attr( $settings['title_tag'] ); ?> <?php echo $this-> get_render_attribute_string('title'); ?>>
                                    <?php echo esc_html( $settings['title'] ); ?>
                                </<?php echo esc_attr( $settings['title_tag'] ); ?>>

                                <p <?php echo $this-> get_render_attribute_string('content'); ?>><?php echo esc_html( $settings['content'] ); ?></p>

                                <?php if( $button_text != '' ): ?>
                                    <a href="<?php echo esc_url( $link ); ?>" class="default-btn"><i class="<?php echo esc_attr( $icon ); ?>"></i><?php echo esc_html( $button_text ); ?><span></span></a>
                                <?php endif; ?>
                            </div>
                        </div>

                        <div class="col-lg-6 col-md-12">
                            <div class="main-banner-courses-list">
                                <div class="row">
                                    <?php if( $settings['first_tutor_course'] != '' ): ?>
                                        <div class="col-lg-6 col-md-6">
                                            <?php
                                            $args = array(
                                                'p'                 => $settings['first_tutor_course'],
                                                'post_type'         => 'courses',
                                            );
                                            $post_array = new \WP_Query( $args );

                                            ?>
                                            <?php while($post_array->have_posts()): $post_array->the_post(); ?>
                                                <div class="single-courses-box">
                                                    <div class="courses-image">
                                                        <a href="<?php the_permalink(); ?>" class="d-block image">
                                                            <?php if( $is_lazyloader == true ): ?>
                                                                <img sm-src="<?php the_post_thumbnail_url('ecademy_default_thumb'); ?>" alt="<?php the_post_thumbnail_caption(); ?>">
                                                            <?php else: ?>
                                                                <img src="<?php the_post_thumbnail_url('ecademy_default_thumb'); ?>" alt="<?php the_post_thumbnail_caption(); ?>">
                                                            <?php endif; ?>
                                                        </a>
                                                        <?php
                                                            $course_id = get_the_ID();
                                                            $price_html = '<div class="price"> '.esc_html($settings['free_text']).'</div>';
                                                            if (tutor_utils()->is_course_purchasable()) {
                                                                $product_id = tutor_utils()->get_course_product_id($course_id);
                                                                $product    = wc_get_product( $product_id );

                                                                if ( $product ) {
                                                                    $price_html = '<div class="price"> '.$product->get_price_html().' </div>';
                                                                }
                                                            }

                                                            echo $price_html;
                                                        ?>

                                                    </div>
                                                    <div class="courses-content">
                                                        <div class="course-author d-flex align-items-center">
                                                            <?php
                                                            global $post, $authordata;
                                                            $user_id = get_current_user_id();
                                                            $user = get_user_by('ID', $user_id);
                                                            $profile_url = tutor_utils()->profile_url($authordata->ID);
                                                            ?>
                                                            <img src="<?php echo get_avatar_url($user_id, array('size' => 150)); ?>" />
                                                            <span><a href="<?php echo $profile_url; ?>"><?php echo get_the_author(); ?></a></span>
                                                        </div>
                                                        <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
                                                        <p><?php the_excerpt(); ?></p>

                                                        <ul class="courses-box-footer d-flex justify-content-between align-items-center">
                                                            <li>
                                                            <?php
                                                            $course_id          = get_the_ID();
                                                            $tutor_lesson_count = tutor_utils()->get_lesson_count_by_course($course_id);
                                                            ?>
                                                                <i class='flaticon-agenda'></i>
                                                                    <?php echo $tutor_lesson_count; ?> <?php echo esc_html( $settings['lessons_title'] ); ?>
                                                            </li>

                                                            <li>
                                                                <i class='flaticon-people'></i>
                                                                <?php echo (int) tutor_utils()->count_enrolled_users_by_course(); ?>
                                                                <?php echo esc_html( $settings['students_title'] ); ?>
                                                            </li>
                                                        </ul>
                                                    </div>
                                                </div>
                                            <?php endwhile; ?>
                                            <?php wp_reset_query(); ?>
                                        </div>
                                    <?php endif; ?>

                                    <?php if( $settings['second_tutor_course'] != '' ): ?>
                                        <div class="col-lg-6 col-md-6">
                                            <?php
                                            $args = array(
                                                'p'                 => $settings['second_tutor_course'],
                                                'post_type'         => 'courses',
                                            );
                                            $post_array = new \WP_Query( $args );

                                            ?>
                                            <?php while($post_array->have_posts()): $post_array->the_post(); ?>
                                                <div class="single-courses-box">
                                                    <div class="courses-image">
                                                        <a href="<?php the_permalink(); ?>" class="d-block image">
                                                            <?php if( $is_lazyloader == true ): ?>
                                                                <img sm-src="<?php the_post_thumbnail_url('ecademy_default_thumb'); ?>" alt="<?php the_post_thumbnail_caption(); ?>">
                                                            <?php else: ?>
                                                                <img src="<?php the_post_thumbnail_url('ecademy_default_thumb'); ?>" alt="<?php the_post_thumbnail_caption(); ?>">
                                                            <?php endif; ?>
                                                        </a>

                                                        <?php
                                                            $course_id = get_the_ID();
                                                            $price_html = '<div class="price"> '.esc_html($settings['free_text']).'</div>';
                                                            if (tutor_utils()->is_course_purchasable()) {
                                                                $product_id = tutor_utils()->get_course_product_id($course_id);
                                                                $product    = wc_get_product( $product_id );

                                                                if ( $product ) {
                                                                    $price_html = '<div class="price"> '.$product->get_price_html().' </div>';
                                                                }
                                                            }

                                                            echo $price_html;
                                                        ?>

                                                    </div>
                                                    <div class="courses-content">
                                                        <div class="course-author d-flex align-items-center">
                                                            <?php
                                                            global $post, $authordata;
                                                            $user_id = get_current_user_id();
                                                            $user = get_user_by('ID', $user_id);
                                                            $profile_url = tutor_utils()->profile_url($authordata->ID);
                                                            ?>
                                                            <img src="<?php echo get_avatar_url($user_id, array('size' => 150)); ?>" />
                                                            <span><a href="<?php echo $profile_url; ?>"><?php echo get_the_author(); ?></a></span>
                                                        </div>
                                                        <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
                                                        <p><?php the_excerpt(); ?></p>

                                                        <ul class="courses-box-footer d-flex justify-content-between align-items-center">
                                                            <li>
                                                            <?php
                                                            $course_id          = get_the_ID();
                                                            $tutor_lesson_count = tutor_utils()->get_lesson_count_by_course($course_id);
                                                            ?>
                                                                <i class='flaticon-agenda'></i>
                                                                    <?php echo $tutor_lesson_count; ?> <?php echo esc_html( $settings['lessons_title'] ); ?>
                                                            </li>

                                                            <li>
                                                                <i class='flaticon-people'></i>
                                                                <?php echo (int) tutor_utils()->count_enrolled_users_by_course(); ?>
                                                                <?php echo esc_html( $settings['students_title'] ); ?>
                                                            </li>
                                                        </ul>
                                                    </div>
                                                </div>
                                            <?php endwhile; ?>
                                            <?php wp_reset_query(); ?>
                                        </div>
                                    <?php endif; ?>
                                </div>

                                <?php if( $settings['shape1']['url'] != '' ): ?>
                                    <div class="banner-shape1" data-speed="0.06" data-revert="true">
                                        <?php if( $is_lazyloader == true ): ?>
                                            <img sm-src="<?php echo esc_url( $settings['shape1']['url'] ); ?>" alt="<?php echo esc_attr__( 'شکل تصویر', 'ecademy-toolkit' ); ?>">
                                        <?php else: ?>
                                            <img src="<?php echo esc_url( $settings['shape1']['url'] ); ?>" alt="<?php echo esc_attr__( 'شکل تصویر', 'ecademy-toolkit' ); ?>">
                                        <?php endif; ?>
                                    </div>
                                <?php endif; ?>

                                <?php if( $settings['shape2']['url'] != '' ): ?>
                                    <div class="banner-shape2" data-speed="0.06" data-revert="true">
                                        <?php if( $is_lazyloader == true ): ?>
                                            <img sm-src="<?php echo esc_url( $settings['shape2']['url'] ); ?>" alt="<?php echo esc_attr__( 'شکل تصویر', 'ecademy-toolkit' ); ?>">
                                        <?php else: ?>
                                            <img src="<?php echo esc_url( $settings['shape2']['url'] ); ?>" alt="<?php echo esc_attr__( 'شکل تصویر', 'ecademy-toolkit' ); ?>">
                                        <?php endif; ?>
                                    </div>
                                <?php endif; ?>

                                <?php if( $settings['shape3']['url'] != '' ): ?>
                                    <div class="banner-shape3" data-speed="0.06" data-revert="true">
                                        <?php if( $is_lazyloader == true ): ?>
                                            <img sm-src="<?php echo esc_url( $settings['shape3']['url'] ); ?>" alt="<?php echo esc_attr__( 'شکل تصویر', 'ecademy-toolkit' ); ?>">
                                        <?php else: ?>
                                            <img src="<?php echo esc_url( $settings['shape3']['url'] ); ?>" alt="<?php echo esc_attr__( 'شکل تصویر', 'ecademy-toolkit' ); ?>">
                                        <?php endif; ?>
                                    </div>
                                <?php endif; ?>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
            <?php
        elseif( $settings['plugin_type'] == 'ld' ): ?>
            <div class="main-banner" style="background-image:url(<?php echo esc_url( $settings['bg_image']['url'] ); ?>);">
                <div class="container-fluid">
                    <div class="row align-items-center">
                        <div class="col-lg-6 col-md-12">
                            <div class="main-banner-content">
                                <<?php echo esc_attr( $settings['title_tag'] ); ?> <?php echo $this-> get_render_attribute_string('title'); ?>>
                                    <?php echo esc_html( $settings['title'] ); ?>
                                </<?php echo esc_attr( $settings['title_tag'] ); ?>>

                                <p <?php echo $this-> get_render_attribute_string('content'); ?>><?php echo esc_html( $settings['content'] ); ?></p>

                                <?php if( $button_text != '' ): ?>
                                    <a href="<?php echo esc_url( $link ); ?>" class="default-btn"><i class="<?php echo esc_attr( $icon ); ?>"></i><?php echo esc_html( $button_text ); ?><span></span></a>
                                <?php endif; ?>
                            </div>
                        </div>

                        <div class="col-lg-6 col-md-12">
                            <div class="main-banner-courses-list">
                                <div class="row">
                                    <?php if( $settings['first_ld_course'] != '' ): ?>
                                        <div class="col-lg-6 col-md-6">
                                            <?php
                                            $args = array(
                                                'p'                 => $settings['first_ld_course'],
                                                'post_type'         => 'sfwd-courses',
                                            );
                                            $post_array = new \WP_Query( $args );

                                            ?>
                                            <?php while($post_array->have_posts()): $post_array->the_post();
                                                global $post; $post_id = $post->ID;
                                                $course_id = $post_id;
                                                $user_id   = get_current_user_id();
                                                $current_id = $post->ID;

                                                $options = get_option('sfwd_cpt_options');

                                                $currency = null;

                                                if ( ! is_null( $options ) ) {
                                                    if ( isset($options['modules'] ) && isset( $options['modules']['sfwd-courses_options'] ) && isset( $options['modules']['sfwd-courses_options']['sfwd-courses_paypal_currency'] ) )
                                                        $currency = $options['modules']['sfwd-courses_options']['sfwd-courses_paypal_currency'];

                                                }

                                                if( is_null( $currency ) )
                                                    $currency = 'USD';

                                                $course_options = get_post_meta($post_id, "_sfwd-courses", true);


                                                $price = $course_options && isset($course_options['sfwd-courses_course_price']) ? $course_options['sfwd-courses_course_price'] : esc_html( $ld_free_title );

                                                $has_access   = sfwd_lms_has_access( $course_id, $user_id );
                                                $is_completed = learndash_course_completed( $user_id, $course_id );

                                                if( $price == '' )
                                                    $price .= esc_html( $ld_free_title );

                                                if ( is_numeric( $price ) ) {
                                                    if ( $currency == "USD" )
                                                        $price = '$' . $price;
                                                    else
                                                        $price .= ' ' . $currency;
                                                }

                                                $class       = '';
                                                $ribbon_text = '';

                                                if ( $has_access && ! $is_completed ) {
                                                    $class = 'ld_course_grid_price ribbon-enrolled';
                                                    $ribbon_text = esc_html__( 'Enrolled', 'ecademy' );
                                                    $ld_enroll_btn = !empty($ecademy_opt['ld_enrolled_title']) ? $ecademy_opt['ld_enrolled_title'] : '';
                                                } elseif ( $has_access && $is_completed ) {
                                                    $class = 'ld_course_grid_price';
                                                    $ribbon_text = esc_html__( 'Completed', 'ecademy' );
                                                    $ld_enroll_btn = !empty($ecademy_opt['ld_enrolled_title']) ? $ecademy_opt['ld_enrolled_title'] : '';
                                                } else {
                                                    $class = ! empty( $course_options['sfwd-courses_course_price'] ) ? 'ld_course_grid_price price_' . $currency : 'ld_course_grid_price free';
                                                    $ribbon_text = $price;
                                                }
                                            ?>
                                                <div class="single-courses-box">
                                                    <div class="courses-image">
                                                        <a href="<?php the_permalink(); ?>" class="d-block image">
                                                            <?php if( $is_lazyloader == true ): ?>
                                                                <img sm-src="<?php the_post_thumbnail_url('ecademy_default_thumb'); ?>" alt="<?php the_post_thumbnail_caption(); ?>">
                                                            <?php else: ?>
                                                                <img src="<?php the_post_thumbnail_url('ecademy_default_thumb'); ?>" alt="<?php the_post_thumbnail_caption(); ?>">
                                                            <?php endif; ?>
                                                        </a>

                                                        <div class="price shadow"><?php echo esc_html($ribbon_text); ?></div>

                                                    </div>
                                                    <div class="courses-content">
                                                        <div class="course-author d-flex align-items-center">
                                                            <?php
                                                                global $post;
                                                                $a_id   =   $post->post_author;
                                                                $user       = get_the_author_meta('ID');
                                                                $user_image = get_avatar_url($user, ['size' => '51']);
                                                            ?>
                                                            <img src="<?php echo esc_url( $user_image ); ?>" class="rounded-circle" alt="<?php the_author_meta( 'display_name', $a_id );  ?>">
                                                            <span><?php the_author_meta( 'display_name', $a_id );  ?></span>
                                                        </div>

                                                        <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
                                                        <p><?php echo substr(get_the_excerpt(), 0,119); ?></p>

                                                        <a class="ld-enroll-btn" href="<?php the_permalink(); ?>"><?php echo esc_attr($ld_enroll_btn); ?></a>

                                                    </div>
                                                </div>
                                            <?php endwhile; ?>
                                            <?php wp_reset_query(); ?>
                                        </div>
                                    <?php endif; ?>

                                    <?php if( $settings['second_ld_course'] != '' ): ?>
                                        <div class="col-lg-6 col-md-6">
                                            <?php
                                            $args = array(
                                                'p'                 => $settings['second_ld_course'],
                                                'post_type'         => 'sfwd-courses',
                                            );
                                            $post_array = new \WP_Query( $args );

                                            ?>
                                            <?php while($post_array->have_posts()): $post_array->the_post();
                                            global $post; $post_id = $post->ID;
                                            $course_id = $post_id;
                                            $user_id   = get_current_user_id();
                                            $current_id = $post->ID;

                                            $options = get_option('sfwd_cpt_options');

                                            $currency = null;

                                            if ( ! is_null( $options ) ) {
                                                if ( isset($options['modules'] ) && isset( $options['modules']['sfwd-courses_options'] ) && isset( $options['modules']['sfwd-courses_options']['sfwd-courses_paypal_currency'] ) )
                                                    $currency = $options['modules']['sfwd-courses_options']['sfwd-courses_paypal_currency'];

                                            }

                                            if( is_null( $currency ) )
                                                $currency = 'USD';

                                            $course_options = get_post_meta($post_id, "_sfwd-courses", true);


                                            $price = $course_options && isset($course_options['sfwd-courses_course_price']) ? $course_options['sfwd-courses_course_price'] : esc_html( $ld_free_title );

                                            $has_access   = sfwd_lms_has_access( $course_id, $user_id );
                                            $is_completed = learndash_course_completed( $user_id, $course_id );

                                            if( $price == '' )
                                                $price .= esc_html( $ld_free_title );

                                            if ( is_numeric( $price ) ) {
                                                if ( $currency == "USD" )
                                                    $price = '$' . $price;
                                                else
                                                    $price .= ' ' . $currency;
                                            }

                                            $class       = '';
                                            $ribbon_text = '';

                                            if ( $has_access && ! $is_completed ) {
                                                $class = 'ld_course_grid_price ribbon-enrolled';
                                                $ribbon_text = esc_html__( 'Enrolled', 'ecademy' );
                                                $ld_enroll_btn = !empty($ecademy_opt['ld_enrolled_title']) ? $ecademy_opt['ld_enrolled_title'] : '';
                                            } elseif ( $has_access && $is_completed ) {
                                                $class = 'ld_course_grid_price';
                                                $ribbon_text = esc_html__( 'Completed', 'ecademy' );
                                            } else {
                                                $class = ! empty( $course_options['sfwd-courses_course_price'] ) ? 'ld_course_grid_price price_' . $currency : 'ld_course_grid_price free';
                                                $ribbon_text = $price;
                                            } ?>
                                                <div class="single-courses-box">
                                                    <div class="courses-image">
                                                        <a href="<?php the_permalink(); ?>" class="d-block image">
                                                            <?php if( $is_lazyloader == true ): ?>
                                                                <img sm-src="<?php the_post_thumbnail_url('ecademy_default_thumb'); ?>" alt="<?php the_post_thumbnail_caption(); ?>">
                                                            <?php else: ?>
                                                                <img src="<?php the_post_thumbnail_url('ecademy_default_thumb'); ?>" alt="<?php the_post_thumbnail_caption(); ?>">
                                                            <?php endif; ?>
                                                        </a>

                                                        <div class="price shadow"><?php echo esc_html($ribbon_text); ?></div>

                                                    </div>
                                                    <div class="courses-content">
                                                        <div class="course-author d-flex align-items-center">
                                                            <?php
                                                                global $post;
                                                                $a_id   =   $post->post_author;
                                                                $user       = get_the_author_meta('ID');
                                                                $user_image = get_avatar_url($user, ['size' => '51']);
                                                            ?>
                                                            <img src="<?php echo esc_url( $user_image ); ?>" class="rounded-circle" alt="<?php the_author_meta( 'display_name', $a_id );  ?>">
                                                            <span><?php the_author_meta( 'display_name', $a_id );  ?></span>
                                                        </div>

                                                        <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
                                                        <p><?php echo substr(get_the_excerpt(), 0,119); ?></p>

                                                        <a class="ld-enroll-btn" href="<?php the_permalink(); ?>"><?php echo esc_attr($ld_enroll_btn); ?></a>

                                                    </div>
                                                </div>
                                            <?php endwhile; ?>
                                            <?php wp_reset_query(); ?>
                                        </div>
                                    <?php endif; ?>
                                </div>

                                <?php if( $settings['shape1']['url'] != '' ): ?>
                                    <div class="banner-shape1" data-speed="0.06" data-revert="true">
                                        <?php if( $is_lazyloader == true ): ?>
                                            <img sm-src="<?php echo esc_url( $settings['shape1']['url'] ); ?>" alt="<?php echo esc_attr__( 'شکل تصویر', 'ecademy-toolkit' ); ?>">
                                        <?php else: ?>
                                            <img src="<?php echo esc_url( $settings['shape1']['url'] ); ?>" alt="<?php echo esc_attr__( 'شکل تصویر', 'ecademy-toolkit' ); ?>">
                                        <?php endif; ?>
                                    </div>
                                <?php endif; ?>

                                <?php if( $settings['shape2']['url'] != '' ): ?>
                                    <div class="banner-shape2" data-speed="0.06" data-revert="true">
                                        <?php if( $is_lazyloader == true ): ?>
                                            <img sm-src="<?php echo esc_url( $settings['shape2']['url'] ); ?>" alt="<?php echo esc_attr__( 'شکل تصویر', 'ecademy-toolkit' ); ?>">
                                        <?php else: ?>
                                            <img src="<?php echo esc_url( $settings['shape2']['url'] ); ?>" alt="<?php echo esc_attr__( 'شکل تصویر', 'ecademy-toolkit' ); ?>">
                                        <?php endif; ?>
                                    </div>
                                <?php endif; ?>

                                <?php if( $settings['shape3']['url'] != '' ): ?>
                                    <div class="banner-shape3" data-speed="0.06" data-revert="true">
                                        <?php if( $is_lazyloader == true ): ?>
                                            <img sm-src="<?php echo esc_url( $settings['shape3']['url'] ); ?>" alt="<?php echo esc_attr__( 'شکل تصویر', 'ecademy-toolkit' ); ?>">
                                        <?php else: ?>
                                            <img src="<?php echo esc_url( $settings['shape3']['url'] ); ?>" alt="<?php echo esc_attr__( 'شکل تصویر', 'ecademy-toolkit' ); ?>">
                                        <?php endif; ?>
                                    </div>
                                <?php endif; ?>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
            <?php
        endif;
	}


}

Plugin::instance()->widgets_manager->register( new eCademy_Banner );