%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/html/ceaa/wp-content/themes/eduma/inc/widgets/courses/tpl/
Upload File :
Create Path :
Current File : /var/www/html/ceaa/wp-content/themes/eduma/inc/widgets/courses/tpl/tabs-slider-v2.php

<?php

global $post, $wpdb;
$random = rand(1, 99);
$limit_tab  = $instance['tabs-options']['limit_tab'] ? $instance['tabs-options']['limit_tab'] : 4;
$cat_id_tab = $instance['tabs-options']['cat_id_tab'] ? $instance['tabs-options']['cat_id_tab'] : array();
$view_all_course   = ( $instance['view_all_courses'] && '' != $instance['view_all_courses'] ) ? $instance['view_all_courses'] : false;
$view_all_position = ( $instance['view_all_position'] && '' != $instance['view_all_position'] ) ? $instance['view_all_position'] : 'top';
$limit           = $instance['limit'];
$featured        = !empty( $instance['featured'] ) ? true : false ;
$sort = $instance['order'];
$thumb_w = ( !empty($instance['thumbnail_width']) && '' != $instance['thumbnail_width'] ) ? $instance['thumbnail_width'] : apply_filters('thim_course_thumbnail_width', 450);
$thumb_h = ( !empty($instance['thumbnail_height']) && '' != $instance['thumbnail_height'] ) ? $instance['thumbnail_height'] : apply_filters('thim_course_thumbnail_height', 400);
array_unshift($cat_id_tab,"0");

if ( !empty( $cat_id_tab ) ) {

	foreach ( $cat_id_tab as $value ) {
		$array[$value] = 1;
		$html[$value]  = '';

		$condition[$value]              = array(
			'post_type'           => 'lp_course',
			'posts_per_page'      => $limit_tab,
			'ignore_sticky_posts' => true,
		);

		if($value) {
            $condition[$value]['tax_query'] = array(
                array(
                    'taxonomy' => 'course_category',
                    'field'    => 'term_id',
                    'terms'    => $value
                ),
            );
        }

		if( $featured ) {
			$condition[$value]['meta_query'] = array(
				array(
					'key' => '_lp_featured',
					'value' =>  'yes',
				)
			);
		}

		if ( $sort == 'popular' ) {
			
			$query = $wpdb->prepare( "
	  SELECT ID, a+IF(b IS NULL, 0, b) AS students FROM(
		SELECT p.ID as ID, IF(pm.meta_value, pm.meta_value, 0) as a, (
	SELECT COUNT(*)
  FROM (SELECT COUNT(item_id), item_id, user_id FROM {$wpdb->prefix}learnpress_user_items GROUP BY item_id, user_id) AS Y
  GROUP BY item_id
  HAVING item_id = p.ID
) AS b
FROM {$wpdb->posts} p
LEFT JOIN {$wpdb->postmeta} AS pm ON p.ID = pm.post_id  AND pm.meta_key = %s
WHERE p.post_type = %s AND p.post_status = %s
GROUP BY ID
) AS Z
ORDER BY students DESC
 ", '_lp_students', 'lp_course', 'publish' );

			$post_in = $wpdb->get_col( $query );

			$condition[$value]['post__in'] = $post_in;
			$condition[$value]['orderby']  = 'post__in';
		}

		$the_query[$value] = new WP_Query( $condition[$value] );

		if ( $the_query[$value]->have_posts() ) :
			?>
			<?php
			ob_start();
			$i=0;
			while ( $the_query[$value]->have_posts() ) : $the_query[$value]->the_post(); ?>
                <?php
                $course    = LP()->global['course'];
                $course_id = get_the_ID();
                $course_skill_level = get_post_meta( $course_id, 'thim_course_skill_level', true );
                $course_language    = get_post_meta( $course_id, 'thim_course_language', true );
                $course_duration    = get_post_meta( $course_id, 'thim_course_duration', true );
                $cls_col = ($i==0) ? 'course-feature course-grid-2' : 'course-grid-4';
                ?>
				<div class="lpr_course <?php echo $cls_col;?>">
                    <div class="course-item">
                        <div class="course-thumbnail">
                            <a href="<?php echo esc_url(get_the_permalink( get_the_ID() ));?>">
                                <?php echo thim_get_feature_image(get_post_thumbnail_id( get_the_ID() ), 'full', $thumb_w, $thumb_h, get_the_title());?>
                            </a>
                            <?php do_action( 'thim_inner_thumbnail_course' );?>
                            <a class="course-readmore" href="<?php echo esc_url(get_the_permalink( get_the_ID() ));?>"><?php echo esc_html__('Read More', 'eduma');?></a>
                        </div>
                        <div class="thim-course-content">
                            <div class="author">
                                <a href="<?php echo esc_url( learn_press_user_profile_link( $post->post_author ) ); ?>">
                                    <?php
                                    $user_data   = get_userdata( $post->post_author );
                                    $author_name = '';
                                    if ( $user_data ) {
                                        if( !empty( $user_data->display_name ) ) {
                                            $author_name = $user_data->display_name;
                                        }else{
                                            $author_name = $user_data->user_login;
                                        }
                                    }
                                    echo $author_name;
                                    ?>
                                </a>
                            </div>
                            <?php
                            the_title( sprintf( '<h2 class="course-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' );
                            ?>
                            <?php if( $i==0 ) {?>
                                <div class="thim-course-info">
                                    <ul>
                                        <li class="lectures-feature">
                                            <i class="fa fa-files-o"></i>
                                            <span class="label"><?php esc_html_e( 'Lectures', 'eduma' ); ?></span>
                                            <span class="value"><?php echo $course->get_curriculum_items('lp_lesson') ? count( $course->get_curriculum_items('lp_lesson') ) : 0; ?></span>
                                        </li>
                                        <li class="quizzes-feature">
                                            <i class="fa fa-puzzle-piece"></i>
                                            <span class="label"><?php esc_html_e( 'Quizzes', 'eduma' ); ?></span>
                                            <span class="value"><?php echo $course->get_curriculum_items('lp_quiz') ? count( $course->get_curriculum_items('lp_quiz') ) : 0; ?></span>
                                        </li>
                                        <?php if ( ! empty( $course_duration ) ): ?>
                                            <li class="duration-feature">
                                                <i class="fa fa-clock-o"></i>
                                                <span class="label"><?php esc_html_e( 'Duration', 'eduma' ); ?></span>
                                                <span class="value"><?php echo $course_duration; ?></span>
                                            </li>
                                        <?php endif; ?>
                                        <?php if ( ! empty( $course_skill_level ) ): ?>
                                            <li class="skill-feature">
                                                <i class="fa fa-level-up"></i>
                                                <span class="label"><?php esc_html_e( 'Skill level', 'eduma' ); ?></span>
                                                <span class="value"><?php echo esc_html( $course_skill_level ); ?></span>
                                            </li>
                                        <?php endif; ?>
                                        <?php if ( ! empty( $course_language ) ): ?>
                                            <li class="language-feature">
                                                <i class="fa fa-language"></i>
                                                <span class="label"><?php esc_html_e( 'Language', 'eduma' ); ?></span>
                                                <span class="value"><?php echo esc_html( $course_language ); ?></span>
                                            </li>
                                        <?php endif; ?>
                                        <li class="students-feature">
                                            <i class="fa fa-users"></i>
                                            <span class="label"><?php esc_html_e( 'Students', 'eduma' ); ?></span>
                                            <?php $user_count = $course->get_users_enrolled() ? $course->get_users_enrolled() : 0; ?>
                                            <span class="value"><?php echo esc_html( $user_count ); ?></span>
                                        </li>
                                    </ul>
                                </div>
                            <?php }?>
                            <div class="course-meta">
                                <?php learn_press_courses_loop_item_price(); ?>
                                <?php learn_press_course_students(); ?>
                            </div>

                        </div>
                    </div>
				</div>
				<?php
                $i++;
			endwhile;
			$html[$value] .= ob_get_contents();
			ob_end_clean();
			?>

			<?php
		endif;
		wp_reset_postdata();
	}
} else {
	return;
}

$list_tab = $content_tab = '';
if ( !empty( $cat_id_tab ) ) {
	foreach ( $cat_id_tab as $k => $tab ) {
		$term = get_term_by( 'id', $tab, 'course_category' );
		if ( $k == 0 ) {
			$list_tab .= '<li class="active"><a href="#tab-course-' . $random . '-' . $tab . '">' . esc_html__( 'All', 'eduma' ) . '</a></li>';
			$content_tab .= '<div class="thim_content_item" id="tab-course-' . $random . '-' . $tab . '">';
			$content_tab .= $html[$tab];
			$content_tab .= '</div>';
		} else {
		    if($term) {
                $list_tab .= '<li><a href="#tab-course-' . $random . '-' . $tab . '">' . $term->name . '</a></li>';
                $content_tab .= '<div class="thim_content_item" id="tab-course-' . $random . '-' . $tab . '">';
                $content_tab .= $html[$tab];
                $content_tab .= '</div>';
            }
		}
	}
}

?>
<script type="text/javascript">
    (function ($) {
        "use strict";
        $(document).ready(function () {
            var root = $('.thim_tabs_slider');
            var contentItem = root.find('.thim_content_item');
            var items = root.find('.thim_content_item').length;
            root.find('.thim_content_item').css('width',contentItem.width()+'');
            root.find('.thim_content_tabs').css('width',parseInt(contentItem.width()*items)+'px');
            $(document).on('click', '.thim_tabs_slider ul li a', function (e) {
                $('.thim_tabs_slider ul .active').removeClass('active');
                $(this).parent().addClass('active');
                e.preventDefault();
                $('.thim_content_tabs').stop().animate({left:$($(this).attr('href')).position().left * (-1)}, {duration:600});
            });
        });
    })(jQuery);
</script>
<div class="thim_tabs_slider thim-course-grid grid-1">
    <div class="sc_heading clone_title  text-left">
        <?php if ( $instance['title'] ) { ?>
            <h2 class="title"><?php echo esc_html($instance['title']);?></h2>
            <div class="clone"><?php echo esc_html($instance['title']);?></div>
        <?php }?>
        <ul>
            <?php echo ent2ncr( $list_tab ); ?>
        </ul>
    </div>
    <?php
    if ( $view_all_course && 'top' == $view_all_position ) {
        echo '<a class="view-all-courses position-top" href="' . get_post_type_archive_link( 'lp_course' ) . '">' . esc_attr( $view_all_course ) . ' <i class="lnr icon-arrow-right"></i></a>';
    }
    ?>
    <div class="thim_content_tabs thim-course-grid row">
        <?php echo ent2ncr( $content_tab ); ?>
    </div>
    <?php
    if ( $view_all_course && 'bottom' == $view_all_position ) {
        echo '<a class="view-all-courses position-bottom" href="' . get_post_type_archive_link( 'lp_course' ) . '">' . esc_attr( $view_all_course ) . ' <i class="lnr icon-arrow-right"></i></a>';
    }

    ?>
</div>


Zerion Mini Shell 1.0