-
Notifications
You must be signed in to change notification settings - Fork 3
/
bob_config.php
42 lines (42 loc) · 953 Bytes
/
bob_config.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
<?php
/**
* Per project config file for bob the builder
*/
global $bob_config;
$bob_config = array(
'CompareModuleLanguages' => array(
'fallback_language' => 'pt_pt',
'languages' => array(
'pt_pt',
'en_us'
),
'modules' => array(
'Documents',
'Contacts',
'Reports',
'Currencies',
'Bugs',
'Accounts',
'Prospects',
'Dashboard',
'Calls',
'Notes',
'Contracts',
'Cases',
'Tasks',
'Meetings',
'Home',
'Charts',
'Administration',
'Emails',
'CampaignLog',
'Campaigns',
'ProspectLists',
'Leads',
'Opportunities',
)
),
'global' => array(
'admin_user_name' => 'admin'
),
);