aboutsummaryrefslogtreecommitdiffstats
path: root/tests/setup/config.php
blob: dd95c470688414de5d167b3fc8909cf03cd28929 (plain)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
define('VERSION', '2.3.0.3_rc');
define('ADMIN_USERNAME', '');
define('ADMIN_PASSWORD', '');

/*
 * Use the $settings array to change store settings. The key must match the store ID.
 */
$settings = array(
    0 => array(
        'config_maintenance' => 1,
    )
);

/*
 * Use the $module_settings array to install payment, shipping or feed modules
 */
$module_settings = array(
    'payment' => array(
        'cheque' => array(
            'cheque_status' => 1,
            'cheque_payable' => 'OpenCart test store',
            'cheque_order_status_id' => 1,
        ),
        'free_checkout' => array(
            'free_checkout_status' => 1,
            'free_checkout_order_status_id' => 1,
        ),
    ),
    'shipping' => array(
        'item' => array(
            'item_status' => 1,
            'item_cost' => 1.25,
        ),
    ),
    'feed' => array(
        'google_sitemap' => array(
            'google_sitemap_status' => 1
        )
    ),
);