101 lines
4.6 KiB
PHP
101 lines
4.6 KiB
PHP
|
|
<?php
|
||
|
|
/*********************************************************************************
|
||
|
|
* SugarCRM Community Edition is a customer relationship management program developed by
|
||
|
|
* SugarCRM, Inc. Copyright (C) 2004-2011 SugarCRM Inc.
|
||
|
|
*
|
||
|
|
* This program is free software; you can redistribute it and/or modify it under
|
||
|
|
* the terms of the GNU Affero General Public License version 3 as published by the
|
||
|
|
* Free Software Foundation with the addition of the following permission added
|
||
|
|
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
|
||
|
|
* IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
|
||
|
|
* OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
|
||
|
|
*
|
||
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
||
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||
|
|
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
||
|
|
* details.
|
||
|
|
*
|
||
|
|
* You should have received a copy of the GNU Affero General Public License along with
|
||
|
|
* this program; if not, see http://www.gnu.org/licenses or write to the Free
|
||
|
|
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||
|
|
* 02110-1301 USA.
|
||
|
|
*
|
||
|
|
* You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
|
||
|
|
* SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
|
||
|
|
*
|
||
|
|
* The interactive user interfaces in modified source and object code versions
|
||
|
|
* of this program must display Appropriate Legal Notices, as required under
|
||
|
|
* Section 5 of the GNU Affero General Public License version 3.
|
||
|
|
*
|
||
|
|
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
|
||
|
|
* these Appropriate Legal Notices must retain the display of the "Powered by
|
||
|
|
* SugarCRM" logo. If the display of the logo is not reasonably feasible for
|
||
|
|
* technical reasons, the Appropriate Legal Notices must display the words
|
||
|
|
* "Powered by SugarCRM".
|
||
|
|
********************************************************************************/
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
$installer_defaults = array(
|
||
|
|
'language' => 'en_us',
|
||
|
|
'oc_install' => '',
|
||
|
|
'setup_license_accept' => false,
|
||
|
|
'test_session' => 'sessions are available',
|
||
|
|
'license_submitted' => false,
|
||
|
|
'setup_license_key_users' => '0',
|
||
|
|
'setup_license_key_expire_date' => '',
|
||
|
|
'setup_license_key' => '',
|
||
|
|
'setup_num_lic_oc' => '0',
|
||
|
|
'install_type' => 'typical',
|
||
|
|
'setup_db_type' => 'mysql',
|
||
|
|
'setup_db_host_name' => '',
|
||
|
|
'setup_db_host_instance' => 'SQLEXPRESS',
|
||
|
|
'setup_db_database_name' => 'sugarcrm',
|
||
|
|
'setup_db_sugarsales_user' => '',
|
||
|
|
'setup_db_sugarsales_password' => '',
|
||
|
|
'setup_db_sugarsales_password_retype' => '',
|
||
|
|
'demoData' => false,
|
||
|
|
'setup_db_create_database' => true,
|
||
|
|
'setup_db_drop_tables' => false,
|
||
|
|
'setup_db_username_is_privileged' => true,
|
||
|
|
'setup_db_admin_user_name' => '',
|
||
|
|
'setup_db_admin_password' => '',
|
||
|
|
'setup_db_provide_own_user' => false,
|
||
|
|
'dbConfig_submitted' => false,
|
||
|
|
'demoData' => 'no',
|
||
|
|
'setup_site_url' => '',
|
||
|
|
'setup_system_name' => 'SugarCRM',
|
||
|
|
'setup_site_sugarbeet' => true,
|
||
|
|
'setup_site_defaults' => true,
|
||
|
|
'setup_site_custom_session_path' => false,
|
||
|
|
'setup_site_session_path' => false,
|
||
|
|
'setup_site_custom_log_dir' => false,
|
||
|
|
'setup_site_log_dir' => false,
|
||
|
|
'setup_site_log_level' =>'fatal',
|
||
|
|
'setup_site_specify_guid' => false,
|
||
|
|
'setup_site_guid' => '',
|
||
|
|
'setup_site_admin_password' => '',
|
||
|
|
'setup_site_admin_password_retype' => '',
|
||
|
|
'site_default_theme' => 'Sugar5',
|
||
|
|
'disable_persistent_connections' => 'false',
|
||
|
|
'default_language' => 'en_us',
|
||
|
|
'default_charset' => 'UTF-8',
|
||
|
|
'default_currency_name' => 'US Dollars',
|
||
|
|
'default_currency_symbol' => '$',
|
||
|
|
'default_currency_iso4217' => 'USD',
|
||
|
|
'default_locale_name_format' => 's f l',
|
||
|
|
'default_email_charset' => 'UTF-8',
|
||
|
|
'default_export_charset' => 'UTF-8',
|
||
|
|
'export_delimiter' => ',',
|
||
|
|
'rss_cache_time' => '10800',
|
||
|
|
'language_keys' => 'en_us',
|
||
|
|
'language_values' => 'US+English',
|
||
|
|
'setup_site_sugarbeet_automatic_checks' => true,
|
||
|
|
'setup_site_sugarbeet_anonymous_stats' => true,
|
||
|
|
'siteConfig_submitted' => false,
|
||
|
|
'dbUSRData' => 'same',
|
||
|
|
|
||
|
|
);
|
||
|
|
|
||
|
|
?>
|