<?php
/**
* Vmag: Block Posts (Style 2)
*
* Widget to display latest or selected category posts as on slider style.
*
* @package VMag
*/
add_action( 'widgets_init', 'vmag_register_block_posts_style2_widget' );
function vmag_register_block_posts_style2_widget() {
register_widget( 'vmag_block_posts_style2' );
}
class Vmag_Block_Posts_Style2 extends WP_Widget {
/**
* Register widget with WordPress.
*/
public function __construct() {
$widget_ops = array(
'classname' => 'vmag_block_posts_style2',
'description' => __( 'This widget for showing posts from selected category or latest.', 'vmag' )
);
parent::__construct( 'vmag_block_posts_style2', __( 'VMag: Block Posts(Style2)', 'vmag' ), $widget_ops );
}
/**
* Helper function that holds widget fields
* Array is used in update and form functions
*/
private function widget_fields() {
global $vmag_posts_type, $vmag_cat_dropdown, $vmag_column_choice;
$fields = array(
'block_layout' => array(
'vmag_widgets_name' => 'block_layout',
'vmag_widgets_title' => __( 'Block Posts (Style2) layout', 'vmag' ),
'vmag_widgets_layout_img' => get_template_directory_uri() .'/inc/assets/images/block-style2.png',
'vmag_widgets_field_type' => 'widget_layout_image'
),
'block_title' => array(
'vmag_widgets_name' => 'block_title',
'vmag_widgets_title' => __( 'Block Title', 'vmag' ),
'vmag_widgets_field_type' => 'text'
),
'block_title_url' => array(
'vmag_widgets_name' => 'block_title_url',
'vmag_widgets_title' => __( 'Block Title Url', 'vmag' ),
'vmag_widgets_field_type' => 'url'
),
'block_posts_column' => array(
'vmag_widgets_name' => 'block_posts_column',
'vmag_widgets_title' => __( 'No. of column', 'vmag' ),
'vmag_widgets_default' => 3,
'vmag_widgets_field_type' => 'select',
'vmag_widgets_field_options'=> $vmag_column_choice
),
'block_posts_count' => array(
'vmag_widgets_name' => 'block_posts_count',
'vmag_widgets_title' => __( 'No. of Posts', 'vmag' ),
'vmag_widgets_default' => 3,
'vmag_widgets_field_type' => 'number'
),
'block_post_type' => array(
'vmag_widgets_name' => 'block_post_type',
'vmag_widgets_title' => __( 'Block posts: ', 'vmag' ),
'vmag_widgets_field_type' => 'radio',
'vmag_widgets_default' => 'latest_posts',
'vmag_widgets_field_options' => $vmag_posts_type
),
'block_post_category' => array(
'vmag_widgets_name' => 'block_post_category',
'vmag_widgets_title' => __( 'Category for Block Posts', 'vmag' ),
'vmag_widgets_default' => 0,
'vmag_widgets_field_type' => 'select',
'vmag_widgets_field_options' => $vmag_cat_dropdown
),
'block_view_all_icon' => array(
'vmag_widgets_name' => 'block_view_all_icon',
'vmag_widgets_title' => __( 'View all Icon', 'vmag' ),
'vmag_widgets_field_type' => 'checkbox'
),
);
return $fields;
}
/**
* Front-end display of widget.
*
* @see WP_Widget::widget()
*
* @param array $args Widget arguments.
* @param array $instance Saved values from database.
*/
public function widget( $args, $instance ) {
extract( $args );
if( empty( $instance ) ) {
return ;
}
$vmag_block_title = empty( $instance['block_title'] ) ? '' : $instance['block_title'];
$vmag_block_title_url = empty( $instance['block_title_url'] ) ? '' : $instance['block_title_url'];
$vmag_block_column = empty( $instance['block_posts_column'] ) ? 3 : $instance['block_posts_column'];
$vmag_block_posts_count = empty( $instance['block_posts_count'] ) ? 3 : $instance['block_posts_count'];
$vmag_block_posts_type = empty( $instance['block_post_type'] ) ? 'latest_posts' : $instance['block_post_type'];
$vmag_block_cat_id = empty( $instance['block_post_category'] ) ? null: $instance['block_post_category'];
$vmag_block_view_all_icon = empty( $instance['block_view_all_icon'] ) ? '' : $instance['block_view_all_icon'];
echo wp_kses_post( $before_widget );
?>
<div class="block-post-wrapper column<?php echo intval( $vmag_block_column ); ?>-layout">
<div class="block-header clearfix">
<?php
vmag_widget_title( $vmag_block_title, $vmag_block_title_url );
vmag_block_view_all( $vmag_block_view_all_icon, $vmag_block_posts_type, $vmag_block_cat_id );
?>
</div><!-- .block-header-->
<div class="block-column-wrapper wow fadeInUp" data-wow-duration="0.7s">
<?php
$block_args = vmag_query_args( $vmag_block_posts_type, $vmag_block_posts_count, $vmag_block_cat_id );
$block_query = new WP_Query( $block_args );
$i = 1;
if( $block_query->have_posts() ) {
while( $block_query->have_posts() ) {
$block_query->the_post();
$image_id = get_post_thumbnail_id();
$image_path = wp_get_attachment_image_src( $image_id, 'vmag-rectangle-thumb', true );
$image_alt = get_post_meta( $image_id, '_wp_attachment_image_alt', true );
?>
<div class="single-post clearfix">
<div class="post-thumb">
<?php if( has_post_thumbnail() ) { ?>
<a class="thumb-zoom" href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
<img src="<?php echo esc_url( $image_path[0] ); ?>" alt="<?php echo esc_attr( $image_alt ); ?>" title="<?php the_title(); ?>" />
<div class="image-overlay"></div>
</a>
<?php } ?>
<?php do_action( 'vmag_post_format_icon' ); ?>
</div>
<h3 class="small-font"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<div class="post-meta">
<?php do_action( 'vmag_post_meta' ); ?>
</div>
</div>
<?php
$i++;
}
}
wp_reset_query();
?>
</div><!-- .block-column-wrapper -->
</div><!-- .block-post-wrapper -->
<?php
echo wp_kses_post( $after_widget );
}
/**
* Sanitize widget form values as they are saved.
*
* @see WP_Widget::update()
*
* @param array $new_instance Values just sent to be saved.
* @param array $old_instance Previously saved values from database.
*
* @uses vmag_widgets_updated_field_value() defined in vmag-widget-fields.php
*
* @return array Updated safe values to be saved.
*/
public function update( $new_instance, $old_instance ) {
$instance = $old_instance;
$widget_fields = $this->widget_fields();
// Loop through fields
foreach ( $widget_fields as $widget_field ) {
extract( $widget_field );
// Use helper function to get updated field values
$instance[$vmag_widgets_name] = vmag_widgets_updated_field_value( $widget_field, $new_instance[$vmag_widgets_name] );
}
return $instance;
}
/**
* Back-end widget form.
*
* @see WP_Widget::form()
*
* @param array $instance Previously saved values from database.
*
* @uses vmag_widgets_show_widget_field() defined in vmag-widget-fields.php
*/
public function form( $instance ) {
$widget_fields = $this->widget_fields();
// Loop through fields
foreach ( $widget_fields as $widget_field ) {
// Make array elements available as variables
extract( $widget_field );
$vmag_widgets_field_value = !empty( $instance[$vmag_widgets_name]) ? esc_attr($instance[$vmag_widgets_name] ) : '';
vmag_widgets_show_widget_field( $this, $widget_field, $vmag_widgets_field_value );
}
}
}