/var/www/html_uk/wp-content/plugins/automatewoo/includes/Variables/Cart_Item_Count.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php

namespace AutomateWoo;

defined'ABSPATH' ) || exit;

/**
 * @class Variable_Cart_Item_Count
 * @since 4.2
 */
class Variable_Cart_Item_Count extends Variable {

    
/**
     * Load admin details.
     */
    
public function load_admin_details() {
        
$this->description __'Displays the number of the items in cart.''automatewoo' );
    }

    
/**
     * @param Cart  $cart
     * @param array $parameters
     * @return string
     */
    
public function get_value$cart$parameters ) {
        return 
$cart->get_item_count();
    }
}