Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 16
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2/*
3 * Jetpack CRM
4 * https://jetpackcrm.com
5 *
6 * WooSync: Default Settings
7 *
8 */
9return array(
10
11    // Once multi-site syncing we store a stack of these in here:
12    'sync_sites'                => array(),
13
14    // 0 = no, 1 = yes
15    'wccopyship'                => '0',
16    'wctagcust'                 => '1', // tag contacts with item
17    'wctagtransaction'          => '1', // tag transaction with item
18    'wctaginvoice'              => '1', // tag invoice with item
19    'wctagcoupon'               => '1', // Include any passed coupon code as a tag (dependent on above 3 settings)
20    'wctagproductprefix'        => 'Product: ',
21    'wctagcouponprefix'         => 'Coupon: ',
22    'wcinv'                     => '0',
23    'wcprod'                    => '0',
24    'wcacc'                     => '1',
25
26    // autodeletion
27    'auto_trash'                => 'change_status', // do_nothing | change_status | hard_delete_and_log
28    'auto_delete'               => 'change_status', // do_nothing | change_status | hard_delete_and_log
29
30    'enable_woo_status_mapping' => 1,
31
32);