]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - install/siteConfig_a.php
Release 6.2.0
[Github/sugarcrm.git] / install / siteConfig_a.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 /*********************************************************************************
4  * SugarCRM Community Edition is a customer relationship management program developed by
5  * SugarCRM, Inc. Copyright (C) 2004-2011 SugarCRM Inc.
6  * 
7  * This program is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU Affero General Public License version 3 as published by the
9  * Free Software Foundation with the addition of the following permission added
10  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
11  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
12  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
13  * 
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
17  * details.
18  * 
19  * You should have received a copy of the GNU Affero General Public License along with
20  * this program; if not, see http://www.gnu.org/licenses or write to the Free
21  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22  * 02110-1301 USA.
23  * 
24  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
25  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
26  * 
27  * The interactive user interfaces in modified source and object code versions
28  * of this program must display Appropriate Legal Notices, as required under
29  * Section 5 of the GNU Affero General Public License version 3.
30  * 
31  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
32  * these Appropriate Legal Notices must retain the display of the "Powered by
33  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
34  * technical reasons, the Appropriate Legal Notices must display the words
35  * "Powered by SugarCRM".
36  ********************************************************************************/
37
38
39
40
41 if( !isset( $install_script ) || !$install_script ){
42     die($mod_strings['ERR_NO_DIRECT_SCRIPT']);
43 }
44
45
46 if( is_file("config.php") ){
47         
48     
49
50         if(!empty($sugar_config['default_theme']))
51       $_SESSION['site_default_theme'] = $sugar_config['default_theme'];
52
53         if(!empty($sugar_config['disable_persistent_connections']))
54                 $_SESSION['disable_persistent_connections'] =
55                 $sugar_config['disable_persistent_connections'];
56         if(!empty($sugar_config['default_language']))
57                 $_SESSION['default_language'] = $sugar_config['default_language'];
58         if(!empty($sugar_config['translation_string_prefix']))
59                 $_SESSION['translation_string_prefix'] = $sugar_config['translation_string_prefix'];
60         if(!empty($sugar_config['default_charset']))
61                 $_SESSION['default_charset'] = $sugar_config['default_charset'];
62
63         if(!empty($sugar_config['default_currency_name']))
64                 $_SESSION['default_currency_name'] = $sugar_config['default_currency_name'];
65         if(!empty($sugar_config['default_currency_symbol']))
66                 $_SESSION['default_currency_symbol'] = $sugar_config['default_currency_symbol'];
67         if(!empty($sugar_config['default_currency_iso4217']))
68                 $_SESSION['default_currency_iso4217'] = $sugar_config['default_currency_iso4217'];
69
70         if(!empty($sugar_config['rss_cache_time']))
71                 $_SESSION['rss_cache_time'] = $sugar_config['rss_cache_time'];
72         if(!empty($sugar_config['languages']))
73         {
74                 // We need to encode the languages in a way that can be retrieved later.
75                 $language_keys = Array();
76                 $language_values = Array();
77
78                 foreach($sugar_config['languages'] as $key=>$value)
79                 {
80                         $language_keys[] = $key;
81                         $language_values[] = $value;
82                 }
83
84                 $_SESSION['language_keys'] = urlencode(implode(",",$language_keys));
85                 $_SESSION['language_values'] = urlencode(implode(",",$language_values));
86         }
87 }
88
89 ////    errors
90 $errors = '';
91 if( isset($validation_errors) && is_array($validation_errors)){
92     if( count($validation_errors) > 0 ){
93         $errors  = '<div id="errorMsgs">';
94         $errors .= '<p>'.$mod_strings['LBL_SITECFG_FIX_ERRORS'].'</p><ul>';
95         foreach( $validation_errors as $error ){
96                         $errors .= '<li>' . $error . '</li>';
97         }
98                 $errors .= '</ul></div>';
99     }
100 }
101
102
103 ////    ternaries
104 $sugarUpdates = (isset($_SESSION['setup_site_sugarbeet']) && !empty($_SESSION['setup_site_sugarbeet'])) ? 'checked="checked"' : '';
105 $siteSecurity = (isset($_SESSION['setup_site_defaults']) && !empty($_SESSION['setup_site_defaults'])) ? 'checked="checked"' : '';
106 $customSession = (isset($_SESSION['setup_site_custom_session_path']) && !empty($_SESSION['setup_site_custom_session_path'])) ? 'checked="checked"' : '';
107 $customLog = (isset($_SESSION['setup_site_custom_log_dir']) && !empty($_SESSION['setup_site_custom_log_dir'])) ? 'checked="checked"' : '';
108 $customId = (isset($_SESSION['setup_site_specify_guid']) && !empty($_SESSION['setup_site_specify_guid'])) ? 'checked="checked"' : '';
109
110 ///////////////////////////////////////////////////////////////////////////////
111 ////    START OUTPUT
112 $out =<<<EOQ
113 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
114 <html>
115 <head>
116    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
117    <meta http-equiv="Content-Script-Type" content="text/javascript">
118    <meta http-equiv="Content-Style-Type" content="text/css">
119    <title>{$mod_strings['LBL_WIZARD_TITLE']}  {$mod_strings['LBL_SITECFG_TITLE']}</title>
120    <link REL="SHORTCUT ICON" HREF="include/images/sugar_icon.ico">
121    <link rel="stylesheet" href="install/install.css" type="text/css" />
122    <script type="text/javascript" src="install/installCommon.js"></script>
123    <script type="text/javascript" src="install/siteConfig.js"></script>
124 </head>
125 <body onload="javascript:document.getElementById('defaultFocus').focus();">
126 <form action="install.php" method="post" name="setConfig" id="form">
127 <input type="hidden" name="current_step" value="{$next_step}">
128 <table cellspacing="0" cellpadding="0" border="0" align="center" class="shell">
129       <tr><td colspan="2" id="help"><a href="{$help_url}" target='_blank'>{$mod_strings['LBL_HELP']} </a></td></tr>
130     <tr>
131       <th width="500">
132                 <p>
133                 <img src="{$sugar_md}" alt="SugarCRM" border="0">
134                 </p>
135    {$mod_strings['LBL_SITECFG_TITLE']}</th>
136    <th width="200" style="text-align: right;"><a href="http://www.sugarcrm.com" target="_blank">
137                 <IMG src="include/images/sugarcrm_login.png" width="145" height="30" alt="SugarCRM" border="0"></a>
138         </th>
139    </tr>
140 <tr>
141     <td colspan="2">
142     {$errors}
143    <div class="required">{$mod_strings['LBL_REQUIRED']}</div>
144    <table width="100%" cellpadding="0" cellpadding="0" border="0" class="StyleDottedHr">
145    <tr><th colspan="3" align="left">{$mod_strings['LBL_SITECFG_TITLE2']}</td></tr>
146 EOQ;
147
148
149
150 //hide this in typical mode
151 if(isset($_SESSION['install_type'])  && !empty($_SESSION['install_type'])  && strtolower($_SESSION['install_type'])=='custom'){
152 $out .=<<<EOQ
153
154    <tr><td colspan="3" align="left"> {$mod_strings['LBL_SITECFG_URL_MSG']}
155    </td></tr>
156    <tr><td><span class="required">*</span></td>
157        <td><b>{$mod_strings['LBL_SITECFG_URL']}</td>
158        <td align="left"><input type="text" name="setup_site_url" id="defaultFocus" value="{$_SESSION['setup_site_url']}" size="40" /></td></tr>
159     <tr><td colspan="3" align="left"> <br>{$mod_strings['LBL_SITECFG_SYS_NAME_MSG']}</td></tr>
160     <tr><td><span class="required">*</span></td>
161        <td><b>{$mod_strings['LBL_SYSTEM_NAME']}</b></td>
162        <td align="left"><input type="text" name="setup_system_name" value="{$_SESSION['setup_system_name']}" size="40" /><br>&nbsp;</td></tr>
163 EOQ;
164 }
165
166 $out .=<<<EOQ
167        
168     <tr><td colspan="3" align="left"> {$mod_strings['LBL_SITECFG_PASSWORD_MSG']}</td></tr>
169     <tr><td><span class="required">*</span></td>
170        <td><b>{$mod_strings['LBL_SITECFG_ADMIN_Name']}</b><br>
171        </td>
172        <td align="left"><input type="text" name="setup_site_admin_user_name" value="{$_SESSION['setup_site_admin_user_name']}" size="20" maxlength="60" /></td></tr>
173     <tr><td><span class="required">*</span></td>
174        <td><b>{$mod_strings['LBL_SITECFG_ADMIN_PASS']}</b><br>
175        </td>
176        <td align="left"><input type="password" name="setup_site_admin_password" value="{$_SESSION['setup_site_admin_password']}" size="20" /></td></tr>
177     <tr><td><span class="required">*</span></td>
178        <td><b>{$mod_strings['LBL_SITECFG_ADMIN_PASS_2']}</td>
179        <td align="left"><input type="password" name="setup_site_admin_password_retype" value="{$_SESSION['setup_site_admin_password_retype']}" size="20" /></td></tr>
180
181 EOQ;
182  
183 $out .= <<<EOQ
184 </table>
185 </td>
186 </tr>
187 <tr>
188    <td align="right" colspan="2">
189    <hr>
190    <table cellspacing="0" cellpadding="0" border="0" class="stdTable">
191    <tr>
192     <td>
193         <input class="button" type="button" name="goto" value="{$mod_strings['LBL_BACK']}" onclick="document.getElementById('form').submit();" />
194         <input type="hidden" name="goto" value="{$mod_strings['LBL_BACK']}" />
195     </td>
196    <td><input class="button" type="submit" name="goto" id="defaultFocus" value="{$mod_strings['LBL_NEXT']}" /></td>
197    </tr>
198    </table>
199 </td>
200 </tr>
201 </table>
202 </form>
203 <br>
204 </body>
205 </html>
206
207 EOQ;
208
209 echo $out;
210 ?>