HEX
Server: Apache
System: Linux mx52.hostgator.mx 5.14.0-687.12.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Sun Jun 7 14:39:27 EDT 2026 x86_64
User: narrativ (1644)
PHP: 8.2.33
Disabled: NONE
Upload Files
File: /home4/narrativ/wp.narrativa.mx/wp-content/themes/jnews/class/Module/Slider/Slider_1_View.php
<?php
/**
 * @author : Jegtheme
 */
namespace JNews\Module\Slider;

Class Slider_1_View extends SliderViewAbstract
{
	public function content($results)
	{
		$content = '';
		foreach($results as $key => $post)
		{
			$primary_category = $this->get_primary_category($post->ID);
			$post_thumbnail_id = get_post_thumbnail_id( $post->ID );

			if($this->manager->get_current_width() > 8){
				$image = apply_filters('jnews_single_image_lazy_owl', $post_thumbnail_id, 'jnews-1140x570');
			} else {
				$image = apply_filters('jnews_single_image_lazy_owl', $post_thumbnail_id, 'jnews-750x375');
			}


			$content .=
				"<div class=\"jeg_slide_item\">
                    " . jnews_edit_post( $post->ID ) . "
                    <a href=\"" . get_permalink($post) . "\" class=\"jeg_slide_img\">{$image}</a>
                    <div class=\"jeg_slide_caption\">
                        <div class=\"jeg_caption_container\">
                            <div class=\"jeg_post_category\">
                                {$primary_category}
                            </div>
                            <h2 class=\"jeg_post_title\">
                                <a href=\"" . get_the_permalink($post) . "\" >" . get_the_title($post) . "</a>
                            </h2>
                            {$this->render_meta($post)}
                        </div>
                    </div>
                </div>";
		}

		return $content;
	}

	public function carousel($results)
	{
		$content = '';
		foreach($results as $key => $post)
		{
			$post_thumbnail_id = get_post_thumbnail_id( $post->ID );
			if($this->manager->get_current_width() > 8) {
				$image = apply_filters('jnews_single_image_lazy_owl', $post_thumbnail_id, 'jnews-350x250');
			} else {
				$image = apply_filters('jnews_single_image_lazy_owl', $post_thumbnail_id, 'jnews-120x86');
			}
			$content .= "<div  " . jnews_post_class("jeg_slide_thumbnail_item", $post->ID) . "><a href=\"" . get_permalink($post) . "\">{$image}</a></div>";
		}

		return $content;
	}

	public function render_element($result, $attr)
	{
		if(!empty($result))
		{
			$content        = $this->content($result);
			$slider         = $this->carousel($result);
			$autoplay_delay = isset( $attr['autoplay_delay']['size'] ) ? $attr['autoplay_delay']['size'] : $attr['autoplay_delay'];

			$output =
				"<div {$this->element_id($attr)} class=\"jeg_slider_wrapper jeg_slider_type_1_wrapper {$this->unique_id} {$this->get_vc_class_name()} {$attr['el_class']}\">
                    <div class=\"jeg_slider_type_1 jeg_slider\" data-autoplay=\"{$attr['enable_autoplay']}\" data-delay=\"{$autoplay_delay}\" data-hover-action=\"{$attr['enable_hover_action']}\">
                        {$content}
                    </div>
                    <div class=\"jeg_slider_thumbnail_wrapper\">
                        <div class=\"jeg_slider_thumbnail\">
                            {$slider}
                        </div>
                    </div>
                </div>";
			return $output;
		} else {
			return $this->empty_content();
		}
	}
}