]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - install/install_defaults.php
Release 6.5.0
[Github/sugarcrm.git] / install / install_defaults.php
1 <?php
2 /*********************************************************************************
3  * SugarCRM Community Edition is a customer relationship management program developed by
4  * SugarCRM, Inc. Copyright (C) 2004-2012 SugarCRM Inc.
5  * 
6  * This program is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU Affero General Public License version 3 as published by the
8  * Free Software Foundation with the addition of the following permission added
9  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
10  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
11  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
12  * 
13  * This program is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
16  * details.
17  * 
18  * You should have received a copy of the GNU Affero General Public License along with
19  * this program; if not, see http://www.gnu.org/licenses or write to the Free
20  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21  * 02110-1301 USA.
22  * 
23  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
24  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
25  * 
26  * The interactive user interfaces in modified source and object code versions
27  * of this program must display Appropriate Legal Notices, as required under
28  * Section 5 of the GNU Affero General Public License version 3.
29  * 
30  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
31  * these Appropriate Legal Notices must retain the display of the "Powered by
32  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
33  * technical reasons, the Appropriate Legal Notices must display the words
34  * "Powered by SugarCRM".
35  ********************************************************************************/
36
37    
38
39        $installer_defaults = array(
40             'language' => 'en_us',
41             'oc_install' => '',
42             'setup_license_accept' => false,
43             'test_session' => 'sessions are available',
44             'license_submitted' => false,
45             'setup_license_key_users' => '0',
46             'setup_license_key_expire_date' => '',
47             'setup_license_key' => '',
48             'setup_num_lic_oc' => '0',
49             'install_type' => 'typical',
50             'setup_db_type' => 'mysql',
51             'setup_db_host_name' => '',
52             'setup_db_host_instance' => 'SQLEXPRESS',
53             'setup_db_database_name' => 'sugarcrm',
54             'setup_db_sugarsales_user' => '',
55             'setup_db_sugarsales_password' => '',
56             'setup_db_sugarsales_password_retype' => '',
57             'demoData' => false,
58             'setup_db_create_database' => true,
59             'setup_db_drop_tables' => false,
60             'setup_db_username_is_privileged' => true,
61             'setup_db_admin_user_name' => '',
62             'setup_db_admin_password' => '',
63             'setup_db_provide_own_user' => false,
64             'dbConfig_submitted' => false,
65             'demoData' => 'no',
66             'setup_site_url' => '',
67             'setup_system_name' => 'SugarCRM',
68             'setup_site_sugarbeet' => true,
69             'setup_site_defaults' => true,
70             'setup_site_custom_session_path' => false,
71             'setup_site_session_path' => false,
72             'setup_site_custom_log_dir' => false,
73             'setup_site_log_dir' => false,
74                 'setup_site_log_level' =>'fatal',
75             'setup_site_specify_guid' => false,
76             'setup_site_guid' => '',
77             'setup_site_admin_password' => '',
78             'setup_site_admin_password_retype' => '',
79             'site_default_theme' => 'Sugar5',
80             'disable_persistent_connections' => 'false',
81             'default_language' => 'en_us',
82             'default_charset' => 'UTF-8',
83             'default_currency_name' => 'US Dollars',
84             'default_currency_symbol' => '$',
85             'default_currency_iso4217' => 'USD',
86             'default_locale_name_format' => 's f l',
87             'default_email_charset' => 'UTF-8',
88             'default_export_charset' => 'UTF-8',
89             'export_delimiter' => ',',
90             'rss_cache_time' => '10800',
91             'language_keys' => 'en_us',
92             'language_values' => 'US+English',
93             'setup_site_sugarbeet_automatic_checks' => true,
94             'setup_site_sugarbeet_anonymous_stats' => true,
95             'siteConfig_submitted' => false,
96             'dbUSRData' => 'same',
97
98         );
99         
100 ?>