-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault_option.php
More file actions
31 lines (30 loc) · 937 Bytes
/
default_option.php
File metadata and controls
31 lines (30 loc) · 937 Bytes
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
<?php
$mindbox_loyalty_default_option = [
'enabled_loyalty' => 'N',
'test_mode' => 'Y',
'endpoint' => '',
'secret_key' => '',
'website_prefix' => '',
'brand' => '',
'external_product' => '',
'external_user' => '',
'external_order' => '',
'website_order_field' => 'ACCOUNT_NUMBER',
'api_domain' => 'api.mindbox.ru',
'http_client' => 'curl',
'timeout' => 5,
'is_logging' => 'Y',
'log_path' => dirname(__FILE__) . DIRECTORY_SEPARATOR . 'logs',
'log_life_time' => 7,
'disable_processing' => 'N',
'disable_user_groups' => '',
'user_bitrix_fields' => '',
'user_mindbox_fields' => '',
'user_auto_subscribe' => 'N',
'user_fields_match' => '',
'yml_protocol' => 'Y',
'yml_path' => DIRECTORY_SEPARATOR . 'upload' . DIRECTORY_SEPARATOR . 'mindbox.yml',
'yml_chunk_size' => 1000,
'favorite_field_name' => '',
'favorite_type' => 'basket'
];