1 <?php
2 /**
3 * Customer Settings
4 *
5 * @class WC_POS_Pro_Admin_Settings_Customers
6 * @package WooCommerce POS Pro
7 * @author Paul Kilmurray <paul@kilbot.com.au>
8 * @link http://www.woopos.com.au
9 */
10
11 namespace WC_POS\Admin\Settings;
12
13 class Customers extends Page {
14
15 protected static $instance;
16
17 public $flush_local_data = array(
18 'customer_roles'
19 );
20
21 public function __construct() {
22 $this->id = 'customers';
23 $this->label = /* translators: woocommerce */ __( 'Customers', 'woocommerce' );
24
25 $this->defaults = array(
26 'default_customer' => 0,
27 'customer_roles' => array( 'all' )
28 );
29 }
30
31 }