File: /home/ksonpoau/httpdocs/wp-content/themes/storecommerce/inc/widgets/widget-product-grid.php
<?php
if (!class_exists('StoreCommerce_Product_Grid')) :
/**
* Adds StoreCommerce_Product_Grid widget.
*/
class StoreCommerce_Product_Grid extends AFthemes_Widget_Base
{
/**
* Sets up a new widget instance.
*
* @since 1.0.0
*/
function __construct()
{
$this->text_fields = array('storecommerce-categorised-product-title', 'storecommerce-categorised-product-subtitle', 'storecommerce-categorised-product-title-note', 'storecommerce-number-of-items');
$this->select_fields = array('storecommerce-select-category');
$widget_ops = array(
'classname' => 'storecommerce_categorised_product_widget grid-layout',
'description' => __('Displays products from selected category in a grid.', 'storecommerce'),
'customize_selective_refresh' => true,
);
parent::__construct('storecommerce_categorised_product', __('AFTSC Product Grid', 'storecommerce'), $widget_ops);
}
/**
* 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)
{
$instance = parent::storecommerce_sanitize_data($instance, $instance);
/** This filter is documented in wp-includes/default-widgets.php */
$title = apply_filters('widget_title', $instance['storecommerce-categorised-product-title'], $instance, $this->id_base);
$subtitle = isset($instance['storecommerce-categorised-product-subtitle']) ? $instance['storecommerce-categorised-product-subtitle'] : '';
$title_note = isset($instance['storecommerce-categorised-product-title-note']) ? $instance['storecommerce-categorised-product-title-note'] : '';
$category = isset($instance['storecommerce-select-category']) ? $instance['storecommerce-select-category'] : '0';
// open the widget container
echo $args['before_widget'];
?>
<section class="products">
<div class="container-wrapper">
<?php if (!empty($title)): ?>
<div class="section-head">
<?php if (!empty($title)): ?>
<h4 class="widget-title section-title">
<span class="header-after">
<?php echo esc_html($title); ?>
</span>
<?php if(!empty($title_note)): ?><span class="title-note"><?php echo esc_html($title_note); ?></span><?php endif; ?>
</h4>
<?php endif; ?>
<?php if (!empty($subtitle)): ?>
<span class="section-subtitle">
<?php echo esc_html($subtitle); ?>
</span>
<?php endif; ?>
</div>
<?php endif; ?>
<?php
$all_posts = storecommerce_get_products(8, $category);
?>
<div class="product-section-wrapper section-body">
<div class="row">
<ul class="product-ul">
<?php
if ($all_posts->have_posts()) :
while ($all_posts->have_posts()): $all_posts->the_post();
?>
<li class="col-xs-6 col-sm-6 col-md-3 product-ful-widt" data-mh="grid-product-loop">
<?php storecommerce_get_block('product-loop'); ?>
</li>
<?php endwhile; ?>
<?php endif; ?>
<?php wp_reset_postdata(); ?>
</ul>
</div>
</div>
</div>
</section>
<?php
// close the widget container
echo $args['after_widget'];
}
/**
* Back-end widget form.
*
* @see WP_Widget::form()
*
* @param array $instance Previously saved values from database.
*/
public function form($instance)
{
$this->form_instance = $instance;
$categories = storecommerce_get_terms('product_cat');
if (isset($categories) && !empty($categories)) {
// generate the text input for the title of the widget. Note that the first parameter matches text_fields array entry
echo parent::storecommerce_generate_text_input('storecommerce-categorised-product-title', __('Title', 'storecommerce'), __('Product Grid', 'storecommerce'));
echo parent::storecommerce_generate_text_input('storecommerce-categorised-product-subtitle', __('Subtitle', 'storecommerce'), __('Product Grid Subtitle', 'storecommerce'));
echo parent::storecommerce_generate_text_input('storecommerce-categorised-product-title-note', __('Title Note', 'storecommerce'), '');
echo parent::storecommerce_generate_select_options('storecommerce-select-category', __('Select category', 'storecommerce'), $categories);
}
}
}
endif;