]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - install/siteConfig_b.php
Release 6.2.0
[Github/sugarcrm.git] / install / siteConfig_b.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 if( is_file("config.php") ){
46         
47     
48
49         if(!empty($sugar_config['default_theme']))
50       $_SESSION['site_default_theme'] = $sugar_config['default_theme'];
51
52         if(!empty($sugar_config['disable_persistent_connections']))
53                 $_SESSION['disable_persistent_connections'] =
54                 $sugar_config['disable_persistent_connections'];
55         if(!empty($sugar_config['default_language']))
56                 $_SESSION['default_language'] = $sugar_config['default_language'];
57         if(!empty($sugar_config['translation_string_prefix']))
58                 $_SESSION['translation_string_prefix'] = $sugar_config['translation_string_prefix'];
59         if(!empty($sugar_config['default_charset']))
60                 $_SESSION['default_charset'] = $sugar_config['default_charset'];
61
62         if(!empty($sugar_config['default_currency_name']))
63                 $_SESSION['default_currency_name'] = $sugar_config['default_currency_name'];
64         if(!empty($sugar_config['default_currency_symbol']))
65                 $_SESSION['default_currency_symbol'] = $sugar_config['default_currency_symbol'];
66         if(!empty($sugar_config['default_currency_iso4217']))
67                 $_SESSION['default_currency_iso4217'] = $sugar_config['default_currency_iso4217'];
68
69         if(!empty($sugar_config['rss_cache_time']))
70                 $_SESSION['rss_cache_time'] = $sugar_config['rss_cache_time'];
71         if(!empty($sugar_config['languages']))
72         {
73                 // We need to encode the languages in a way that can be retrieved later.
74                 $language_keys = Array();
75                 $language_values = Array();
76
77                 foreach($sugar_config['languages'] as $key=>$value)
78                 {
79                         $language_keys[] = $key;
80                         $language_values[] = $value;
81                 }
82
83                 $_SESSION['language_keys'] = urlencode(implode(",",$language_keys));
84                 $_SESSION['language_values'] = urlencode(implode(",",$language_values));
85         }
86 }
87
88 ////    errors
89 $errors = '';
90 if( isset($validation_errors) ){
91     if( count($validation_errors) > 0 ){
92         $errors  = '<div id="errorMsgs">';
93         $errors .= '<p>'.$mod_strings['LBL_SITECFG_FIX_ERRORS'].'</p><ul>';
94         foreach( $validation_errors as $error ){
95                         $errors .= '<li>' . $error . '</li>';
96         }
97                 $errors .= '</ul></div>';
98     }
99 }
100
101
102 ////    ternaries
103 $sugarUpdates = (isset($_SESSION['setup_site_sugarbeet']) && !empty($_SESSION['setup_site_sugarbeet'])) ? 'checked="checked"' : '';
104 $siteSecurity = (isset($_SESSION['setup_site_defaults']) && !empty($_SESSION['setup_site_defaults'])) ? 'checked="checked"' : '';
105 $customSession = (isset($_SESSION['setup_site_custom_session_path']) && !empty($_SESSION['setup_site_custom_session_path'])) ? 'checked="checked"' : '';
106 $customLog = (isset($_SESSION['setup_site_custom_log_dir']) && !empty($_SESSION['setup_site_custom_log_dir'])) ? 'checked="checked"' : '';
107 $customId = (isset($_SESSION['setup_site_specify_guid']) && !empty($_SESSION['setup_site_specify_guid'])) ? 'checked="checked"' : '';
108
109 ///////////////////////////////////////////////////////////////////////////////
110 ////    START OUTPUT
111 $out =<<<EOQ
112 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
113 <html>
114 <head>
115    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
116    <meta http-equiv="Content-Script-Type" content="text/javascript">
117    <meta http-equiv="Content-Style-Type" content="text/css">
118    <title>{$mod_strings['LBL_WIZARD_TITLE']} {$mod_strings['LBL_SITECFG_SECURITY_TITLE']}</title>
119    <link REL="SHORTCUT ICON" HREF="include/images/sugar_icon.ico">
120    <link rel="stylesheet" href="install/install.css" type="text/css" />
121    <script type="text/javascript" src="install/installCommon.js"></script>
122    <script type="text/javascript" src="install/siteConfig.js"></script>
123 </head>
124 <body onload="javascript:toggleGUID();toggleSession();toggleLogDir();document.getElementById('defaultFocus').focus();">
125 <form action="install.php" method="post" name="setConfig" id="form">
126 <input type="hidden" name="current_step" value="{$next_step}">
127 <table cellspacing="0" cellpadding="0" border="0" align="center" class="shell">
128       <tr><td colspan="2" id="help"><a href="{$help_url}" target='_blank'>{$mod_strings['LBL_HELP']} </a></td></tr>
129     <tr>
130       <th width="500">
131                 <p>
132                 <img src="{$sugar_md}" alt="SugarCRM" border="0">
133                 </p>
134    {$mod_strings['LBL_SITECFG_SECURITY_TITLE']}</th>
135    <th width="200" style="text-align: right;"><a href="http://www.sugarcrm.com" target="_blank"><IMG src="include/images/sugarcrm_login.png" width="145" height="30" alt="SugarCRM" border="0"></a></th>
136    </tr>
137 <tr>
138     <td colspan="2">
139     {$errors}
140    <div class="required">{$mod_strings['LBL_REQUIRED']}</div>
141    <table width="100%" cellpadding="0" cellpadding="0" border="0" class="StyleDottedHr">
142    <tr><th colspan="3" align="left">{$mod_strings['LBL_SITECFG_SITE_SECURITY']}</td></tr>
143
144 EOQ;
145 $checked = '';
146 if(!empty($_SESSION['setup_site_sugarbeet_anonymous_stats'])) $checked = 'checked="checked"'; 
147 $out .= "
148    <tr><td></td>       
149        <td><input type='checkbox' class='checkbox' name='setup_site_sugarbeet_anonymous_stats' value='yes' $checked /></td>
150        <td><b>{$mod_strings['LBL_SITECFG_ANONSTATS']}</b><br><i>{$mod_strings['LBL_SITECFG_ANONSTATS_DIRECTIONS']}</i></td></tr>
151        
152 ";
153 $checked = '';
154 if(!empty($_SESSION['setup_site_sugarbeet_automatic_checks'])) $checked = 'checked="checked"'; 
155 $out .= <<<EOQ
156    <tr><td></td>       
157        <td><input type="checkbox" class="checkbox" name="setup_site_sugarbeet_automatic_checks" value="yes" checked="checked" /></td>
158        <td><b>{$mod_strings['LBL_SITECFG_SUGAR_UP']}</b><br><i>{$mod_strings['LBL_SITECFG_SUGAR_UP_DIRECTIONS']}</i><br>&nbsp;</td></tr>
159    <tbody id="setup_site_session_section_pre">
160    <tr><td></td>       
161        <td><input type="checkbox" class="checkbox" name="setup_site_custom_session_path" value="yes" onclick="javascript:toggleSession();" {$customSession} /></td>
162        <td><b>{$mod_strings['LBL_SITECFG_CUSTOM_SESSION']}</b><br>
163             <em>{$mod_strings['LBL_SITECFG_CUSTOM_SESSION_DIRECTIONS']}</em><br>&nbsp;</td>
164    </tr>
165    </tbody>
166    <tbody id="setup_site_session_section">
167    <tr><td></td>
168        <td style="text-align : right;"><span class="required">*</span></td>
169        <td align="left">
170                <div><div style="width:200px;float:left"><b>{$mod_strings['LBL_SITECFG_SESSION_PATH']}</b></div>
171                        <input type="text" name="setup_site_session_path" size='40' value="{$_SESSION['setup_site_session_path']}" /></td>
172                </div>       
173        </td>
174    </tr>
175    </tbody>
176    <tbody id="setup_site_log_dir_pre">
177    <tr><td></td>       
178        <td><input type="checkbox" class="checkbox" name="setup_site_custom_log_dir" value="yes" onclick="javascript:toggleLogDir();" {$customLog} /></td>
179        <td><b>{$mod_strings['LBL_SITECFG_CUSTOM_LOG']}</b><br>
180             <em>{$mod_strings['LBL_SITECFG_CUSTOM_LOG_DIRECTIONS']}</em><br>&nbsp;</td>
181    </tr>
182    </tbody>
183    <tbody id="setup_site_log_dir">
184    <tr><td></td>       
185        <td style="text-align : right;" ><span class="required">*</span></td>
186        <td align="left">
187        <div><div style="width:200px;float:left"><b>{$mod_strings['LBL_SITECFG_LOG_DIR']}</b></div>
188             <input type="text" name="setup_site_log_dir" size='30' value="{$_SESSION['setup_site_log_dir']}" />
189        </div>
190    </tr>
191    </tbody>
192    <tbody id="setup_site_guid_section_pre">
193    <tr><td></td>       
194        <td><input type="checkbox" class="checkbox" name="setup_site_specify_guid" value="yes" onclick="javascript:toggleGUID();" {$customId} /></td>
195        <td><b>{$mod_strings['LBL_SITECFG_CUSTOM_ID']}</b><br>
196             <em>{$mod_strings['LBL_SITECFG_CUSTOM_ID_DIRECTIONS']}</em><br>&nbsp;</td>  
197    </tr>
198    </tbody>
199    <tbody id="setup_site_guid_section">
200    <tr><td></td>
201        <td style="text-align : right;"><span class="required">*</span></td>
202        <td align="left">
203                <div><div style="width:200px;float:left"><b>{$mod_strings['LBL_SITECFG_APP_ID']}</b></div>
204                        <input type="text" name="setup_site_guid" size='30' value="{$_SESSION['setup_site_guid']}" />
205                </div>      
206        </td>       
207    </tr>
208    </tbody>
209 </table>
210 </td>
211 </tr>
212 <tr>
213    <td align="right" colspan="2">
214    <hr>
215    <table cellspacing="0" cellpadding="0" border="0" class="stdTable">
216    <tr>
217     <td>
218         <input class="button" type="button" name="goto" value="{$mod_strings['LBL_BACK']}" onclick="document.getElementById('form').submit();" />
219         <input type="hidden" name="goto" value="{$mod_strings['LBL_BACK']}" />
220     </td>
221    <td><input class="button" type="submit" id="defaultFocus" name="goto" value="{$mod_strings['LBL_NEXT']}" /></td>
222    </tr>
223    </table>
224 </td>
225 </tr>
226 </table>
227 </form>
228 <br>
229 </body>
230 </html>
231
232 EOQ;
233
234 echo $out;
235 ?>