|
|
|
@ -1561,9 +1561,16 @@ function display_database_parameter($install_type, $parameter_name, $form_field_ |
|
|
|
|
|
|
|
|
|
//Slightly limit the length of the database prefix to avoid having to cut down the databases names later on |
|
|
|
|
$maxlength = $form_field_name == 'dbPrefixForm' ? '15' : MAX_FORM_FIELD_LENGTH; |
|
|
|
|
if ($install_type == INSTALL_TYPE_UPDATE) { |
|
|
|
|
echo '<input type="hidden" name="'.$form_field_name.'" id="'.$form_field_name.'" value="'.api_htmlentities($parameter_value).'" />'; |
|
|
|
|
echo '<td>'.api_htmlentities($parameter_value)."</td>"; |
|
|
|
|
//echo "<td>$extra_notice</td>\n"; |
|
|
|
|
} else { |
|
|
|
|
echo '<td><input type="'.$inputtype.'" size="'.DATABASE_FORM_FIELD_DISPLAY_LENGTH.'" maxlength="'.$maxlength.'" name="'.$form_field_name.'" id="'.$form_field_name.'" value="'.api_htmlentities($parameter_value).'" />'."</td>\n"; |
|
|
|
|
echo "<td>$extra_notice</td>\n"; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
echo "</tr>\n"; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -1659,13 +1666,18 @@ function display_database_settings_form($installType, $dbHostForm, $dbUsernameFo |
|
|
|
|
display_database_parameter($installType, get_lang('DbPrefixForm'), 'dbPrefixForm', $dbPrefixForm, get_lang('DbPrefixCom')); |
|
|
|
|
|
|
|
|
|
//fields for the four standard Chamilo databases |
|
|
|
|
echo '<tr><td colspan="3"><a href="" onclick="javascript: show_hide_option();return false;" id="optionalparameters"><img style="vertical-align:middle;" src="../img/div_show.gif" alt="show-hide" /> '.get_lang('OptionalParameters', '').'</a></td></tr>'; |
|
|
|
|
|
|
|
|
|
if ($installType != INSTALL_TYPE_UPDATE) { |
|
|
|
|
echo '<tr><td colspan="3">'; |
|
|
|
|
echo '<a href="" onclick="javascript: show_hide_option();return false;" id="optionalparameters"><img style="vertical-align:middle;" src="../img/div_show.gif" alt="show-hide" /> '.get_lang('OptionalParameters', '').'</a>'; |
|
|
|
|
echo '</td></tr>'; |
|
|
|
|
} |
|
|
|
|
?> |
|
|
|
|
<input type="hidden" name="enableTrackingForm" value="1" /> |
|
|
|
|
<tr id="optional_param6" style="display:none;"> |
|
|
|
|
<td><?php echo get_lang('SingleDb'); ?> </td>
|
|
|
|
|
|
|
|
|
|
<?php if ($installType == 'update'): ?> |
|
|
|
|
<?php if ($installType == INSTALL_TYPE_UPDATE): ?> |
|
|
|
|
<td><input type="hidden" name="singleDbForm" value="<?php echo $singleDbForm; ?>" /><?php echo $singleDbForm ? get_lang('One') : get_lang('Several'); ?></td>
|
|
|
|
|
<?php else: ?> |
|
|
|
|
<td> |
|
|
|
@ -1678,12 +1690,17 @@ function display_database_settings_form($installType, $dbHostForm, $dbUsernameFo |
|
|
|
|
</tr> |
|
|
|
|
</div> |
|
|
|
|
<?php
|
|
|
|
|
display_database_parameter($installType, get_lang('MainDB'), 'dbNameForm', $dbNameForm, ' ', null, 'id="optional_param1" style="display:none;"'); |
|
|
|
|
display_database_parameter($installType, get_lang('StatDB'), 'dbStatsForm', $dbStatsForm, ' ', null, 'id="optional_param2" style="display:none;"'); |
|
|
|
|
if ($installType == 'update' && in_array($_POST['old_version'], $update_from_version_6)) { |
|
|
|
|
display_database_parameter($installType, get_lang('ScormDB'), 'dbScormForm', $dbScormForm, ' ', null, 'id="optional_param3" style="display:none;"'); |
|
|
|
|
$style = 'style="display:none;"'; |
|
|
|
|
if ($installType == INSTALL_TYPE_UPDATE) { |
|
|
|
|
$style = ''; |
|
|
|
|
} |
|
|
|
|
display_database_parameter($installType, get_lang('MainDB'), 'dbNameForm', $dbNameForm, ' ', null, 'id="optional_param1" '.$style); |
|
|
|
|
display_database_parameter($installType, get_lang('StatDB'), 'dbStatsForm', $dbStatsForm, ' ', null, 'id="optional_param2" '.$style); |
|
|
|
|
|
|
|
|
|
if ($installType == INSTALL_TYPE_UPDATE && in_array($_POST['old_version'], $update_from_version_6)) { |
|
|
|
|
display_database_parameter($installType, get_lang('ScormDB'), 'dbScormForm', $dbScormForm, ' ', null, 'id="optional_param3" '.$style); |
|
|
|
|
} |
|
|
|
|
display_database_parameter($installType, get_lang('UserDB'), 'dbUserForm', $dbUserForm, ' ', null, 'id="optional_param4" style="display:none;"'); |
|
|
|
|
display_database_parameter($installType, get_lang('UserDB'), 'dbUserForm', $dbUserForm, ' ', null, 'id="optional_param4" '.$style); |
|
|
|
|
|
|
|
|
|
/* Tracking is always available see #2066 |
|
|
|
|
* |
|
|
|
|