File: /home/dailygoldindex/public_html/wp-content/themes/jnews/class/Module/Block/Block_28_View.php
<?php
/**
* @author : Jegtheme
*/
namespace JNews\Module\Block;
Class Block_28_View extends BlockViewAbstract
{
public function set_content_setting_option()
{
$this->options['show_date'] = '';
$this->options['date_format'] = 'default';
$this->options['date_format_custom'] = 'Y/m/d';
$this->options['excerpt_length'] = 20;
}
public function render_block($post)
{
$attr = $this->attribute;
$date = isset($attr['show_date']) && $attr['show_date'] ? $this->post_meta_2($post) : "";
$output =
"<article " . jnews_post_class("jeg_post jeg_pl_xs_4", $post->ID) . ">
<div class=\"jeg_postblock_content\">
<h3 class=\"jeg_post_title\">
<a href=\"" . get_the_permalink($post) . "\">" . get_the_title($post) . "</a>
</h3>
" . $date . "
</div>
</article>";
return $output;
}
public function build_column($results)
{
$first_block = '';
$ads_position = $this->random_ads_position(sizeof($results));
$attr = $this->attribute;
for ( $i = 0; $i < sizeof($results); $i++ )
{
if ( $i == $ads_position )
{
$first_block .= $this->render_module_ads('jeg_ajax_loaded anim_' . $i);
}
$first_block .= $this->render_block($results[$i]);
}
$show_border = isset($attr['show_border']) && $attr['show_border'] ? 'show_border' : '';
$output =
"<div class=\"jeg_posts {$show_border}\">
<div class=\"jeg_postsmall jeg_load_more_flag\">
{$first_block}
</div>
</div>";
return $output;
}
public function build_column_alt($results)
{
$first_block = '';
$ads_position = $this->random_ads_position(sizeof($results));
for ( $i = 0; $i < sizeof($results); $i++ )
{
if ( $i == $ads_position )
{
$first_block .= $this->render_module_ads('jeg_ajax_loaded anim_' . $i);
}
$first_block .= $this->render_block($results[$i]);
}
$output = $first_block;
return $output;
}
public function render_output($attr, $column_class)
{
if ( isset( $attr['results'] ) ) {
$results = $attr['results'];
} else {
$results = $this->build_query($attr);
}
$navigation = $this->render_navigation($attr, $results['next'], $results['prev'], $results['total_page']);
if(!empty($results['result'])) {
$content = $this->render_column($results['result'], $column_class);
} else {
$content = $this->empty_content();
}
return
"<div class=\"jeg_block_container\">
{$this->get_content_before($attr)}
{$content}
{$this->get_content_after($attr)}
</div>
<div class=\"jeg_block_navigation\">
{$this->get_navigation_before($attr)}
{$navigation}
{$this->get_navigation_after($attr)}
</div>";
}
public function render_column($result, $column_class)
{
$content = $this->build_column($result);
return $content;
}
public function render_column_alt($result, $column_class)
{
$content = $this->build_column_alt($result);
return $content;
}
}