2012-08-10 09:35:25 +00:00
< ? php
2011-08-10 17:11:11 +00:00
/**
2011-09-04 00:02:44 +00:00
* Price Filter Widget and related functions
2012-08-10 09:35:25 +00:00
*
2012-08-14 17:37:50 +00:00
* Generates a range slider to filter products by price .
2011-08-10 17:11:11 +00:00
*
2012-08-14 17:37:50 +00:00
* @ author WooThemes
* @ category Widgets
* @ package WooCommerce / Widgets
2013-05-24 15:51:58 +00:00
* @ version 2.1 . 0
* @ extends WC_Widget
2011-09-04 00:02:44 +00:00
*/
2012-10-15 10:57:58 +00:00
if ( ! defined ( 'ABSPATH' ) ) exit ; // Exit if accessed directly
2013-05-24 15:51:58 +00:00
class WC_Widget_Price_Filter extends WC_Widget {
2012-08-10 09:35:25 +00:00
2012-08-14 17:37:50 +00:00
/**
2013-05-24 15:51:58 +00:00
* Constructor
2012-08-14 17:37:50 +00:00
*/
2013-05-24 15:51:58 +00:00
public function __construct () {
$this -> widget_cssclass = 'woocommerce widget_price_filter' ;
$this -> widget_description = __ ( 'Shows a price filter slider in a widget which lets you narrow down the list of shown products when viewing product categories.' , 'woocommerce' );
$this -> widget_id = 'woocommerce_price_filter' ;
$this -> widget_name = __ ( 'WooCommerce Price Filter' , 'woocommerce' );
$this -> settings = array (
'title' => array (
'type' => 'text' ,
'std' => __ ( 'Filter by price' , 'woocommerce' ),
'label' => __ ( 'Title' , 'woocommerce' )
)
);
parent :: __construct ();
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
*/
2013-05-24 15:51:58 +00:00
public function widget ( $args , $instance ) {
2012-06-29 20:18:22 +00:00
global $_chosen_attributes , $wpdb , $woocommerce , $wp_query , $wp ;
2012-08-10 09:35:25 +00:00
2013-05-24 15:51:58 +00:00
extract ( $args );
2013-06-20 11:05:07 +00:00
if ( ! is_post_type_archive ( 'product' ) && ! is_tax ( get_object_taxonomies ( 'product' ) ) )
return ;
2012-08-10 09:35:25 +00:00
2013-05-24 15:51:58 +00:00
if ( sizeof ( $woocommerce -> query -> unfiltered_product_ids ) == 0 )
return ; // None shown - return
2012-08-10 09:35:25 +00:00
2013-01-12 13:03:19 +00:00
$min_price = isset ( $_GET [ 'min_price' ] ) ? esc_attr ( $_GET [ 'min_price' ] ) : '' ;
$max_price = isset ( $_GET [ 'max_price' ] ) ? esc_attr ( $_GET [ 'max_price' ] ) : '' ;
2012-08-10 09:35:25 +00:00
wp_enqueue_script ( 'wc-price-slider' );
2013-05-24 15:51:58 +00:00
$title = apply_filters ( 'widget_title' , $instance [ 'title' ], $instance , $this -> id_base );
2012-08-10 09:35:25 +00:00
2011-08-10 17:11:11 +00:00
// Remember current filters/search
$fields = '' ;
2012-08-10 09:35:25 +00:00
2013-05-24 15:51:58 +00:00
if ( get_search_query () )
$fields .= '<input type="hidden" name="s" value="' . get_search_query () . '" />' ;
2012-08-10 09:35:25 +00:00
2013-05-24 15:51:58 +00:00
if ( ! empty ( $_GET [ 'post_type' ] ) )
$fields .= '<input type="hidden" name="post_type" value="' . esc_attr ( $_GET [ 'post_type' ] ) . '" />' ;
2012-08-10 09:35:25 +00:00
2013-05-24 15:51:58 +00:00
if ( ! empty ( $_GET [ 'product_cat' ] ) )
$fields .= '<input type="hidden" name="product_cat" value="' . esc_attr ( $_GET [ 'product_cat' ] ) . '" />' ;
2012-08-10 09:35:25 +00:00
2013-05-24 15:51:58 +00:00
if ( ! empty ( $_GET [ 'product_tag' ] ) )
$fields .= '<input type="hidden" name="product_tag" value="' . esc_attr ( $_GET [ 'product_tag' ] ) . '" />' ;
2013-07-19 06:11:41 +00:00
if ( ! empty ( $_GET [ 'orderby' ] ) )
$fields .= '<input type="hidden" name="orderby" value="' . esc_attr ( $_GET [ 'orderby' ] ) . '" />' ;
2013-05-24 15:51:58 +00:00
if ( $_chosen_attributes ) foreach ( $_chosen_attributes as $attribute => $data ) {
2013-09-16 11:43:13 +00:00
$taxonomy_filter = 'filter_' . str_replace ( 'pa_' , '' , $attribute );
$fields .= '<input type="hidden" name="' . esc_attr ( $taxonomy_filter ) . '" value="' . esc_attr ( implode ( ',' , $data [ 'terms' ] ) ) . '" />' ;
2013-05-24 15:51:58 +00:00
if ( $data [ 'query_type' ] == 'or' )
$fields .= '<input type="hidden" name="' . esc_attr ( str_replace ( 'pa_' , 'query_type_' , $attribute ) ) . '" value="or" />' ;
}
2012-08-10 09:35:25 +00:00
2011-12-02 11:43:15 +00:00
$min = $max = 0 ;
$post_min = $post_max = '' ;
2012-08-10 09:35:25 +00:00
2012-11-14 17:55:16 +00:00
if ( sizeof ( $woocommerce -> query -> layered_nav_product_ids ) === 0 ) {
2012-10-18 13:22:42 +00:00
$max = ceil ( $wpdb -> get_var (
$wpdb -> prepare ( '
SELECT max ( meta_value + 0 )
FROM % 1 $s
LEFT JOIN % 2 $s ON % 1 $s . ID = % 2 $s . post_id
2012-11-14 17:55:16 +00:00
WHERE meta_key = \ ' % 3 $s\ '
', $wpdb->posts, $wpdb->postmeta, ' _price ' )
2012-10-18 13:22:42 +00:00
) );
} else {
$max = ceil ( $wpdb -> get_var (
$wpdb -> prepare ( '
SELECT max ( meta_value + 0 )
FROM % 1 $s
LEFT JOIN % 2 $s ON % 1 $s . ID = % 2 $s . post_id
2012-11-14 17:55:16 +00:00
WHERE meta_key = \ ' % 3 $s\ '
2012-10-18 13:22:42 +00:00
AND (
% 1 $s . ID IN ( % 4 $s )
OR (
% 1 $s . post_parent IN ( % 4 $s )
AND % 1 $s . post_parent != 0
)
)
2012-11-14 17:55:16 +00:00
', $wpdb->posts, $wpdb->postmeta, ' _price ', implode( ' , ' , $woocommerce -> query -> layered_nav_product_ids )
) ) );
2012-10-18 13:22:42 +00:00
}
2012-08-10 09:35:25 +00:00
2013-05-24 15:51:58 +00:00
if ( $min == $max )
return ;
2012-08-10 09:35:25 +00:00
2012-03-29 14:50:20 +00:00
echo $before_widget . $before_title . $title . $after_title ;
2012-08-10 09:35:25 +00:00
if ( get_option ( 'permalink_structure' ) == '' )
2012-06-29 20:18:22 +00:00
$form_action = remove_query_arg ( array ( 'page' , 'paged' ), add_query_arg ( $wp -> query_string , '' , home_url ( $wp -> request ) ) );
else
$form_action = preg_replace ( '%\/page/[0-9]+%' , '' , home_url ( $wp -> request ) );
2012-08-10 09:35:25 +00:00
2013-11-20 19:11:59 +00:00
echo '<form method="get" action="' . esc_attr ( $form_action ) . ' " >
2011-08-10 17:11:11 +00:00
< div class = " price_slider_wrapper " >
2011-12-02 11:43:15 +00:00
< div class = " price_slider " style = " display:none; " ></ div >
2011-08-10 17:11:11 +00:00
< div class = " price_slider_amount " >
2013-01-12 13:03:19 +00:00
< input type = " text " id = " min_price " name = " min_price " value = " '.esc_attr( $min_price ).' " data - min = " '.esc_attr( $min ).' " placeholder = " '.__('Min price', 'woocommerce' ).' " />
< input type = " text " id = " max_price " name = " max_price " value = " '.esc_attr( $max_price ).' " data - max = " '.esc_attr( $max ).' " placeholder = " '.__( 'Max price', 'woocommerce' ).' " />
2012-10-16 09:45:33 +00:00
< button type = " submit " class = " button " > '.__( ' Filter ', ' woocommerce ' ).' </ button >
2011-12-02 11:43:15 +00:00
< div class = " price_label " style = " display:none; " >
2012-10-16 09:45:33 +00:00
'.__( ' Price : ', ' woocommerce ' ).' < span class = " from " ></ span > & mdash ; < span class = " to " ></ span >
2011-12-02 11:43:15 +00:00
</ div >
2013-05-24 15:51:58 +00:00
' . $fields . '
2011-12-02 11:43:15 +00:00
< div class = " clear " ></ div >
2011-08-10 17:11:11 +00:00
</ div >
</ div >
</ form > ' ;
2012-08-10 09:35:25 +00:00
2011-08-10 17:11:11 +00:00
echo $after_widget ;
}
2013-05-24 15:51:58 +00:00
}
2011-08-10 17:11:11 +00:00
2013-05-24 15:51:58 +00:00
register_widget ( 'WC_Widget_Price_Filter' );