Server IP : 66.29.132.122 / Your IP : 3.145.63.33 Web Server : LiteSpeed System : Linux business142.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : admazpex ( 531) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/thread-self/root/var/softaculous/sitepad/editor/site-data/plugins/kkart-pro/includes/widgets/ |
Upload File : |
<?php /** * Shopping Cart Widget. * * Displays shopping cart widget. * * @package Kkart\Widgets * @version 2.3.0 */ defined( 'ABSPATH' ) || exit; /** * Widget cart class. */ class KKART_Widget_Cart extends KKART_Widget { /** * Constructor. */ public function __construct() { $this->widget_cssclass = 'kkart widget_shopping_cart'; $this->widget_description = __( 'Display the customer shopping cart.', 'kkart' ); $this->widget_id = 'kkart_widget_cart'; $this->widget_name = __( 'Cart', 'kkart' ); $this->settings = array( 'title' => array( 'type' => 'text', 'std' => __( 'Cart', 'kkart' ), 'label' => __( 'Title', 'kkart' ), ), 'hide_if_empty' => array( 'type' => 'checkbox', 'std' => 0, 'label' => __( 'Hide if cart is empty', 'kkart' ), ), ); if ( is_customize_preview() ) { wp_enqueue_script( 'kkart-cart-fragments' ); } parent::__construct(); } /** * Output widget. * * @see WP_Widget * * @param array $args Arguments. * @param array $instance Widget instance. */ public function widget( $args, $instance ) { if ( apply_filters( 'kkart_widget_cart_is_hidden', is_cart() || is_checkout() ) ) { return; } $hide_if_empty = empty( $instance['hide_if_empty'] ) ? 0 : 1; if ( ! isset( $instance['title'] ) ) { $instance['title'] = __( 'Cart', 'kkart' ); } $this->widget_start( $args, $instance ); if ( $hide_if_empty ) { echo '<div class="hide_cart_widget_if_empty">'; } // Insert cart widget placeholder - code in kkart.js will update this on page load. echo '<div class="widget_shopping_cart_content"></div>'; if ( $hide_if_empty ) { echo '</div>'; } $this->widget_end( $args ); } }