PATH:
home
/
lab2454c
/
sothebankuab.com
/
wp-content
/
plugins
/
woocommerce
/
includes
/
interfaces
<?php /** * Customer Data Store Interface * * @version 3.0.0 * @package WooCommerce\Interface */ /** * WC Customer Data Store Interface * * Functions that must be defined by customer store classes. * * @version 3.0.0 */ interface WC_Customer_Data_Store_Interface { /** * Gets the customers last order. * * @param WC_Customer $customer Customer object. * @return WC_Order|false */ public function get_last_order( &$customer ); /** * Return the number of orders this customer has. * * @param WC_Customer $customer Customer object. * @return integer */ public function get_order_count( &$customer ); /** * Return how much money this customer has spent. * * @param WC_Customer $customer Customer object. * @return float */ public function get_total_spent( &$customer ); }
[-] class-wc-order-item-type-data-store-interface.php
[edit]
[-] class-wc-order-data-store-interface.php
[edit]
[-] class-wc-logger-interface.php
[edit]
[-] class-wc-product-variable-data-store-interface.php
[edit]
[+]
..
[-] class-wc-customer-download-data-store-interface.php
[edit]
[-] class-wc-importer-interface.php
[edit]
[-] class-wc-object-data-store-interface.php
[edit]
[-] class-wc-customer-data-store-interface.php
[edit]
[-] class-wc-customer-download-log-data-store-interface.php
[edit]
[-] class-wc-abstract-order-data-store-interface.php
[edit]
[-] class-wc-order-item-product-data-store-interface.php
[edit]
[-] class-wc-payment-token-data-store-interface.php
[edit]
[-] class-wc-queue-interface.php
[edit]
[-] class-wc-webhooks-data-store-interface.php
[edit]
[-] class-wc-coupon-data-store-interface.php
[edit]
[-] class-wc-order-refund-data-store-interface.php
[edit]
[-] class-wc-product-data-store-interface.php
[edit]
[-] class-wc-log-handler-interface.php
[edit]
[-] class-wc-order-item-data-store-interface.php
[edit]
[-] class-wc-shipping-zone-data-store-interface.php
[edit]