woocommerce/includes/widgets/class-wc-widget-layered-nav...

424 lines
12 KiB
PHP
Raw Normal View History

2012-05-26 16:25:07 +00:00
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
2012-05-26 16:25:07 +00:00
/**
2015-11-03 13:31:20 +00:00
* Layered Navigation Widget.
2012-08-14 17:37:50 +00:00
*
* @author WooThemes
* @category Widgets
* @package WooCommerce/Widgets
* @version 2.6.0
* @extends WC_Widget
2012-05-26 16:25:07 +00:00
*/
class WC_Widget_Layered_Nav 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_layered_nav';
$this->widget_description = __( 'Shows a custom attribute in a widget which lets you narrow down the list of products when viewing product categories.', 'woocommerce' );
$this->widget_id = 'woocommerce_layered_nav';
$this->widget_name = __( 'WooCommerce Layered Nav', 'woocommerce' );
2013-06-20 11:05:07 +00:00
parent::__construct();
}
/**
* Updates a particular instance of a widget.
2013-06-20 11:05:07 +00:00
*
* @see WP_Widget->update
*
2013-06-20 11:05:07 +00:00
* @param array $new_instance
* @param array $old_instance
*
2013-06-20 11:05:07 +00:00
* @return array
*/
public function update( $new_instance, $old_instance ) {
$this->init_settings();
return parent::update( $new_instance, $old_instance );
}
/**
* Outputs the settings update form.
2013-06-20 11:05:07 +00:00
*
* @see WP_Widget->form
*
2013-06-20 11:05:07 +00:00
* @param array $instance
*/
public function form( $instance ) {
$this->init_settings();
2013-11-28 13:12:08 +00:00
parent::form( $instance );
2013-06-20 11:05:07 +00:00
}
/**
2015-11-03 13:31:20 +00:00
* Init settings after post types are registered.
2013-06-20 11:05:07 +00:00
*/
public function init_settings() {
$attribute_array = array();
$attribute_taxonomies = wc_get_attribute_taxonomies();
if ( $attribute_taxonomies ) {
foreach ( $attribute_taxonomies as $tax ) {
if ( taxonomy_exists( wc_attribute_taxonomy_name( $tax->attribute_name ) ) ) {
$attribute_array[ $tax->attribute_name ] = $tax->attribute_name;
}
}
}
$this->settings = array(
'title' => array(
'type' => 'text',
'std' => __( 'Filter by', 'woocommerce' ),
'label' => __( 'Title', 'woocommerce' )
),
'attribute' => array(
'type' => 'select',
'std' => '',
'label' => __( 'Attribute', 'woocommerce' ),
'options' => $attribute_array
),
'display_type' => array(
'type' => 'select',
'std' => 'list',
'label' => __( 'Display type', 'woocommerce' ),
'options' => array(
'list' => __( 'List', 'woocommerce' ),
'dropdown' => __( 'Dropdown', 'woocommerce' )
)
),
'query_type' => array(
'type' => 'select',
'std' => 'and',
'label' => __( 'Query type', 'woocommerce' ),
'options' => array(
'and' => __( 'AND', 'woocommerce' ),
'or' => __( 'OR', 'woocommerce' )
)
),
);
2012-05-26 16:25:07 +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 ) {
2013-09-27 08:55:04 +00:00
global $_chosen_attributes;
2012-11-27 16:22:47 +00:00
if ( ! is_post_type_archive( 'product' ) && ! is_tax( get_object_taxonomies( 'product' ) ) ) {
2012-08-28 15:18:16 +00:00
return;
}
2012-08-14 17:37:50 +00:00
$taxonomy = isset( $instance['attribute'] ) ? wc_attribute_taxonomy_name( $instance['attribute'] ) : $this->settings['attribute']['std'];
$query_type = isset( $instance['query_type'] ) ? $instance['query_type'] : $this->settings['query_type']['std'];
$display_type = isset( $instance['display_type'] ) ? $instance['display_type'] : $this->settings['display_type']['std'];
2012-05-26 16:25:07 +00:00
if ( ! taxonomy_exists( $taxonomy ) ) {
2012-08-28 15:18:16 +00:00
return;
}
2012-08-14 17:37:50 +00:00
$get_terms_args = array( 'hide_empty' => '1' );
$orderby = wc_attribute_orderby( $taxonomy );
switch ( $orderby ) {
case 'name' :
$get_terms_args['orderby'] = 'name';
$get_terms_args['menu_order'] = false;
break;
case 'id' :
$get_terms_args['orderby'] = 'id';
$get_terms_args['order'] = 'ASC';
$get_terms_args['menu_order'] = false;
break;
case 'menu_order' :
$get_terms_args['menu_order'] = 'ASC';
break;
}
$terms = get_terms( $taxonomy, $get_terms_args );
2012-08-14 17:37:50 +00:00
if ( 0 === sizeof( $terms ) ) {
return;
}
2012-08-14 17:37:50 +00:00
ob_start();
2012-08-14 17:37:50 +00:00
$this->widget_start( $args, $instance );
2012-08-14 17:37:50 +00:00
if ( 'dropdown' === $display_type ) {
$found = $this->layered_nav_dropdown( $terms, $taxonomy, $query_type );
} else {
$found = $this->layered_nav_list( $terms, $taxonomy, $query_type );
}
2012-08-14 17:37:50 +00:00
$this->widget_end( $args );
2012-08-14 17:37:50 +00:00
// Force found when option is selected - do not force found on taxonomy attributes
if ( ! is_tax() && is_array( $_chosen_attributes ) && array_key_exists( $taxonomy, $_chosen_attributes ) ) {
$found = true;
}
2012-08-14 17:37:50 +00:00
if ( ! $found ) {
ob_end_clean();
} else {
echo ob_get_clean();
}
}
2012-08-14 17:37:50 +00:00
/**
* Return the currently viewed taxonomy name.
* @return string
*/
protected function get_current_taxonomy() {
return is_tax() ? get_queried_object()->taxonomy : '';
}
2012-08-14 17:37:50 +00:00
/**
* Return the currently viewed term ID.
* @return int
*/
protected function get_current_term_id() {
return absint( is_tax() ? get_queried_object()->term_id : 0 );
}
2012-08-14 17:37:50 +00:00
/**
* Return the currently viewed term slug.
* @return int
*/
protected function get_current_term_slug() {
return absint( is_tax() ? get_queried_object()->slug : 0 );
}
2012-08-14 17:37:50 +00:00
/**
* Show dropdown layered nav.
* @param array $terms
* @param string $taxonomy
* @param string $query_type
* @return bool Will nav display?
*/
protected function layered_nav_dropdown( $terms, $taxonomy, $query_type ) {
global $_chosen_attributes;
2012-08-14 17:37:50 +00:00
$found = false;
2012-08-14 17:37:50 +00:00
if ( $taxonomy !== $this->get_current_taxonomy() ) {
$taxonomy_filter_name = str_replace( 'pa_', '', $taxonomy );
2012-08-14 17:37:50 +00:00
echo '<select class="dropdown_layered_nav_' . esc_attr( $taxonomy_filter_name ) . '">';
echo '<option value="">' . sprintf( __( 'Any %s', 'woocommerce' ), wc_attribute_label( $taxonomy ) ) . '</option>';
2012-08-14 17:37:50 +00:00
foreach ( $terms as $term ) {
2012-08-14 17:37:50 +00:00
// If on a term page, skip that term in widget list
if ( $term->term_id === $this->get_current_term_id() ) {
continue;
2012-05-26 16:25:07 +00:00
}
2012-08-14 17:37:50 +00:00
// Get count based on current view
$_products_in_term = wc_get_term_product_ids( $term->term_id, $taxonomy );
$current_values = isset( $_chosen_attributes[ $taxonomy ]['terms'] ) ? $_chosen_attributes[ $taxonomy ]['terms'] : array();
$option_is_set = in_array( $term->slug, $current_values );
2016-02-10 10:02:50 +00:00
$count = $this->get_filtered_term_product_count( $term, $taxonomy, $query_type );
2012-08-14 17:37:50 +00:00
2016-02-10 10:02:50 +00:00
// Only show options with count > 0
if ( 0 < $count ) {
$found = true;
} elseif ( 'and' === $query_type && 0 === $count && ! $option_is_set ) {
continue;
}
2012-08-14 17:37:50 +00:00
echo '<option value="' . esc_attr( $term->slug ) . '" ' . selected( $option_is_set, true, false ) . '>' . esc_html( $term->name ) . '</option>';
}
2012-08-14 17:37:50 +00:00
echo '</select>';
2012-08-14 17:37:50 +00:00
wc_enqueue_js( "
jQuery( '.dropdown_layered_nav_". esc_js( $taxonomy_filter_name ) . "' ).change( function() {
var slug = jQuery( this ).val();
location.href = '" . preg_replace( '%\/page\/[0-9]+%', '', str_replace( array( '&amp;', '%2C' ), array( '&', ',' ), esc_js( add_query_arg( 'filtering', '1', remove_query_arg( array( 'page', 'filter_' . $taxonomy_filter_name ) ) ) ) ) ) . "&filter_". esc_js( $taxonomy_filter_name ) . "=' + slug;
});
" );
}
2012-08-14 17:37:50 +00:00
return $found;
}
2012-08-14 17:37:50 +00:00
/**
* Get current page URL for layered nav items.
* @return string
*/
protected function get_page_base_url() {
if ( defined( 'SHOP_IS_ON_FRONT' ) ) {
$link = home_url();
} elseif ( is_post_type_archive( 'product' ) || is_page( wc_get_page_id('shop') ) ) {
$link = get_post_type_archive_link( 'product' );
} else {
$link = get_term_link( get_query_var('term'), get_query_var('taxonomy') );
}
2012-08-14 17:37:50 +00:00
// Min/Max
if ( isset( $_GET['min_price'] ) ) {
$link = add_query_arg( 'min_price', wc_clean( $_GET['min_price'] ), $link );
}
2012-08-14 17:37:50 +00:00
if ( isset( $_GET['max_price'] ) ) {
$link = add_query_arg( 'max_price', wc_clean( $_GET['max_price'] ), $link );
}
2012-10-16 13:06:06 +00:00
// Orderby
if ( isset( $_GET['orderby'] ) ) {
$link = add_query_arg( 'orderby', wc_clean( $_GET['orderby'] ), $link );
}
2012-08-14 17:37:50 +00:00
// Search Arg
if ( get_search_query() ) {
$link = add_query_arg( 's', get_search_query(), $link );
}
2012-08-14 17:37:50 +00:00
// Post Type Arg
if ( isset( $_GET['post_type'] ) ) {
$link = add_query_arg( 'post_type', wc_clean( $_GET['post_type'] ), $link );
}
2012-08-14 17:37:50 +00:00
2016-02-09 15:18:27 +00:00
// Min Rating Arg
if ( isset( $_GET['min_rating'] ) ) {
$link = add_query_arg( 'min_rating', wc_clean( $_GET['min_rating'] ), $link );
}
2012-08-28 15:18:16 +00:00
return $link;
}
2012-08-28 15:18:16 +00:00
2016-02-09 21:14:55 +00:00
/**
2016-02-10 10:02:50 +00:00
* Count products after other filters have occured by adjusting the main query.
2016-02-09 21:14:55 +00:00
* @param object $term
* @param string $taxonomy
* @param string $query_type
* @return int
*/
2016-02-10 10:02:50 +00:00
protected function get_filtered_term_product_count( $term, $taxonomy, $query_type ) {
global $wpdb;
$tax_query = WC_Query::get_main_tax_query();
$meta_query = WC_Query::get_main_meta_query();
2016-02-09 21:14:55 +00:00
if ( 'or' === $query_type ) {
foreach ( $tax_query as $key => $query ) {
if ( $taxonomy === $query['taxonomy'] ) {
unset( $tax_query[ $key ] );
}
}
}
$tax_query[] = array(
2016-02-09 23:11:50 +00:00
'taxonomy' => $taxonomy,
'field' => 'term_id',
'terms' => $term->term_id,
'include_children' => false
2016-02-09 21:14:55 +00:00
);
$meta_query = new WP_Meta_Query( $meta_query );
$tax_query = new WP_Tax_Query( $tax_query );
$meta_query_sql = $meta_query->get_sql( 'post', $wpdb->posts, 'ID' );
$tax_query_sql = $tax_query->get_sql( $wpdb->posts, 'ID' );
$sql = "SELECT COUNT( {$wpdb->posts}.ID ) FROM {$wpdb->posts} ";
$sql .= $tax_query_sql['join'] . $meta_query_sql['join'];
$sql .= " WHERE {$wpdb->posts}.post_type = 'product' AND {$wpdb->posts}.post_status = 'publish' ";
$sql .= $tax_query_sql['where'] . $meta_query_sql['where'];
return absint( $wpdb->get_var( $sql ) );
}
/**
* Show list based layered nav.
* @param array $terms
* @param string $taxonomy
* @param string $query_type
* @return bool Will nav display?
*/
protected function layered_nav_list( $terms, $taxonomy, $query_type ) {
global $_chosen_attributes;
2012-08-14 17:37:50 +00:00
// List display
echo '<ul>';
2014-02-24 15:45:43 +00:00
2016-02-09 21:14:55 +00:00
$found = false;
2012-11-27 16:22:47 +00:00
foreach ( $terms as $term ) {
// Get count based on current view - uses transients
2016-02-09 14:46:06 +00:00
// flip the product_in_term array so that we can use array_intersect_key
$_products_in_term = array_flip( wc_get_term_product_ids( $term->term_id, $taxonomy ) );
$current_values = isset( $_chosen_attributes[ $taxonomy ]['terms'] ) ? $_chosen_attributes[ $taxonomy ]['terms'] : array();
$option_is_set = in_array( $term->slug, $current_values );
2012-08-14 17:37:50 +00:00
// skip the term for the current archive
if ( $this->get_current_term_id() === $term->term_id ) {
continue;
}
2012-08-14 17:37:50 +00:00
2016-02-10 10:02:50 +00:00
$count = $this->get_filtered_term_product_count( $term, $taxonomy, $query_type );
2016-02-10 00:07:07 +00:00
2016-02-10 10:02:50 +00:00
// Only show options with count > 0
if ( 0 < $count ) {
$found = true;
} elseif ( 'and' === $query_type && 0 === $count && ! $option_is_set ) {
continue;
}
2012-08-14 17:37:50 +00:00
$filter_name = 'filter_' . sanitize_title( str_replace( 'pa_', '', $taxonomy ) );
$current_filter = isset( $_GET[ $filter_name ] ) ? explode( ',', wc_clean( $_GET[ $filter_name ] ) ) : array();
$current_filter = array_map( 'sanitize_title', $current_filter );
2012-08-14 17:37:50 +00:00
if ( ! in_array( $term->slug, $current_filter ) ) {
$current_filter[] = $term->slug;
}
2012-08-14 17:37:50 +00:00
$link = $this->get_page_base_url();
2012-08-14 17:37:50 +00:00
// Add current filters to URL.
foreach ( $current_filter as $key => $value ) {
// Exclude query arg for current term archive term
if ( $value === $this->get_current_term_slug() ) {
unset( $current_filter[ $key ] );
}
2012-08-14 17:37:50 +00:00
// Exclude self so filter can be unset on click.
if ( $option_is_set && $value === $term->slug ) {
unset( $current_filter[ $key ] );
}
}
2012-08-14 17:37:50 +00:00
if ( ! empty( $current_filter ) ) {
$link = add_query_arg( $filter_name, implode( ',', $current_filter ), $link );
2012-08-14 17:37:50 +00:00
// Add Query type Arg to URL
if ( $query_type === 'or' && ! ( 1 === sizeof( $current_filter ) && $option_is_set ) ) {
$link = add_query_arg( 'query_type_' . sanitize_title( str_replace( 'pa_', '', $taxonomy ) ), 'or', $link );
2012-05-26 16:25:07 +00:00
}
}
2012-08-14 17:37:50 +00:00
echo '<li class="wc-layered-nav-term ' . ( $option_is_set ? 'chosen' : '' ) . '">';
2012-08-14 17:37:50 +00:00
echo ( $count > 0 || $option_is_set ) ? '<a href="' . esc_url( apply_filters( 'woocommerce_layered_nav_link', $link ) ) . '">' : '<span>';
2012-08-14 17:37:50 +00:00
echo esc_html( $term->name );
echo ( $count > 0 || $option_is_set ) ? '</a>' : '</span>';
echo ' <span class="count">(' . absint( $count ) . ')</span></li>';
2012-05-26 16:25:07 +00:00
}
echo '</ul>';
return $found;
2012-05-26 16:25:07 +00:00
}
}