1 <?php
2
3 4 5 6 7 8 9 10
11
12 namespace WC_POS\Admin\Settings;
13
14 class General extends Page {
15
16 protected static $instance;
17
18 public $flush_local_data = array(
19 'pos_only_products',
20 'decimal_qty'
21 );
22
23 24 25
26 public function __construct() {
27 $this->id = 'general';
28
29 $this->label = __( 'General', 'woocommerce' );
30
31 $this->defaults = array(
32 'discount_quick_keys' => array('5', '10', '20', '25'),
33 'shipping' => array(
34 'taxable' => true
35 ),
36 'fee' => array(
37 'taxable' => true
38 )
39 );
40 }
41
42 }