2011-08-10 17:11:11 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* Shopping Cart Widget.
|
2011-08-10 17:11:11 +00:00
|
|
|
*
|
2015-11-03 13:31:20 +00:00
|
|
|
* Displays shopping cart widget.
|
2011-08-10 17:11:11 +00:00
|
|
|
*
|
2018-03-09 19:56:15 +00:00
|
|
|
* @package WooCommerce/Widgets
|
|
|
|
* @version 2.3.0
|
2018-03-09 19:37:52 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Widget cart class.
|
2011-08-10 17:11:11 +00:00
|
|
|
*/
|
2013-05-24 15:51:58 +00:00
|
|
|
class WC_Widget_Cart extends WC_Widget {
|
2011-08-26 21:28:55 +00:00
|
|
|
|
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
|
|
|
*/
|
2013-05-24 15:51:58 +00:00
|
|
|
public function __construct() {
|
|
|
|
$this->widget_cssclass = 'woocommerce widget_shopping_cart';
|
2018-03-09 19:37:52 +00:00
|
|
|
$this->widget_description = __( 'Display the customer shopping cart.', 'woocommerce' );
|
2013-05-24 15:51:58 +00:00
|
|
|
$this->widget_id = 'woocommerce_widget_cart';
|
2017-08-25 11:07:17 +00:00
|
|
|
$this->widget_name = __( 'Cart', 'woocommerce' );
|
2013-05-24 15:51:58 +00:00
|
|
|
$this->settings = array(
|
2018-03-09 19:37:52 +00:00
|
|
|
'title' => array(
|
2013-05-24 15:51:58 +00:00
|
|
|
'type' => 'text',
|
|
|
|
'std' => __( 'Cart', 'woocommerce' ),
|
2016-08-27 01:46:45 +00:00
|
|
|
'label' => __( 'Title', 'woocommerce' ),
|
2013-05-24 15:51:58 +00:00
|
|
|
),
|
|
|
|
'hide_if_empty' => array(
|
|
|
|
'type' => 'checkbox',
|
|
|
|
'std' => 0,
|
2016-08-27 01:46:45 +00:00
|
|
|
'label' => __( 'Hide if cart is empty', 'woocommerce' ),
|
|
|
|
),
|
2013-05-24 15:51:58 +00:00
|
|
|
);
|
2014-11-15 01:12:59 +00:00
|
|
|
|
2013-05-24 15:51:58 +00:00
|
|
|
parent::__construct();
|
2011-08-10 17:11:11 +00:00
|
|
|
}
|
|
|
|
|
2012-08-14 17:37:50 +00:00
|
|
|
/**
|
2016-01-06 18:58:38 +00:00
|
|
|
* Output widget.
|
2012-08-14 17:37:50 +00:00
|
|
|
*
|
|
|
|
* @see WP_Widget
|
2014-11-15 01:12:59 +00:00
|
|
|
*
|
2018-03-09 19:37:52 +00:00
|
|
|
* @param array $args Arguments.
|
|
|
|
* @param array $instance Widget instance.
|
2012-08-14 17:37:50 +00:00
|
|
|
*/
|
2013-05-24 15:51:58 +00:00
|
|
|
public function widget( $args, $instance ) {
|
2015-07-28 10:06:31 +00:00
|
|
|
if ( apply_filters( 'woocommerce_widget_cart_is_hidden', is_cart() || is_checkout() ) ) {
|
2014-11-15 01:12:59 +00:00
|
|
|
return;
|
|
|
|
}
|
2012-08-10 13:36:24 +00:00
|
|
|
|
2013-01-27 18:55:24 +00:00
|
|
|
$hide_if_empty = empty( $instance['hide_if_empty'] ) ? 0 : 1;
|
2012-03-16 22:09:11 +00:00
|
|
|
|
2014-11-15 01:12:59 +00:00
|
|
|
$this->widget_start( $args, $instance );
|
2012-08-10 13:36:24 +00:00
|
|
|
|
2014-11-15 01:12:59 +00:00
|
|
|
if ( $hide_if_empty ) {
|
2013-03-10 15:20:42 +00:00
|
|
|
echo '<div class="hide_cart_widget_if_empty">';
|
2014-11-15 01:12:59 +00:00
|
|
|
}
|
2013-01-27 18:55:24 +00:00
|
|
|
|
2018-03-09 19:37:52 +00:00
|
|
|
// Insert cart widget placeholder - code in woocommerce.js will update this on page load.
|
2013-03-10 15:20:42 +00:00
|
|
|
echo '<div class="widget_shopping_cart_content"></div>';
|
|
|
|
|
2014-11-15 01:12:59 +00:00
|
|
|
if ( $hide_if_empty ) {
|
2013-03-10 15:20:42 +00:00
|
|
|
echo '</div>';
|
2014-11-15 01:12:59 +00:00
|
|
|
}
|
2012-03-16 22:09:11 +00:00
|
|
|
|
2014-11-15 01:12:59 +00:00
|
|
|
$this->widget_end( $args );
|
2011-08-10 17:11:11 +00:00
|
|
|
}
|
2013-05-24 15:51:58 +00:00
|
|
|
}
|