phpcs errors corrected
This commit is contained in:
parent
b629d5c6dd
commit
f9a43b7ddc
@ -174,7 +174,8 @@ for ($i = 0; $i < $num_fields; $i++) {
|
||||
$_form_params['field_default_orig[' . $i . ']']
|
||||
= (isset($row['Default']) ? $row['Default'] : '');
|
||||
}
|
||||
$content_cells[$i][$ci] = PMA_getHtmlForColumnDefault($i, $ci, $ci_offset,
|
||||
$content_cells[$i][$ci] = PMA_getHtmlForColumnDefault(
|
||||
$i, $ci, $ci_offset,
|
||||
isset($type_upper) ? $type_upper : null,
|
||||
isset($default_current_timestamp) ? $default_current_timestamp : null,
|
||||
isset($row) ? $row : null
|
||||
@ -188,13 +189,14 @@ for ($i = 0; $i < $num_fields; $i++) {
|
||||
$ci++;
|
||||
|
||||
// column attribute
|
||||
$content_cells[$i][$ci] = PMA_getHtmlForColumnAttribute($i, $ci, $ci_offset,
|
||||
$content_cells[$i][$ci] = PMA_getHtmlForColumnAttribute(
|
||||
$i, $ci, $ci_offset,
|
||||
isset($extracted_columnspec) ? $extracted_columnspec : null,
|
||||
isset($row) ? $row : null,
|
||||
isset($submit_attribute) ? $submit_attribute : null,
|
||||
isset($analyzed_sql) ? $analyzed_sql : null,
|
||||
isset($submit_default_current_timestamp)
|
||||
? $submit_default_current_timestamp : null
|
||||
? $submit_default_current_timestamp : null
|
||||
);
|
||||
$ci++;
|
||||
|
||||
@ -208,14 +210,14 @@ for ($i = 0; $i < $num_fields; $i++) {
|
||||
// See my other comment about this 'if'.
|
||||
if (!$is_backup) {
|
||||
$content_cells[$i][$ci] = PMA_getHtmlForColumnIndexes(
|
||||
$i, $ci, $ci_offset, $row
|
||||
$i, $ci, $ci_offset, $row
|
||||
);
|
||||
$ci++;
|
||||
} // end if ($action ==...)
|
||||
|
||||
// column auto_increment
|
||||
$content_cells[$i][$ci] = PMA_getHtmlForColumnAutoIncrement(
|
||||
$i, $ci, $ci_offset, $row
|
||||
$i, $ci, $ci_offset, $row
|
||||
);
|
||||
$ci++;
|
||||
|
||||
@ -251,8 +253,8 @@ for ($i = 0; $i < $num_fields; $i++) {
|
||||
|
||||
// column Transformation options
|
||||
$content_cells[$i][$ci] = PMA_getHtmlForTransformationOption(
|
||||
$i, $ci, $ci_offset, isset($row) ? $row : null,
|
||||
isset($mime_map) ? $mime_map : null
|
||||
$i, $ci, $ci_offset, isset($row) ? $row : null,
|
||||
isset($mime_map) ? $mime_map : null
|
||||
);
|
||||
}
|
||||
} // end for
|
||||
|
||||
@ -519,29 +519,29 @@ function PMA_handleRegeneration($submit_fulltext, $comments_map, $mime_map)
|
||||
function PMA_getRowDataForFieldsMetaSet($row, $isDefault)
|
||||
{
|
||||
switch ($row['Default']) {
|
||||
case null:
|
||||
if ($row['Null'] == 'YES') {
|
||||
$row['DefaultType'] = 'NULL';
|
||||
$row['DefaultValue'] = '';
|
||||
// SHOW FULL COLUMNS does not report the case
|
||||
// when there is a DEFAULT value which is empty so we need to use the
|
||||
// results of SHOW CREATE TABLE
|
||||
} elseif ($isDefault) {
|
||||
$row['DefaultType'] = 'USER_DEFINED';
|
||||
$row['DefaultValue'] = $row['Default'];
|
||||
} else {
|
||||
$row['DefaultType'] = 'NONE';
|
||||
$row['DefaultValue'] = '';
|
||||
}
|
||||
break;
|
||||
case 'CURRENT_TIMESTAMP':
|
||||
$row['DefaultType'] = 'CURRENT_TIMESTAMP';
|
||||
case null:
|
||||
if ($row['Null'] == 'YES') {
|
||||
$row['DefaultType'] = 'NULL';
|
||||
$row['DefaultValue'] = '';
|
||||
break;
|
||||
default:
|
||||
// SHOW FULL COLUMNS does not report the case
|
||||
// when there is a DEFAULT value which is empty so we need to use the
|
||||
// results of SHOW CREATE TABLE
|
||||
} elseif ($isDefault) {
|
||||
$row['DefaultType'] = 'USER_DEFINED';
|
||||
$row['DefaultValue'] = $row['Default'];
|
||||
break;
|
||||
} else {
|
||||
$row['DefaultType'] = 'NONE';
|
||||
$row['DefaultValue'] = '';
|
||||
}
|
||||
break;
|
||||
case 'CURRENT_TIMESTAMP':
|
||||
$row['DefaultType'] = 'CURRENT_TIMESTAMP';
|
||||
$row['DefaultValue'] = '';
|
||||
break;
|
||||
default:
|
||||
$row['DefaultType'] = 'USER_DEFINED';
|
||||
$row['DefaultValue'] = $row['Default'];
|
||||
break;
|
||||
}
|
||||
|
||||
return $row;
|
||||
@ -550,10 +550,10 @@ function PMA_getRowDataForFieldsMetaSet($row, $isDefault)
|
||||
/**
|
||||
* Function to get html for the column name
|
||||
*
|
||||
* @param int $i field number
|
||||
* @param int $ci cell index
|
||||
* @param int $ci_offset cell index offset
|
||||
* @param array $row row
|
||||
* @param int $i field number
|
||||
* @param int $ci cell index
|
||||
* @param int $ci_offset cell index offset
|
||||
* @param array $row row
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
@ -572,10 +572,11 @@ function PMA_getHtmlForColumnName($i, $ci, $ci_offset, $row)
|
||||
/**
|
||||
* Function to get html for the column type
|
||||
*
|
||||
* @param int $i field number
|
||||
* @param int $ci cell index
|
||||
* @param int $ci_offset cell index offset
|
||||
*
|
||||
* @param int $i field number
|
||||
* @param int $ci cell index
|
||||
* @param int $ci_offset cell index offset
|
||||
* @param string $type_upper type inuppercase
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
function PMA_getHtmlForColumnType($i, $ci, $ci_offset, $type_upper)
|
||||
@ -916,11 +917,12 @@ function PMA_getHtmlForColumnAttribute($i, $ci, $ci_offset, $extracted_columnspe
|
||||
// here, we have a TIMESTAMP that SHOW FULL COLUMNS reports as having the
|
||||
// NULL attribute, but SHOW CREATE TABLE says the contrary. Believe
|
||||
// the latter.
|
||||
$create_table_fields = $analyzed_sql[0]['create_table_fields'];
|
||||
if (PMA_MYSQL_INT_VERSION < 50025
|
||||
&& isset($row['Field'])
|
||||
&& isset($analyzed_sql[0]['create_table_fields'][$row['Field']]['type'])
|
||||
&& $analyzed_sql[0]['create_table_fields'][$row['Field']]['type'] == 'TIMESTAMP'
|
||||
&& $analyzed_sql[0]['create_table_fields'][$row['Field']]['timestamp_not_null'] == true
|
||||
&& isset($create_table_fields[$row['Field']]['type'])
|
||||
&& $create_table_fields[$row['Field']]['type'] == 'TIMESTAMP'
|
||||
&& $create_table_fields[$row['Field']]['timestamp_not_null'] == true
|
||||
) {
|
||||
$row['Null'] = '';
|
||||
}
|
||||
@ -928,12 +930,12 @@ function PMA_getHtmlForColumnAttribute($i, $ci, $ci_offset, $extracted_columnspe
|
||||
// MySQL 4.1.2+ TIMESTAMP options
|
||||
// (if on_update_current_timestamp is set, then it's TRUE)
|
||||
if (isset($row['Field'])
|
||||
&& isset($analyzed_sql[0]['create_table_fields'][$row['Field']]['on_update_current_timestamp'])
|
||||
&& isset($create_table_fields[$row['Field']]['on_update_current_timestamp'])
|
||||
) {
|
||||
$attribute = 'on update CURRENT_TIMESTAMP';
|
||||
}
|
||||
if ((isset($row['Field'])
|
||||
&& isset($analyzed_sql[0]['create_table_fields'][$row['Field']]['default_current_timestamp']))
|
||||
&& isset($create_table_fields[$row['Field']]['default_current_timestamp']))
|
||||
|| (isset($submit_default_current_timestamp)
|
||||
&& $submit_default_current_timestamp)
|
||||
) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user