woocommerce/classes/widgets/class-wc-widget-recent-prod...

181 lines
5.5 KiB
PHP
Raw Normal View History

2011-08-10 17:11:11 +00:00
<?php
/**
* Recent Products Widget
2012-08-14 17:37:50 +00:00
*
* @author WooThemes
* @category Widgets
* @package WooCommerce/Widgets
* @version 1.6.4
* @extends WP_Widget
2011-08-10 17:11:11 +00:00
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
class WC_Widget_Recent_Products extends WP_Widget {
2011-08-10 17:11:11 +00:00
2011-08-26 21:28:55 +00:00
var $woo_widget_cssclass;
var $woo_widget_description;
var $woo_widget_idbase;
var $woo_widget_name;
2012-08-14 17:37:50 +00:00
/**
* constructor
*
* @access public
* @return void
*/
function WC_Widget_Recent_Products() {
2012-08-14 17:37:50 +00:00
2011-08-26 21:28:55 +00:00
/* Widget variable settings. */
2012-11-15 17:46:24 +00:00
$this->woo_widget_cssclass = 'woocommerce widget_recent_products';
2012-01-05 11:31:22 +00:00
$this->woo_widget_description = __( 'Display a list of your most recent products on your site.', 'woocommerce' );
2011-08-26 21:28:55 +00:00
$this->woo_widget_idbase = 'woocommerce_recent_products';
2012-10-16 09:45:33 +00:00
$this->woo_widget_name = __( 'WooCommerce Recent Products', 'woocommerce' );
2012-08-14 17:37:50 +00:00
2011-08-26 21:28:55 +00:00
/* Widget settings. */
$widget_ops = array( 'classname' => $this->woo_widget_cssclass, 'description' => $this->woo_widget_description );
2012-08-14 17:37:50 +00:00
2011-08-26 21:28:55 +00:00
/* Create the widget. */
$this->WP_Widget('recent_products', $this->woo_widget_name, $widget_ops);
2011-08-10 17:11:11 +00:00
add_action( 'save_post', array( $this, 'flush_widget_cache' ) );
add_action( 'deleted_post', array( $this, 'flush_widget_cache' ) );
add_action( 'switch_theme', array( $this, 'flush_widget_cache' ) );
2011-08-10 17:11:11 +00:00
}
2012-08-14 17:37:50 +00:00
/**
* widget function.
*
* @see WP_Widget
* @access public
* @param array $args
* @param array $instance
* @return void
*/
2011-08-10 17:11:11 +00:00
function widget($args, $instance) {
global $woocommerce;
2012-08-14 17:37:50 +00:00
2011-08-10 17:11:11 +00:00
$cache = wp_cache_get('widget_recent_products', 'widget');
if ( !is_array($cache) ) $cache = array();
if ( isset($cache[$args['widget_id']]) ) {
echo $cache[$args['widget_id']];
return;
}
ob_start();
extract($args);
2012-08-14 17:37:50 +00:00
2012-10-16 09:45:33 +00:00
$title = apply_filters('widget_title', empty($instance['title']) ? __('New Products', 'woocommerce' ) : $instance['title'], $instance, $this->id_base);
2011-08-10 17:11:11 +00:00
if ( !$number = (int) $instance['number'] )
$number = 10;
else if ( $number < 1 )
$number = 1;
else if ( $number > 15 )
$number = 15;
$show_variations = $instance['show_variations'] ? '1' : '0';
2012-08-14 17:37:50 +00:00
$query_args = array('posts_per_page' => $number, 'no_found_rows' => 1, 'post_status' => 'publish', 'post_type' => 'product');
2012-08-14 17:37:50 +00:00
$query_args['meta_query'] = array();
2012-08-14 17:37:50 +00:00
if ( $show_variations == '0' ) {
$query_args['meta_query'][] = $woocommerce->query->visibility_meta_query();
$query_args['parent'] = '0';
}
2012-08-14 17:37:50 +00:00
$query_args['meta_query'][] = $woocommerce->query->stock_status_meta_query();
$query_args['meta_query'] = array_filter( $query_args['meta_query'] );
2011-08-10 17:11:11 +00:00
2011-09-26 14:12:39 +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() ) {
echo $before_widget;
if ( $title )
echo $before_title . $title . $after_title;
echo '<ul class="product_list_widget">';
2011-08-10 17:11:11 +00:00
2012-12-28 20:44:17 +00:00
while ( $r->have_posts()) {
$r->the_post();
global $product;
echo '<li>
<a href="' . get_permalink() . '">
' . ( has_post_thumbnail() ? get_the_post_thumbnail( $r->post->ID, 'shop_thumbnail' ) : woocommerce_placeholder_img( 'shop_thumbnail' ) ) . ' ' . get_the_title() . '
</a> ' . $product->get_price_html() . '
</li>';
}
echo '</ul>';
echo $after_widget;
}
2011-08-10 17:11:11 +00:00
2012-05-13 21:39:21 +00:00
$content = ob_get_clean();
if ( isset( $args['widget_id'] ) ) $cache[$args['widget_id']] = $content;
2012-08-14 17:37:50 +00:00
2012-05-13 21:39:21 +00:00
echo $content;
2011-08-10 17:11:11 +00:00
wp_cache_set('widget_recent_products', $cache, 'widget');
}
2012-08-14 17:37:50 +00:00
/**
* update function.
*
* @see WP_Widget->update
* @access public
* @param array $new_instance
* @param array $old_instance
* @return array
*/
2011-08-10 17:11:11 +00:00
function update( $new_instance, $old_instance ) {
$instance = $old_instance;
$instance['title'] = strip_tags($new_instance['title']);
2012-08-14 17:37:50 +00:00
$instance['number'] = (int) $new_instance['number'];
2011-08-10 17:11:11 +00:00
$instance['show_variations'] = !empty($new_instance['show_variations']) ? 1 : 0;
$this->flush_widget_cache();
$alloptions = wp_cache_get( 'alloptions', 'options' );
if ( isset($alloptions['widget_recent_products']) ) delete_option('widget_recent_products');
return $instance;
}
function flush_widget_cache() {
wp_cache_delete('widget_recent_products', 'widget');
}
2012-08-14 17:37:50 +00:00
/**
* form function.
*
* @see WP_Widget->form
* @access public
* @param array $instance
* @return void
*/
2011-08-10 17:11:11 +00:00
function form( $instance ) {
$title = isset($instance['title']) ? esc_attr($instance['title']) : '';
if ( !isset($instance['number']) || !$number = (int) $instance['number'] )
$number = 5;
$show_variations = isset( $instance['show_variations'] ) ? (bool) $instance['show_variations'] : false;
?>
2012-10-16 09:45:33 +00:00
<p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e( 'Title:', 'woocommerce' ); ?></label>
2011-09-19 06:01:26 +00:00
<input class="widefat" id="<?php echo esc_attr( $this->get_field_id('title') ); ?>" name="<?php echo esc_attr( $this->get_field_name('title') ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>" /></p>
2011-08-10 17:11:11 +00:00
2012-10-16 09:45:33 +00:00
<p><label for="<?php echo $this->get_field_id('number'); ?>"><?php _e( 'Number of products to show:', 'woocommerce' ); ?></label>
2011-09-19 06:01:26 +00:00
<input id="<?php echo esc_attr( $this->get_field_id('number') ); ?>" name="<?php echo esc_attr( $this->get_field_name('number') ); ?>" type="text" value="<?php echo esc_attr( $number ); ?>" size="3" /></p>
2011-08-10 17:11:11 +00:00
<p><input type="checkbox" class="checkbox" id="<?php echo esc_attr( $this->get_field_id('show_variations') ); ?>" name="<?php echo esc_attr( $this->get_field_name('show_variations') ); ?>"<?php checked( $show_variations ); ?> />
<label for="<?php echo $this->get_field_id('show_variations'); ?>"><?php _e( 'Show hidden product variations', 'woocommerce' ); ?></label></p>
2011-08-10 17:11:11 +00:00
<?php
}
2012-08-14 17:37:50 +00:00
}