woocommerce/includes/widgets/class-wc-widget-recent-revi...

104 lines
2.4 KiB
PHP
Raw Normal View History

2011-08-29 10:38:01 +00:00
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
2011-08-29 10:38:01 +00:00
/**
2015-11-03 13:31:20 +00:00
* Recent Reviews Widget.
2012-08-14 17:37:50 +00:00
*
* @author WooThemes
* @category Widgets
* @package WooCommerce/Widgets
* @version 2.3.0
* @extends WC_Widget
2011-08-29 10:38:01 +00:00
*/
class WC_Widget_Recent_Reviews 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_recent_reviews';
$this->widget_description = __( 'Display a list of your most recent reviews on your site.', 'woocommerce' );
$this->widget_id = 'woocommerce_recent_reviews';
$this->widget_name = __( 'WooCommerce recent reviews', 'woocommerce' );
$this->settings = array(
'title' => array(
'type' => 'text',
'std' => __( 'Recent reviews', 'woocommerce' ),
'label' => __( 'Title', 'woocommerce' ),
),
'number' => array(
'type' => 'number',
'step' => 1,
'min' => 1,
'max' => '',
'std' => 10,
'label' => __( 'Number of reviews to show', 'woocommerce' ),
),
);
parent::__construct();
2011-08-29 10:38:01 +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 ) {
global $comments, $comment;
2012-08-14 17:37:50 +00:00
if ( $this->get_cached_widget( $args ) ) {
2011-08-29 10:38:01 +00:00
return;
}
2011-08-29 10:38:01 +00:00
ob_start();
2012-08-14 17:37:50 +00:00
$number = ! empty( $instance['number'] ) ? absint( $instance['number'] ) : $this->settings['number']['std'];
$comments = get_comments( array( 'number' => $number, 'status' => 'approve', 'post_status' => 'publish', 'post_type' => 'product' ) );
2012-08-14 17:37:50 +00:00
2012-10-18 10:33:47 +00:00
if ( $comments ) {
$this->widget_start( $args, $instance );
2011-08-29 10:38:01 +00:00
echo '<ul class="product_list_widget">';
2012-08-14 17:37:50 +00:00
foreach ( (array) $comments as $comment ) {
2012-08-14 17:37:50 +00:00
$_product = wc_get_product( $comment->comment_post_ID );
2012-08-14 17:37:50 +00:00
2012-10-16 13:06:06 +00:00
$rating = intval( get_comment_meta( $comment->comment_ID, 'rating', true ) );
2012-08-14 17:37:50 +00:00
$rating_html = $_product->get_rating_html( $rating );
2012-08-14 17:37:50 +00:00
2012-10-18 10:33:47 +00:00
echo '<li><a href="' . esc_url( get_comment_link( $comment->comment_ID ) ) . '">';
2012-08-14 17:37:50 +00:00
echo $_product->get_image();
2012-08-14 17:37:50 +00:00
echo $_product->get_title() . '</a>';
2012-08-14 17:37:50 +00:00
2011-08-29 10:38:01 +00:00
echo $rating_html;
2012-08-14 17:37:50 +00:00
2016-10-29 10:16:03 +00:00
/* translators: %s: review author */
echo '<span class="reviewer">' . sprintf( __( 'by %s', 'woocommerce' ), get_comment_author() ) . '</span>';
2013-09-04 13:32:16 +00:00
echo '</li>';
2012-10-18 10:33:47 +00:00
}
2011-08-29 10:38:01 +00:00
echo '</ul>';
$this->widget_end( $args );
2012-10-18 10:33:47 +00:00
}
2011-08-29 10:38:01 +00:00
2012-05-13 21:39:21 +00:00
$content = ob_get_clean();
echo $content;
$this->cache_widget( $args, $content );
2011-08-29 10:38:01 +00:00
}
}