woocommerce/includes/widgets/class-wc-widget-recently-vi...

115 lines
2.7 KiB
PHP
Raw Normal View History

2011-08-29 13:34:36 +00:00
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
2011-08-29 13:34:36 +00:00
/**
2015-11-03 13:31:20 +00:00
* Recent Products Widget.
2012-08-14 17:37:50 +00:00
*
* @author WooThemes
* @category Widgets
* @package WooCommerce/Widgets
2017-10-04 15:54:00 +00:00
* @version 3.3.0
* @extends WC_Widget
2011-08-29 13:34:36 +00:00
*/
class WC_Widget_Recently_Viewed extends WC_Widget {
2012-08-14 17:37:50 +00:00
/**
2015-11-03 13:31:20 +00:00
* Constructor.
2012-08-14 17:37:50 +00:00
*/
public function __construct() {
$this->widget_cssclass = 'woocommerce widget_recently_viewed_products';
$this->widget_description = __( "Display a list of a customer's recently viewed products.", 'woocommerce' );
$this->widget_id = 'woocommerce_recently_viewed_products';
$this->widget_name = __( 'Recent Viewed Products', 'woocommerce' );
$this->settings = array(
'title' => array(
'type' => 'text',
'std' => __( 'Recently Viewed Products', 'woocommerce' ),
'label' => __( 'Title', 'woocommerce' ),
),
'number' => array(
'type' => 'number',
'step' => 1,
'min' => 1,
'max' => '',
'std' => 10,
'label' => __( 'Number of products to show', 'woocommerce' ),
),
);
parent::__construct();
2011-08-29 13:34:36 +00:00
}
2012-08-14 17:37:50 +00:00
/**
* Output widget.
2012-08-14 17:37:50 +00:00
*
* @see WP_Widget
*
2012-08-14 17:37:50 +00:00
* @param array $args
* @param array $instance
*/
public function widget( $args, $instance ) {
$viewed_products = ! empty( $_COOKIE['woocommerce_recently_viewed'] ) ? (array) explode( '|', $_COOKIE['woocommerce_recently_viewed'] ) : array();
$viewed_products = array_reverse( array_filter( array_map( 'absint', $viewed_products ) ) );
if ( empty( $viewed_products ) ) {
return;
}
2012-08-14 17:37:50 +00:00
2011-08-29 13:34:36 +00:00
ob_start();
2012-08-14 17:37:50 +00:00
$number = ! empty( $instance['number'] ) ? absint( $instance['number'] ) : $this->settings['number']['std'];
2011-08-29 13:34:36 +00:00
$query_args = array(
'posts_per_page' => $number,
'no_found_rows' => 1,
'post_status' => 'publish',
'post_type' => 'product',
'post__in' => $viewed_products,
'orderby' => 'post__in',
);
2011-08-29 13:34:36 +00:00
if ( 'yes' === get_option( 'woocommerce_hide_out_of_stock_items' ) ) {
$query_args['tax_query'] = array(
array(
'taxonomy' => 'product_visibility',
'field' => 'name',
'terms' => 'outofstock',
'operator' => 'NOT IN',
),
);
}
2012-08-14 17:37:50 +00:00
$r = new WP_Query( $query_args );
2012-08-14 17:37:50 +00:00
2012-12-28 20:44:17 +00:00
if ( $r->have_posts() ) {
$this->widget_start( $args, $instance );
2012-12-28 20:44:17 +00:00
2016-06-17 12:23:42 +00:00
echo apply_filters( 'woocommerce_before_widget_product_list', '<ul class="product_list_widget">' );
2011-08-29 13:34:36 +00:00
$template_args = array(
'widget_id' => $args['widget_id']
);
while ( $r->have_posts() ) {
2012-12-28 20:44:17 +00:00
$r->the_post();
wc_get_template( 'content-widget-product.php', $template_args );
2012-12-28 20:44:17 +00:00
}
2016-06-17 12:23:42 +00:00
echo apply_filters( 'woocommerce_after_widget_product_list', '</ul>' );
2012-12-28 20:44:17 +00:00
$this->widget_end( $args );
2012-12-28 20:44:17 +00:00
}
2011-08-29 13:34:36 +00:00
wp_reset_postdata();
2012-05-13 21:39:21 +00:00
$content = ob_get_clean();
2012-08-14 17:37:50 +00:00
2012-05-13 21:39:21 +00:00
echo $content;
2011-08-29 13:34:36 +00:00
}
}