]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - install/systemOptions.php
Release 6.4.0
[Github/sugarcrm.git] / install / systemOptions.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 if( !isset( $install_script ) || !$install_script ){
40     die($mod_strings['ERR_NO_DIRECT_SCRIPT']);
41 }
42 if(!isset($_SESSION['setup_db_type']) || $_SESSION['setup_db_type'] ==''){
43  $_SESSION['setup_db_type'] = 'mysql';
44 }
45 $setup_db_type = $_SESSION['setup_db_type'];
46
47 $errs = '';
48 if(isset($validation_errors)) {
49         if(count($validation_errors) > 0) {
50                 $errs  = '<div id="errorMsgs">';
51                 $errs .= "<p>{$mod_strings['LBL_SYSOPTS_ERRS_TITLE']}</p>";
52                 $errs .= '<ul>';
53
54                 foreach($validation_errors as $error) {
55                         $errs .= '<li>' . $error . '</li>';
56                 }
57
58                 $errs .= '</ul>';
59                 $errs .= '</div>';
60         }
61 }
62
63 $drivers = DBManagerFactory::getDbDrivers();
64 foreach(array_keys($drivers) as $dname) {
65     $checked[$dname] = '';
66 }
67 $checked[$setup_db_type] = 'checked="checked"';
68 $langHeader = get_language_header();
69 $out=<<<EOQ
70 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
71 <html {$langHeader}>
72 <head>
73    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
74    <meta http-equiv="Content-Script-Type" content="text/javascript">
75    <meta http-equiv="Content-Style-Type" content="text/css">
76    <title>{$mod_strings['LBL_WIZARD_TITLE']} {$mod_strings['LBL_SYSOPTS_DB_TITLE']}</title>
77    <link REL="SHORTCUT ICON" HREF="include/images/sugar_icon.ico">
78    <link rel="stylesheet" href="install/install.css" type="text/css" />
79    <script type="text/javascript" src="install/installCommon.js"></script>
80 </head>
81 <body onload="document.getElementById('button_next2').focus();">
82 <form action="install.php" method="post" name="systemOptions" id="form">
83
84 <table cellspacing="0" cellpadding="0" border="0" align="center" class="shell">
85       <tr><td colspan="2" id="help"><a href="{$help_url}" target='_blank'>{$mod_strings['LBL_HELP']} </a></td></tr>
86     <tr>
87       <th width="500">
88                 <p>
89                 <img src="{$sugar_md}" alt="SugarCRM" border="0">
90                 </p>
91     {$mod_strings['LBL_SYSOPTS_DB_TITLE']}</th>
92         <th width="200" style="text-align: right;">
93                 <a href="http://www.sugarcrm.com" target="_blank"><IMG src="include/images/sugarcrm_login.png" width="145" height="30" alt="SugarCRM" border="0"></a>
94         </th>
95 </tr>
96 <tr>
97    <td colspan="2">
98                 {$errs}
99
100
101 <table width="100%" cellpadding="0" cellpadding="0" border="0" class="StyleDottedHr">
102 <tr><th colspan="3" align="left">{$mod_strings['LBL_SYSOPTS_DB']}</td></tr>
103 <tr><td colspan="3" align="left">{$mod_strings['LBL_SYSOPTS_2']}</td></tr>
104 <tr>
105     <td>&nbsp;</td>
106     <td align="left">
107 EOQ;
108 foreach($drivers as $type => $driver) {
109     $oci = ($type == "oci8")?"":'none'; // hack for special oracle message
110     $out.=<<<EOQ
111         <input type="radio" class="checkbox" name="setup_db_type" id="setup_db_type" value="$type" {$checked[$type]} onclick="document.getElementById('ociMsg').style.display='$oci'"/>{$mod_strings[$driver->label]}
112 EOQ;
113 }
114
115 $out.=<<<EOQ
116     </td>
117     <td width='350'nowrap>&nbsp;
118     <div name="ociMsg" id="ociMsg" style="display:none">
119     </div>
120 EOQ;
121
122 $out.=<<<EOQ
123     </td>
124
125 </tr>
126 </table>
127 </td>
128 </tr>
129 <tr>
130 <td align="right" colspan="2">
131 <hr>
132      <input type="hidden" name="current_step" value=" $next_step ">
133      <table cellspacing="0" cellpadding="0" border="0" class="stdTable">
134        <tr>
135          <td>
136             <input class="button" type="button" value="{$mod_strings['LBL_BACK']}" id="button_back_systemOptions" onclick="document.getElementById('form').submit();" />
137             <input type="hidden" name="goto" value="{$mod_strings['LBL_BACK']}" />
138          </td>
139          <td><input class="button" type="submit" id="button_next2" name="goto" value="{$mod_strings['LBL_NEXT']}" /></td>
140        </tr>
141      </table>
142 </td>
143 </tr>
144 </table>
145 </form>
146 </body>
147 </html>
148 EOQ;
149 echo $out;
150 ?>