2013-05-24 15:51:58 +00:00
|
|
|
<?php
|
2018-03-05 13:21:04 +00:00
|
|
|
/**
|
|
|
|
* Abstract widget class
|
|
|
|
*
|
|
|
|
* @class WC_Widget
|
2020-08-05 16:36:24 +00:00
|
|
|
* @package WooCommerce\Abstracts
|
2018-03-05 13:21:04 +00:00
|
|
|
*/
|
|
|
|
|
2020-01-29 05:21:29 +00:00
|
|
|
use Automattic\Jetpack\Constants;
|
|
|
|
|
2017-05-10 18:03:19 +00:00
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2013-05-24 15:51:58 +00:00
|
|
|
/**
|
2018-03-05 13:21:04 +00:00
|
|
|
* WC_Widget
|
2013-05-24 15:51:58 +00:00
|
|
|
*
|
2020-08-05 16:36:24 +00:00
|
|
|
* @package WooCommerce\Abstracts
|
2015-11-30 06:26:29 +00:00
|
|
|
* @version 2.5.0
|
2014-11-15 01:12:59 +00:00
|
|
|
* @extends WP_Widget
|
2013-05-24 15:51:58 +00:00
|
|
|
*/
|
|
|
|
abstract class WC_Widget extends WP_Widget {
|
|
|
|
|
2014-11-15 01:12:59 +00:00
|
|
|
/**
|
2015-11-03 12:28:01 +00:00
|
|
|
* CSS class.
|
2014-11-15 01:12:59 +00:00
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2013-05-24 15:51:58 +00:00
|
|
|
public $widget_cssclass;
|
2014-11-15 01:12:59 +00:00
|
|
|
|
|
|
|
/**
|
2015-11-03 12:28:01 +00:00
|
|
|
* Widget description.
|
2014-11-15 01:12:59 +00:00
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2013-05-24 15:51:58 +00:00
|
|
|
public $widget_description;
|
2014-11-15 01:12:59 +00:00
|
|
|
|
|
|
|
/**
|
2015-11-03 12:28:01 +00:00
|
|
|
* Widget ID.
|
2014-11-15 01:12:59 +00:00
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2013-05-24 15:51:58 +00:00
|
|
|
public $widget_id;
|
2014-11-15 01:12:59 +00:00
|
|
|
|
|
|
|
/**
|
2015-11-03 12:28:01 +00:00
|
|
|
* Widget name.
|
2014-11-15 01:12:59 +00:00
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2013-05-24 15:51:58 +00:00
|
|
|
public $widget_name;
|
2014-11-15 01:12:59 +00:00
|
|
|
|
|
|
|
/**
|
2015-11-03 12:28:01 +00:00
|
|
|
* Settings.
|
2014-11-15 01:12:59 +00:00
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2013-05-24 15:51:58 +00:00
|
|
|
public $settings;
|
|
|
|
|
|
|
|
/**
|
2015-11-03 12:28:01 +00:00
|
|
|
* Constructor.
|
2013-05-24 15:51:58 +00:00
|
|
|
*/
|
|
|
|
public function __construct() {
|
|
|
|
$widget_ops = array(
|
2018-12-07 13:27:03 +00:00
|
|
|
'classname' => $this->widget_cssclass,
|
|
|
|
'description' => $this->widget_description,
|
2016-08-27 01:46:45 +00:00
|
|
|
'customize_selective_refresh' => true,
|
2021-05-31 10:20:57 +00:00
|
|
|
'show_instance_in_rest' => true,
|
2013-05-24 15:51:58 +00:00
|
|
|
);
|
|
|
|
|
2015-06-29 18:46:03 +00:00
|
|
|
parent::__construct( $this->widget_id, $this->widget_name, $widget_ops );
|
2013-05-24 15:51:58 +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' ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-01-04 14:37:12 +00:00
|
|
|
* Get cached widget.
|
|
|
|
*
|
2018-03-05 13:21:04 +00:00
|
|
|
* @param array $args Arguments.
|
2016-01-04 14:37:12 +00:00
|
|
|
* @return bool true if the widget is cached otherwise false
|
2013-05-24 15:51:58 +00:00
|
|
|
*/
|
2014-10-29 11:07:02 +00:00
|
|
|
public function get_cached_widget( $args ) {
|
2019-08-01 17:43:59 +00:00
|
|
|
// Don't get cache if widget_id doesn't exists.
|
|
|
|
if ( empty( $args['widget_id'] ) ) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-05-09 07:42:28 +00:00
|
|
|
$cache = wp_cache_get( $this->get_widget_id_for_cache( $this->widget_id ), 'widget' );
|
2013-05-24 15:51:58 +00:00
|
|
|
|
2014-08-31 05:49:58 +00:00
|
|
|
if ( ! is_array( $cache ) ) {
|
2013-05-24 15:51:58 +00:00
|
|
|
$cache = array();
|
2014-08-31 05:49:58 +00:00
|
|
|
}
|
2013-05-24 15:51:58 +00:00
|
|
|
|
2018-05-03 12:10:04 +00:00
|
|
|
if ( isset( $cache[ $this->get_widget_id_for_cache( $args['widget_id'] ) ] ) ) {
|
|
|
|
echo $cache[ $this->get_widget_id_for_cache( $args['widget_id'] ) ]; // phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped
|
2013-05-24 15:51:58 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-11-03 12:28:01 +00:00
|
|
|
* Cache the widget.
|
2014-11-15 01:12:59 +00:00
|
|
|
*
|
2018-03-05 13:21:04 +00:00
|
|
|
* @param array $args Arguments.
|
|
|
|
* @param string $content Content.
|
2014-10-29 11:07:02 +00:00
|
|
|
* @return string the content that was cached
|
2013-05-24 15:51:58 +00:00
|
|
|
*/
|
|
|
|
public function cache_widget( $args, $content ) {
|
2019-08-01 17:43:59 +00:00
|
|
|
// Don't set any cache if widget_id doesn't exist.
|
|
|
|
if ( empty( $args['widget_id'] ) ) {
|
|
|
|
return $content;
|
|
|
|
}
|
|
|
|
|
2018-05-09 07:42:28 +00:00
|
|
|
$cache = wp_cache_get( $this->get_widget_id_for_cache( $this->widget_id ), 'widget' );
|
2017-06-02 12:34:09 +00:00
|
|
|
|
|
|
|
if ( ! is_array( $cache ) ) {
|
|
|
|
$cache = array();
|
|
|
|
}
|
|
|
|
|
2018-05-03 12:10:04 +00:00
|
|
|
$cache[ $this->get_widget_id_for_cache( $args['widget_id'] ) ] = $content;
|
2017-06-02 12:34:09 +00:00
|
|
|
|
2018-05-09 07:42:28 +00:00
|
|
|
wp_cache_set( $this->get_widget_id_for_cache( $this->widget_id ), $cache, 'widget' );
|
2013-05-24 15:51:58 +00:00
|
|
|
|
2014-10-29 11:07:02 +00:00
|
|
|
return $content;
|
2013-05-24 15:51:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-11-03 12:28:01 +00:00
|
|
|
* Flush the cache.
|
2013-05-24 15:51:58 +00:00
|
|
|
*/
|
|
|
|
public function flush_widget_cache() {
|
2018-05-09 16:06:34 +00:00
|
|
|
foreach ( array( 'https', 'http' ) as $scheme ) {
|
2018-05-09 07:42:28 +00:00
|
|
|
wp_cache_delete( $this->get_widget_id_for_cache( $this->widget_id, $scheme ), 'widget' );
|
2018-05-03 12:10:04 +00:00
|
|
|
}
|
2013-05-24 15:51:58 +00:00
|
|
|
}
|
|
|
|
|
2019-01-04 16:11:36 +00:00
|
|
|
/**
|
|
|
|
* Get this widgets title.
|
|
|
|
*
|
|
|
|
* @param array $instance Array of instance options.
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
protected function get_instance_title( $instance ) {
|
2019-01-24 18:47:05 +00:00
|
|
|
if ( isset( $instance['title'] ) ) {
|
|
|
|
return $instance['title'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( isset( $this->settings, $this->settings['title'], $this->settings['title']['std'] ) ) {
|
|
|
|
return $this->settings['title']['std'];
|
|
|
|
}
|
|
|
|
|
|
|
|
return '';
|
2019-01-04 16:11:36 +00:00
|
|
|
}
|
|
|
|
|
2014-10-29 11:07:02 +00:00
|
|
|
/**
|
2015-11-03 12:28:01 +00:00
|
|
|
* Output the html at the start of a widget.
|
2014-11-15 01:12:59 +00:00
|
|
|
*
|
2018-03-05 13:21:04 +00:00
|
|
|
* @param array $args Arguments.
|
|
|
|
* @param array $instance Instance.
|
2014-10-29 11:07:02 +00:00
|
|
|
*/
|
|
|
|
public function widget_start( $args, $instance ) {
|
2018-03-05 13:21:04 +00:00
|
|
|
echo $args['before_widget']; // phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped
|
2014-10-29 11:07:02 +00:00
|
|
|
|
2019-01-04 16:11:36 +00:00
|
|
|
$title = apply_filters( 'widget_title', $this->get_instance_title( $instance ), $instance, $this->id_base );
|
|
|
|
|
|
|
|
if ( $title ) {
|
2018-03-05 13:21:04 +00:00
|
|
|
echo $args['before_title'] . $title . $args['after_title']; // phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped
|
2014-10-29 11:07:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-11-03 12:28:01 +00:00
|
|
|
* Output the html at the end of a widget.
|
2014-11-15 01:12:59 +00:00
|
|
|
*
|
2018-03-05 13:21:04 +00:00
|
|
|
* @param array $args Arguments.
|
2014-10-29 11:07:02 +00:00
|
|
|
*/
|
|
|
|
public function widget_end( $args ) {
|
2018-03-05 13:21:04 +00:00
|
|
|
echo $args['after_widget']; // phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped
|
2014-10-29 11:07:02 +00:00
|
|
|
}
|
|
|
|
|
2013-05-24 15:51:58 +00:00
|
|
|
/**
|
2016-01-04 14:37:12 +00:00
|
|
|
* Updates a particular instance of a widget.
|
2013-05-24 15:51:58 +00:00
|
|
|
*
|
2015-11-30 06:26:29 +00:00
|
|
|
* @see WP_Widget->update
|
2018-03-05 13:21:04 +00:00
|
|
|
* @param array $new_instance New instance.
|
|
|
|
* @param array $old_instance Old instance.
|
2013-05-24 15:51:58 +00:00
|
|
|
* @return array
|
|
|
|
*/
|
2014-08-31 05:49:58 +00:00
|
|
|
public function update( $new_instance, $old_instance ) {
|
|
|
|
|
2013-05-24 15:51:58 +00:00
|
|
|
$instance = $old_instance;
|
|
|
|
|
2015-03-27 15:15:40 +00:00
|
|
|
if ( empty( $this->settings ) ) {
|
2013-05-24 15:51:58 +00:00
|
|
|
return $instance;
|
2014-08-31 05:49:58 +00:00
|
|
|
}
|
2013-05-24 15:51:58 +00:00
|
|
|
|
2015-12-04 23:40:51 +00:00
|
|
|
// Loop settings and get values to save.
|
2013-05-24 15:51:58 +00:00
|
|
|
foreach ( $this->settings as $key => $setting ) {
|
2015-12-04 23:40:51 +00:00
|
|
|
if ( ! isset( $setting['type'] ) ) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Format the value based on settings type.
|
|
|
|
switch ( $setting['type'] ) {
|
2018-03-05 13:21:04 +00:00
|
|
|
case 'number':
|
2015-12-04 23:40:51 +00:00
|
|
|
$instance[ $key ] = absint( $new_instance[ $key ] );
|
|
|
|
|
|
|
|
if ( isset( $setting['min'] ) && '' !== $setting['min'] ) {
|
|
|
|
$instance[ $key ] = max( $instance[ $key ], $setting['min'] );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( isset( $setting['max'] ) && '' !== $setting['max'] ) {
|
|
|
|
$instance[ $key ] = min( $instance[ $key ], $setting['max'] );
|
|
|
|
}
|
2018-03-05 13:21:04 +00:00
|
|
|
break;
|
|
|
|
case 'textarea':
|
2015-12-04 23:40:51 +00:00
|
|
|
$instance[ $key ] = wp_kses( trim( wp_unslash( $new_instance[ $key ] ) ), wp_kses_allowed_html( 'post' ) );
|
2018-03-05 13:21:04 +00:00
|
|
|
break;
|
|
|
|
case 'checkbox':
|
2016-05-19 10:47:05 +00:00
|
|
|
$instance[ $key ] = empty( $new_instance[ $key ] ) ? 0 : 1;
|
2018-03-05 13:21:04 +00:00
|
|
|
break;
|
2015-12-04 23:40:51 +00:00
|
|
|
default:
|
2018-06-15 14:20:21 +00:00
|
|
|
$instance[ $key ] = isset( $new_instance[ $key ] ) ? sanitize_text_field( $new_instance[ $key ] ) : $setting['std'];
|
2018-03-05 13:21:04 +00:00
|
|
|
break;
|
2013-11-14 19:31:08 +00:00
|
|
|
}
|
2015-12-08 10:34:49 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sanitize the value of a setting.
|
|
|
|
*/
|
|
|
|
$instance[ $key ] = apply_filters( 'woocommerce_widget_settings_sanitize_option', $instance[ $key ], $new_instance, $key, $setting );
|
2013-05-24 15:51:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->flush_widget_cache();
|
|
|
|
|
|
|
|
return $instance;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-01-04 14:37:12 +00:00
|
|
|
* Outputs the settings update form.
|
2013-05-24 15:51:58 +00:00
|
|
|
*
|
2015-11-30 06:26:29 +00:00
|
|
|
* @see WP_Widget->form
|
2017-05-12 08:48:46 +00:00
|
|
|
*
|
2018-03-05 13:21:04 +00:00
|
|
|
* @param array $instance Instance.
|
2013-05-24 15:51:58 +00:00
|
|
|
*/
|
2014-08-31 05:49:58 +00:00
|
|
|
public function form( $instance ) {
|
2013-05-24 15:51:58 +00:00
|
|
|
|
2015-03-27 15:15:40 +00:00
|
|
|
if ( empty( $this->settings ) ) {
|
2013-05-24 15:51:58 +00:00
|
|
|
return;
|
2014-08-31 05:49:58 +00:00
|
|
|
}
|
2013-05-24 15:51:58 +00:00
|
|
|
|
|
|
|
foreach ( $this->settings as $key => $setting ) {
|
|
|
|
|
2015-12-02 10:02:57 +00:00
|
|
|
$class = isset( $setting['class'] ) ? $setting['class'] : '';
|
2014-11-15 01:12:59 +00:00
|
|
|
$value = isset( $instance[ $key ] ) ? $instance[ $key ] : $setting['std'];
|
2013-05-24 15:51:58 +00:00
|
|
|
|
|
|
|
switch ( $setting['type'] ) {
|
2014-08-31 05:49:58 +00:00
|
|
|
|
2018-03-05 13:21:04 +00:00
|
|
|
case 'text':
|
2013-05-24 15:51:58 +00:00
|
|
|
?>
|
|
|
|
<p>
|
2019-01-04 16:11:36 +00:00
|
|
|
<label for="<?php echo esc_attr( $this->get_field_id( $key ) ); ?>"><?php echo wp_kses_post( $setting['label'] ); ?></label><?php // phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped ?>
|
2018-03-05 13:21:04 +00:00
|
|
|
<input class="widefat <?php echo esc_attr( $class ); ?>" id="<?php echo esc_attr( $this->get_field_id( $key ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( $key ) ); ?>" type="text" value="<?php echo esc_attr( $value ); ?>" />
|
2013-05-24 15:51:58 +00:00
|
|
|
</p>
|
|
|
|
<?php
|
2018-03-05 13:21:04 +00:00
|
|
|
break;
|
2014-08-31 05:49:58 +00:00
|
|
|
|
2018-03-05 13:21:04 +00:00
|
|
|
case 'number':
|
2013-05-24 15:51:58 +00:00
|
|
|
?>
|
|
|
|
<p>
|
2018-03-05 13:21:04 +00:00
|
|
|
<label for="<?php echo esc_attr( $this->get_field_id( $key ) ); ?>"><?php echo $setting['label']; /* phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped */ ?></label>
|
|
|
|
<input class="widefat <?php echo esc_attr( $class ); ?>" id="<?php echo esc_attr( $this->get_field_id( $key ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( $key ) ); ?>" type="number" step="<?php echo esc_attr( $setting['step'] ); ?>" min="<?php echo esc_attr( $setting['min'] ); ?>" max="<?php echo esc_attr( $setting['max'] ); ?>" value="<?php echo esc_attr( $value ); ?>" />
|
2013-05-24 15:51:58 +00:00
|
|
|
</p>
|
|
|
|
<?php
|
2018-03-05 13:21:04 +00:00
|
|
|
break;
|
2014-08-31 05:49:58 +00:00
|
|
|
|
2018-03-05 13:21:04 +00:00
|
|
|
case 'select':
|
2013-05-24 15:51:58 +00:00
|
|
|
?>
|
|
|
|
<p>
|
2018-03-05 13:21:04 +00:00
|
|
|
<label for="<?php echo esc_attr( $this->get_field_id( $key ) ); ?>"><?php echo $setting['label']; /* phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped */ ?></label>
|
|
|
|
<select class="widefat <?php echo esc_attr( $class ); ?>" id="<?php echo esc_attr( $this->get_field_id( $key ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( $key ) ); ?>">
|
2013-05-24 15:51:58 +00:00
|
|
|
<?php foreach ( $setting['options'] as $option_key => $option_value ) : ?>
|
|
|
|
<option value="<?php echo esc_attr( $option_key ); ?>" <?php selected( $option_key, $value ); ?>><?php echo esc_html( $option_value ); ?></option>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
</select>
|
|
|
|
</p>
|
|
|
|
<?php
|
2018-03-05 13:21:04 +00:00
|
|
|
break;
|
2014-08-31 05:49:58 +00:00
|
|
|
|
2018-03-05 13:21:04 +00:00
|
|
|
case 'textarea':
|
2015-12-04 15:38:19 +00:00
|
|
|
?>
|
|
|
|
<p>
|
2018-03-05 13:21:04 +00:00
|
|
|
<label for="<?php echo esc_attr( $this->get_field_id( $key ) ); ?>"><?php echo $setting['label']; /* phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped */ ?></label>
|
|
|
|
<textarea class="widefat <?php echo esc_attr( $class ); ?>" id="<?php echo esc_attr( $this->get_field_id( $key ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( $key ) ); ?>" cols="20" rows="3"><?php echo esc_textarea( $value ); ?></textarea>
|
2015-12-04 15:38:19 +00:00
|
|
|
<?php if ( isset( $setting['desc'] ) ) : ?>
|
|
|
|
<small><?php echo esc_html( $setting['desc'] ); ?></small>
|
|
|
|
<?php endif; ?>
|
|
|
|
</p>
|
|
|
|
<?php
|
2018-03-05 13:21:04 +00:00
|
|
|
break;
|
2015-12-04 15:38:19 +00:00
|
|
|
|
2018-03-05 13:21:04 +00:00
|
|
|
case 'checkbox':
|
2013-05-24 15:51:58 +00:00
|
|
|
?>
|
|
|
|
<p>
|
2015-12-04 23:41:28 +00:00
|
|
|
<input class="checkbox <?php echo esc_attr( $class ); ?>" id="<?php echo esc_attr( $this->get_field_id( $key ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( $key ) ); ?>" type="checkbox" value="1" <?php checked( $value, 1 ); ?> />
|
2018-03-05 13:21:04 +00:00
|
|
|
<label for="<?php echo esc_attr( $this->get_field_id( $key ) ); ?>"><?php echo $setting['label']; /* phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped */ ?></label>
|
2013-05-24 15:51:58 +00:00
|
|
|
</p>
|
|
|
|
<?php
|
2018-03-05 13:21:04 +00:00
|
|
|
break;
|
2015-12-08 10:34:49 +00:00
|
|
|
|
2018-03-05 13:21:04 +00:00
|
|
|
// Default: run an action.
|
|
|
|
default:
|
2015-12-14 12:48:03 +00:00
|
|
|
do_action( 'woocommerce_widget_field_' . $setting['type'], $key, $value, $setting, $instance );
|
2018-03-05 13:21:04 +00:00
|
|
|
break;
|
2013-05-24 15:51:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-11-09 11:16:47 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get current page URL with various filtering props supported by WC.
|
|
|
|
*
|
|
|
|
* @return string
|
2017-12-14 14:43:35 +00:00
|
|
|
* @since 3.3.0
|
2017-11-09 11:16:47 +00:00
|
|
|
*/
|
2017-12-14 14:37:42 +00:00
|
|
|
protected function get_current_page_url() {
|
2020-01-29 05:21:29 +00:00
|
|
|
if ( Constants::is_defined( 'SHOP_IS_ON_FRONT' ) ) {
|
2017-11-09 11:16:47 +00:00
|
|
|
$link = home_url();
|
|
|
|
} elseif ( is_shop() ) {
|
|
|
|
$link = get_permalink( wc_get_page_id( 'shop' ) );
|
|
|
|
} elseif ( is_product_category() ) {
|
|
|
|
$link = get_term_link( get_query_var( 'product_cat' ), 'product_cat' );
|
|
|
|
} elseif ( is_product_tag() ) {
|
|
|
|
$link = get_term_link( get_query_var( 'product_tag' ), 'product_tag' );
|
|
|
|
} else {
|
|
|
|
$queried_object = get_queried_object();
|
2018-12-03 14:38:35 +00:00
|
|
|
$link = get_term_link( $queried_object->slug, $queried_object->taxonomy );
|
2017-11-09 11:16:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Min/Max.
|
|
|
|
if ( isset( $_GET['min_price'] ) ) {
|
|
|
|
$link = add_query_arg( 'min_price', wc_clean( wp_unslash( $_GET['min_price'] ) ), $link );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( isset( $_GET['max_price'] ) ) {
|
|
|
|
$link = add_query_arg( 'max_price', wc_clean( wp_unslash( $_GET['max_price'] ) ), $link );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Order by.
|
|
|
|
if ( isset( $_GET['orderby'] ) ) {
|
|
|
|
$link = add_query_arg( 'orderby', wc_clean( wp_unslash( $_GET['orderby'] ) ), $link );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Search Arg.
|
|
|
|
* To support quote characters, first they are decoded from " entities, then URL encoded.
|
|
|
|
*/
|
|
|
|
if ( get_search_query() ) {
|
|
|
|
$link = add_query_arg( 's', rawurlencode( htmlspecialchars_decode( get_search_query() ) ), $link );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Post Type Arg.
|
|
|
|
if ( isset( $_GET['post_type'] ) ) {
|
|
|
|
$link = add_query_arg( 'post_type', wc_clean( wp_unslash( $_GET['post_type'] ) ), $link );
|
2019-02-01 14:13:37 +00:00
|
|
|
|
|
|
|
// Prevent post type and page id when pretty permalinks are disabled.
|
|
|
|
if ( is_shop() ) {
|
|
|
|
$link = remove_query_arg( 'page_id', $link );
|
|
|
|
}
|
2017-11-09 11:16:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Min Rating Arg.
|
|
|
|
if ( isset( $_GET['rating_filter'] ) ) {
|
|
|
|
$link = add_query_arg( 'rating_filter', wc_clean( wp_unslash( $_GET['rating_filter'] ) ), $link );
|
|
|
|
}
|
|
|
|
|
|
|
|
// All current filters.
|
2021-05-31 10:20:57 +00:00
|
|
|
if ( $_chosen_attributes = WC_Query::get_layered_nav_chosen_attributes() ) { // phpcs:ignore Squiz.PHP.DisallowMultipleAssignments.FoundInControlStructure, WordPress.CodeAnalysis.AssignmentInCondition.Found
|
2017-11-09 11:16:47 +00:00
|
|
|
foreach ( $_chosen_attributes as $name => $data ) {
|
2019-01-23 15:11:27 +00:00
|
|
|
$filter_name = wc_attribute_taxonomy_slug( $name );
|
2017-11-09 11:16:47 +00:00
|
|
|
if ( ! empty( $data['terms'] ) ) {
|
|
|
|
$link = add_query_arg( 'filter_' . $filter_name, implode( ',', $data['terms'] ), $link );
|
|
|
|
}
|
2018-03-05 13:21:04 +00:00
|
|
|
if ( 'or' === $data['query_type'] ) {
|
2017-11-09 11:16:47 +00:00
|
|
|
$link = add_query_arg( 'query_type_' . $filter_name, 'or', $link );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-12 07:43:43 +00:00
|
|
|
return apply_filters( 'woocommerce_widget_get_current_page_url', $link, $this );
|
2017-11-09 11:16:47 +00:00
|
|
|
}
|
2018-05-03 12:10:04 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get widget id plus scheme/protocol to prevent serving mixed content from (persistently) cached widgets.
|
|
|
|
*
|
2018-05-09 07:42:28 +00:00
|
|
|
* @since 3.4.0
|
|
|
|
* @param string $widget_id Id of the cached widget.
|
|
|
|
* @param string $scheme Scheme for the widget id.
|
|
|
|
* @return string Widget id including scheme/protocol.
|
2018-05-03 12:10:04 +00:00
|
|
|
*/
|
2018-05-09 07:42:28 +00:00
|
|
|
protected function get_widget_id_for_cache( $widget_id, $scheme = '' ) {
|
|
|
|
if ( $scheme ) {
|
2018-05-09 16:06:34 +00:00
|
|
|
$widget_id_for_cache = $widget_id . '-' . $scheme;
|
2018-05-09 07:42:28 +00:00
|
|
|
} else {
|
2018-05-09 16:06:34 +00:00
|
|
|
$widget_id_for_cache = $widget_id . '-' . ( is_ssl() ? 'https' : 'http' );
|
2018-05-09 07:42:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return apply_filters( 'woocommerce_cached_widget_id', $widget_id_for_cache );
|
2018-05-03 12:10:04 +00:00
|
|
|
}
|
2014-09-02 19:50:19 +00:00
|
|
|
}
|