forked from mybizna/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.php
executable file
·81 lines (75 loc) · 2.15 KB
/
settings.php
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?php
use Modules\Core\Classes\Currency;
use Modules\Core\Classes\Language;
$currency = new Currency();
$language = new Language();
$currency_id = $currency->getCurrencyId('USD');
$language = $language->getLanguage('en-us');
return [
'company_name' => [
"title" => "Company Name",
"type" => "text",
"value" => "Mybizna",
"category" => "Company",
],
'company_email' => [
"title" => "Company Email",
"type" => "text",
"value" => "[email protected]",
"category" => "Company",
],
'company_phone' => [
"title" => "Company Phone",
"type" => "text",
"value" => "0713034569",
"category" => "Company",
],
'company_po_box' => [
"title" => "Company P.O Box",
"type" => "text",
"value" => "767",
"category" => "Company",
],
'company_po_code' => [
"title" => "Company P.O Code",
"type" => "text",
"value" => "00618",
"category" => "Company",
],
'company_zip_code' => [
"title" => "Company ZIP Code",
"type" => "text",
"value" => "",
"category" => "Company",
],
'company_location' => [
"title" => "Company Address",
"type" => "text",
"value" => "Room 411B 5th Floor, Jewel Plaza Kasarani, Nairobi.",
"category" => "Company",
],
'default_currency' => [
"title" => "Default Currency",
"type" => "recordpicker",
"value" => $currency_id,
"comp_url" => "core/admin/currency/list.vue",
"setting" => [
'path_param' => ["core", "currency"],
'fields' => ['name', 'code'],
'template' => '[name] ([code])',
],
"category" => "System",
],
'default_language' => [
"title" => "Default Language",
"type" => "recordpicker",
"value" => $language->id,
"comp_url" => "core/admin/language/list.vue",
"setting" => [
'path_param' => ["core", "language"],
'fields' => ['name', 'slug'],
'template' => '[name] ([slug])',
],
"category" => "System",
],
];