File: /home/dailygoldindex/public_html/wp-content/themes/jnews/class/Module/Slider/Slider_3_View.php
<?php
/**
* @author : Jegtheme
*/
namespace JNews\Module\Slider;
class Slider_3_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 );
$image_mechanism = isset( $this->attribute['force_normal_image_load'] ) && ( 'true' === $this->attribute['force_normal_image_load'] || 'yes' === $this->attribute['force_normal_image_load'] ) ? 'jnews_single_image_owl' : 'jnews_single_image_lazy_owl';
if ( 'jnews_single_image_owl' === $image_mechanism ) {
$image = \JNews\Image\ImageNormalLoad::getInstance()->owl_single_image( $post_thumbnail_id, 'jnews-360x504' );
} else {
$image = apply_filters( $image_mechanism, $post_thumbnail_id, 'jnews-360x504' );
}
$content .=
'<div ' . jnews_post_class( 'jeg_slide_item', $post->ID ) . '>
' . jnews_edit_post( $post->ID ) . '
<a href="' . get_the_permalink( $post ) . "\">
{$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>
<p class=\"jeg_post_excerpt\"> {$this->get_excerpt($post)} </p>
{$this->render_meta($post)}
</div>
</div>
</div>";
}
return $content;
}
public function render_element( $result, $attr ) {
if ( ! empty( $result ) ) {
$content = $this->content( $result );
$column_class = $this->get_module_column_class( $attr );
$autoplay_delay = isset( $attr['autoplay_delay']['size'] ) ? $attr['autoplay_delay']['size'] : $attr['autoplay_delay'];
$number_item = isset( $attr['number_item']['size'] ) ? $attr['number_item']['size'] : $attr['number_item'];
$space = 'margin-right: 5px;';
$output =
"<div {$this->element_id($attr)} class=\"jeg_slider_wrapper jeg_slider_type_3_wrapper {$column_class} {$this->unique_id} {$this->get_vc_class_name()} {$attr['el_class']}\">
<div class=\"jeg_slider_type_3 jeg_slider\" data-items=\"{$number_item}\" data-autoplay=\"{$attr['enable_autoplay']}\" data-delay=\"{$autoplay_delay}\">
{$content}
</div>
</div>";
return $output;
} else {
return $this->empty_content();
}
}
public function render_meta( $post ) {
$output = '';
if ( get_theme_mod( 'jnews_show_block_meta', true ) && get_theme_mod( 'jnews_show_block_meta_date', true ) ) {
$time = $this->format_date( $post );
$trending = ( vp_metabox( 'jnews_single_post.trending_post', null, $post->ID ) ) ? '<div class="jeg_meta_trending"><a href="' . get_the_permalink( $post ) . '"><i class="fa fa-bolt"></i></a></div>' : '';
$output =
"<div class=\"jeg_post_meta\">
{$trending}
<span class=\"jeg_meta_date\"><i class=\"fa fa-clock-o\"></i> {$time}</span>
</div>";
}
return $output;
}
}