/
var
/
www
/
html
/
sugardemo
/
install
/
Upload File
HOME
<?php /* * Your installation or use of this SugarCRM file is subject to the applicable * terms available at * http://support.sugarcrm.com/Resources/Master_Subscription_Agreements/. * If you do not agree to all of the applicable terms or do not have the * authority to bind the entity as an authorized representative, then do not * install or use this SugarCRM file. * * Copyright (C) SugarCRM Inc. All rights reserved. */ if (!isset($install_script) || !$install_script) { die($mod_strings['ERR_NO_DIRECT_SCRIPT']); } $errs = ''; if (isset($validation_errors)) { if (safeCount($validation_errors) > 0) { $errs = '<div id="errorMsgs">'; $errs .= "<p>{$mod_strings['LBL_SYSOPTS_ERRS_TITLE']}</p>"; $errs .= '<ul>'; foreach ($validation_errors as $error) { $errs .= '<li>' . $error . '</li>'; } $errs .= '</ul>'; $errs .= '</div>'; } } $drivers = DBManagerFactory::getDbDrivers(); $setup_db_type = 'mysql'; if (!empty($_SESSION['setup_db_type'])) { $setup_db_type = $_SESSION['setup_db_type']; } if (safeCount($drivers) && !array_key_exists($setup_db_type, $drivers)) { $driverKeys = array_keys($drivers); $setup_db_type = $driverKeys[0]; } $disabledNextButton = safeCount($drivers) ? '' : ' disabled="disabled"'; $_SESSION['setup_db_type'] = $setup_db_type; foreach (array_keys($drivers) as $dname) { $checked[$dname] = ''; } $checked[$setup_db_type] = 'checked="checked"'; $langHeader = get_language_header(); $out = <<<EOQ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html {$langHeader}> <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>{$mod_strings['LBL_WIZARD_TITLE']} {$mod_strings['LBL_SYSOPTS_DB_TITLE']}</title> <link REL="SHORTCUT ICON" type="image/png" HREF="include/images/sugar-favicon.png"> <link rel="stylesheet" href="install/install.css" type="text/css" /> <script type="text/javascript" src="install/installCommon.js"></script> </head> <body onload="document.getElementById('button_next2').focus();"> <form action="install.php" method="post" name="systemOptions" id="form"> <table cellspacing="0" cellpadding="0" border="0" align="center" class="shell"> <tr><td colspan="2" id="help"><a href="{$help_url}" target='_blank'>{$mod_strings['LBL_HELP']} </a></td></tr> <tr> <th width="500"> <p> <img src="{$sugar_md}" alt="SugarCRM" border="0"> </p> {$mod_strings['LBL_SYSOPTS_DB_TITLE']}</th> <th width="200" style="text-align: right;"> <a href="http://www.sugarcrm.com" target="_blank"> <img src="{$loginImage}" alt="SugarCRM" border="0" class="sugarcrm-logo"> </a> </th> </tr> <tr> <td colspan="2"> {$errs} <table width="100%" cellpadding="0" cellpadding="0" border="0" class="StyleDottedHr"> <tr><th colspan="3" align="left">{$mod_strings['LBL_SYSOPTS_DB']}</td></tr> <tr><td colspan="3" align="left">{$mod_strings['LBL_SYSOPTS_2']}</td></tr> <tr> <td> </td> <td align="left"> EOQ; foreach ($drivers as $type => $driver) { $oci = ($type == 'oci8') ? '' : 'none'; // hack for special oracle message $out .= <<<EOQ <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]} EOQ; } $out .= <<<EOQ </td> <td width='350'nowrap> <div name="ociMsg" id="ociMsg" style="display:none"> <br><em>{$mod_strings['LBL_SYSOPTS_DB_DIRECTIONS']}</em> </div> EOQ; $out .= <<<EOQ </td> </tr> </table> </td> </tr> <tr> <td align="right" colspan="2"> <hr> <input type="hidden" name="current_step" value="$next_step"> <table cellspacing="0" cellpadding="0" border="0" class="stdTable"> <tr> <td> <input class="button" type="button" value="{$mod_strings['LBL_BACK']}" id="button_back_systemOptions" onclick="document.getElementById('form').submit();" /> <input type="hidden" name="goto" value="{$mod_strings['LBL_BACK']}" /> </td> <td><input class="button" type="submit" id="button_next2" name="goto" value="{$mod_strings['LBL_NEXT']}"{$disabledNextButton} /></td> </tr> </table> </td> </tr> </table> </form> </body> </html> EOQ; echo $out;