woocommerce/includes/widgets/class-wc-widget-cart.php

77 lines
1.8 KiB
PHP
Raw Normal View History

2011-08-10 17:11:11 +00:00
<?php
/**
* Shopping Cart Widget
*
* Displays shopping cart widget
*
2012-08-14 17:37:50 +00:00
* @author WooThemes
* @category Widgets
* @package WooCommerce/Widgets
* @version 2.0.1
* @extends WC_Widget
2011-08-10 17:11:11 +00:00
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
class WC_Widget_Cart extends WC_Widget {
2011-08-26 21:28:55 +00:00
2012-08-14 17:37:50 +00:00
/**
* Constructor
2012-08-14 17:37:50 +00:00
*/
public function __construct() {
$this->widget_cssclass = 'woocommerce widget_shopping_cart';
$this->widget_description = __( "Display the user's Cart in the sidebar.", 'woocommerce' );
$this->widget_id = 'woocommerce_widget_cart';
$this->widget_name = __( 'WooCommerce Cart', 'woocommerce' );
$this->settings = array(
'title' => array(
'type' => 'text',
'std' => __( 'Cart', 'woocommerce' ),
'label' => __( 'Title', 'woocommerce' )
),
'hide_if_empty' => array(
'type' => 'checkbox',
'std' => 0,
'label' => __( 'Hide if cart is empty', '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
*/
public function widget( $args, $instance ) {
2012-08-10 13:36:24 +00:00
extract( $args );
if ( is_cart() || is_checkout() ) return;
2012-10-16 09:45:33 +00:00
$title = apply_filters('widget_title', empty( $instance['title'] ) ? __( 'Cart', 'woocommerce' ) : $instance['title'], $instance, $this->id_base );
$hide_if_empty = empty( $instance['hide_if_empty'] ) ? 0 : 1;
2011-08-10 17:11:11 +00:00
echo $before_widget;
2012-08-10 13:36:24 +00:00
if ( $title )
echo $before_title . $title . $after_title;
2012-08-10 13:36:24 +00:00
if ( $hide_if_empty )
echo '<div class="hide_cart_widget_if_empty">';
// Insert cart widget placeholder - code in woocommerce.js will update this on page load
echo '<div class="widget_shopping_cart_content"></div>';
if ( $hide_if_empty )
echo '</div>';
2011-08-10 17:11:11 +00:00
echo $after_widget;
}
}
2011-08-10 17:11:11 +00:00
register_widget( 'WC_Widget_Cart' );