root/c3crm/sugarcrm/trunk/install/systemOptions.php
Revision 316 (by c3crm, 12/29/05 13:27:53) |
---|
<?php /********************************************************************************* * The contents of this file are subject to the SugarCRM Public License Version * 1.1.3 ("License"); You may not use this file except in compliance with the * License. You may obtain a copy of the License at http://www.sugarcrm.com/SPL * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * for the specific language governing rights and limitations under the * License. * * All copies of the Covered Code must include on each user interface screen: * (i) the "Powered by SugarCRM" logo and * (ii) the SugarCRM copyright notice * in the same form as they appear in the distribution. See full license for * requirements. * * The Original Code is: SugarCRM Open Source * The Initial Developer of the Original Code is SugarCRM, Inc. * Portions created by SugarCRM are Copyright (C) 2004-2005 SugarCRM, Inc.; * All Rights Reserved. * Contributor(s): ______________________________________. ********************************************************************************/ if( !isset( $install_script ) || !$install_script ){ die('Unable to process script directly.'); } $setup_db_type = $_SESSION['setup_db_type']; ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta http-equiv="Content-Script-Type" content="text/javascript"> <meta http-equiv="Content-Style-Type" content="text/css"> <title>SugarCRM Setup Wizard: Step <?php echo $next_step ?></title> <link rel="stylesheet" href="install/install.css" type="text/css" /> <script type="text/javascript" src="install/installCommon.js"></script> </head> <body onload="document.getElementById('defaultFocus').focus();"> <form action="install.php" method="post" name="systemOptions" id="form"> <table cellspacing="0" cellpadding="0" border="0" align="center" class="shell"> <tr> <th width="400">Step <?php echo $next_step ?>: System Configuration</th> <th width="200" height="30" style="text-align: right;"><a href="http://www.sugarcrm.com" target= "_blank"><IMG src="include/images/sugarcrm_login.png" width="120" height="19" alt="SugarCRM" border="0"></a></th> </tr> <tr> <td colspan="2" width="600"> <p>Please select the following system configuration options below.</p> <?php if(isset($validation_errors)) { if(count($validation_errors) > 0) { echo '<div id="errorMsgs">'; echo '<p>Please fix the following errors before proceeding:</p>'; echo '<ul>'; foreach($validation_errors as $error) { echo '<li>' . $error . '</li>'; } echo '</ul>'; echo '</div>'; } } ?> <div class="required">* Required field</div> <table width="100%" cellpadding="0" cellpadding="0" border="0" class="StyleDottedHr"> <tr><th colspan="3" align="left">Database Selection</td></tr> <tr> <td><span class="required">*</span></td> <td nowrap><b>Database Type</b><br><em>You must have an Oracle client installed and configured<br>if you want to choose Oracle.</em></td> <td align="left"> <input type="radio" class="checkbox" name="setup_db_type" id="defaultFocus" value="mysql" <?php if($setup_db_type == "mysql") echo 'checked="checked"'; ?> />MySQL<BR> <input type="radio" class="checkbox" name="setup_db_type" id="defaultFocus" value="oci8" <?php if($setup_db_type == "oci8") echo 'checked="checked"'; ?> />Oracle<BR> </td> </tr> </table> </td> </tr> <tr> <td align="right" colspan="2"> <hr> <input type="hidden" name="current_step" value="<?php echo $next_step ?>"> <table cellspacing="0" cellpadding="0" border="0" class="stdTable"> <tr> <td><input class="button" type="button" onclick="window.open('http://www.sugarcrm.com/forums/');" value="Help" /></td> <td> <input class="button" type="button" name="goto" value="Back" onclick="document.getElementById('form').submit();" /> <input type="hidden" name="goto" value="Back" /> </td> <td><input class="button" type="submit" name="goto" value="Next" /></td> </tr> </table> </td> </tr> </table> </form> </body> </html>
Note: See TracBrowser for help on using the browser.