File: /home/dailygoldindex/public_html/wp-content/themes/jnews/class/Module/Slider/Slider_7_View.php
<?php
/**
* @author : Jegtheme
*/
namespace JNews\Module\Slider;
class Slider_7_View extends SliderViewAbstract {
public function content( $results ) {
$nav_prev = jnews_return_translation( 'prev', 'jnews', 'prev' );
$nav_next = jnews_return_translation( 'next', 'jnews', 'next' );
$content = '';
foreach ( $results as $key => $post ) {
$primary_category = $this->get_primary_category( $post->ID );
if ( $this->manager->get_current_width() > 8 ) {
$image = get_the_post_thumbnail_url( $post->ID, 'jnews-1140x570' );
} else {
$image = get_the_post_thumbnail_url( $post->ID, 'jnews-750x375' );
}
$content .=
'<div ' . jnews_post_class( 'jeg_slide_item clearfix', $post->ID ) . '>
' . jnews_edit_post( $post->ID ) . '
<div class="jeg_slide_image" style="background-image: url(' . esc_url( $image ) . ')">
<a href="' . get_the_permalink( $post ) . "\"></a>
</div>
<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>
<div class="jeg_post_excerpt">
<p>' . $this->get_excerpt( $post ) . '</p>
</div>
<a href="' . get_the_permalink( $post ) . '" class="jeg_readmore">' . jnews_return_translation( 'Read more', 'jnews', 'read_more' ) . "</a>
</div>
<div class=\"jeg_block_nav \">
<a href=\"#\" class=\"prev\">
<i class=\"fa fa-angle-left\"></i>
{$nav_prev}
</a>
<a href=\"#\" class=\"next\">
{$nav_next}
<i class=\"fa fa-angle-right\"></i>
</a>
</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'];
$nav_prev = jnews_return_translation( 'prev', 'jnews', 'prev' );
$nav_next = jnews_return_translation( 'next', 'jnews', 'next' );
$position = isset( $attr['featured_position'] ) ? $attr['featured_position'] : 'left';
$style = $this->generate_style( $attr );
$output =
"<div {$this->element_id($attr)} class=\"jeg_slider_wrapper jeg_slider_type_7_wrapper {$this->unique_id} {$this->get_vc_class_name()} {$attr['el_class']}\">
<div class=\"jeg_slider_type_7 jeg_slider {$column_class} featured-{$position}\" data-autoplay=\"{$attr['enable_autoplay']}\" data-delay=\"{$autoplay_delay}\" data-nav-prev=\"{$nav_prev}\" data-nav-next=\"{$nav_next}\">
{$content}
</div>
{$style}
</div>";
return $output;
} else {
return $this->empty_content();
}
}
}