$db, 'table' => $table, ); if ($action == 'tbl_create.php') { $_form_aprams['reload'] = 1; } elseif ($action == 'tbl_addfield.php') { $_form_aprams['field_where'] = $field_where; $_form_aprams['after_field'] = $after_field; } if (isset($num_fields)) { $_form_aprams['orig_num_fields'] = $num_fields; } if (isset($field_where)) { $_form_aprams['orig_field_where'] = $field_where; } if (isset($after_field)) { $_form_aprams['orig_after_field'] = $after_field; } if (isset($selected) && is_array($selected)) { foreach ($selected as $o_fld_nr => $o_fld_val) { $_form_aprams['selected[' . $o_fld_nr . ']'] = $o_fld_val; if (! isset($true_selected)) { $_form_aprams['true_selected[' . $o_fld_nr . ']'] = $o_fld_val; } } if (isset($true_selected) && is_array($true_selected)) { foreach ($true_selected as $o_fld_nr => $o_fld_val) { $_form_aprams['true_selected[' . $o_fld_nr . ']'] = $o_fld_val; } } } elseif (isset($field)) { $_form_aprams['orig_field'] = $field; if (isset($orig_field)) { $_form_aprams['true_selected[]'] = $orig_field; } else { $_form_aprams['true_selected[]'] = $field; } } $is_backup = ($action != 'tbl_create.php' && $action != 'tbl_addfield.php'); $header_cells = array(); $content_cells = array(); $header_cells[] = $strField; $header_cells[] = $strType . ($GLOBALS['cfg']['ReplaceHelpImg'] ? PMA_showMySQLDocu('SQL-Syntax', 'data-types') : '
' . PMA_showMySQLDocu('SQL-Syntax', 'data-types') . ''); $header_cells[] = $strLengthSet . PMA_showHint($strSetEnumVal); $header_cells[] = $strCollation; $header_cells[] = $strAttr; $header_cells[] = $strNull; $header_cells[] = $strDefault . PMA_showHint($strDefaultValueHelp); $header_cells[] = $strExtra; // lem9: We could remove this 'if' and let the key information be shown and // editable. However, for this to work, tbl_alter must be modified to use the // key fields, as tbl_addfield does. if (!$is_backup) { $header_cells[] = $cfg['PropertiesIconic'] ? '' . $strPrimary . '' : $strPrimary; $header_cells[] = $cfg['PropertiesIconic'] ? '' . $strIndex . '' : $strIndex; $header_cells[] = $cfg['PropertiesIconic'] ? '' . $strUnique . '' : $strUnique; $header_cells[] = '---'; $header_cells[] = $cfg['PropertiesIconic'] ? '' . $strIdxFulltext . '' : $strIdxFulltext; } require_once './libraries/relation.lib.php'; require_once './libraries/transformations.lib.php'; $cfgRelation = PMA_getRelationsParam(); $comments_map = array(); $mime_map = array(); $available_mime = array(); $comments_map = PMA_getComments($db, $table); $header_cells[] = $strComments; if ($cfgRelation['mimework'] && $cfg['BrowseMIME']) { $mime_map = PMA_getMIME($db, $table); $available_mime = PMA_getAvailableMIMEtypes(); $hint = '

' . sprintf($strMIME_transformation_note, '', '') . '

'; $header_cells[] = $strMIME_MIMEtype; $header_cells[] = $strMIME_transformation; $header_cells[] = $strMIME_transformation_options . PMA_showHint($strMIME_transformation_options_note . $hint); } // garvin: workaround for field_fulltext, because its submitted indizes contain // the index as a value, not a key. Inserted here for easier maintaineance // and less code to change in existing files. if (isset($field_fulltext) && is_array($field_fulltext)) { foreach ($field_fulltext AS $fulltext_nr => $fulltext_indexkey) { $submit_fulltext[$fulltext_indexkey] = $fulltext_indexkey; } } for ($i = 0; $i <= $num_fields; $i++) { if (! empty($regenerate)) { // An error happened with previous inputs, so we will restore the data // to embed it once again in this form. $row['Field'] = (isset($field_name[$i]) ? $field_name[$i] : FALSE); $row['Type'] = (isset($field_type[$i]) ? $field_type[$i] : FALSE); $row['Collation'] = (isset($field_collation[$i]) ? $field_collation[$i] : ''); $row['Null'] = (isset($field_null[$i]) ? $field_null[$i] : ''); if (isset(${'field_key_' . $i}) && ${'field_key_' . $i} == 'primary_' . $i) { $row['Key'] = 'PRI'; } elseif (isset(${'field_key_' . $i}) && ${'field_key_' . $i} == 'index_' . $i) { $row['Key'] = 'MUL'; } elseif (isset(${'field_key_' . $i}) && ${'field_key_' . $i} == 'unique_' . $i) { $row['Key'] = 'UNI'; } else { $row['Key'] = ''; } $row['Default'] = (isset($field_default[$i]) ? $field_default[$i] : FALSE); $row['Extra'] = (isset($field_extra[$i]) ? $field_extra[$i] : FALSE); $row['Comment'] = (isset($submit_fulltext[$i]) && ($submit_fulltext[$i] == $i) ? 'FULLTEXT' : FALSE); $submit_length = (isset($field_length[$i]) ? $field_length[$i] : FALSE); $submit_attribute = (isset($field_attribute[$i]) ? $field_attribute[$i] : FALSE); $submit_default_current_timestamp = (isset($field_default_current_timestamp[$i]) ? TRUE : FALSE); if (isset($field_comments[$i])) { $comments_map[$row['Field']] = $field_comments[$i]; } if (isset($field_mimetype[$i])) { $mime_map[$row['Field']]['mimetype'] = $field_mimetype[$i]; } if (isset($field_transformation[$i])) { $mime_map[$row['Field']]['transformation'] = $field_transformation[$i]; } if (isset($field_transformation_options[$i])) { $mime_map[$row['Field']]['transformation_options'] = $field_transformation_options[$i]; } } elseif (isset($fields_meta[$i])) { $row = $fields_meta[$i]; } // Cell index: If certain fields get left out, the counter shouldn't chage. $ci = 0; // Everytime a cell shall be left out the STRG-jumping feature, $ci_offset // has to be incremented ($ci_offset++) $ci_offset = -1; if ($is_backup) { $backup_field = (isset($true_selected) && isset($true_selected[$i]) && $true_selected[$i] ? $true_selected[$i] : (isset($row) && isset($row['Field']) ? urlencode($row['Field']) : '')); $content_cells[$i][$ci] = "\n" . '' . "\n"; } else { $content_cells[$i][$ci] = ''; } $content_cells[$i][$ci] .= "\n" . ''; $ci++; $content_cells[$i][$ci] = ''; $ci++; if ($is_backup) { $content_cells[$i][$ci] = "\n" . ''; } else { $content_cells[$i][$ci] = ''; } if (preg_match('@^(set|enum)$@i', $type)) { $binary = 0; $unsigned = 0; $zerofill = 0; $length_to_display = htmlspecialchars($length); } else { $length_to_display = $length; $binary = FALSE; $unsigned = stristr($row['Type'], 'unsigned'); $zerofill = stristr($row['Type'], 'zerofill'); } $content_cells[$i][$ci] .= "\n" . '' . "\n"; $ci++; $tmp_collation = empty($row['Collation']) ? null : $row['Collation']; $content_cells[$i][$ci] = PMA_generateCharsetDropdownBox(PMA_CSDROPDOWN_COLLATION, 'field_collation[' . $i . ']', 'field_' . $i . '_' . ($ci - $ci_offset), $tmp_collation, FALSE); unset($tmp_collation); $ci++; $content_cells[$i][$ci] = ''; $ci++; $content_cells[$i][$ci] = ''; } else { $content_cells[$i][$ci] = "\n"; } // for a TIMESTAMP, do not show CURRENT_TIMESTAMP as a default value if ($type_upper == 'TIMESTAMP' && $default_current_timestamp && isset($row['Default'])) { $row['Default'] = ''; } $content_cells[$i][$ci] .= ''; if ($type_upper == 'TIMESTAMP') { $tmp_display_type = 'block'; } else { $tmp_display_type = 'none'; $default_current_timestamp = FALSE; } $content_cells[$i][$ci] .= '
CURRENT_TIMESTAMP
'; $ci++; $content_cells[$i][$ci] = ''; $ci++; // lem9: See my other comment about removing this 'if'. if (!$is_backup) { if (isset($row) && isset($row['Key']) && $row['Key'] == 'PRI') { $checked_primary = ' checked="checked"'; } else { $checked_primary = ''; } if (isset($row) && isset($row['Key']) && $row['Key'] == 'MUL') { $checked_index = ' checked="checked"'; } else { $checked_index = ''; } if (isset($row) && isset($row['Key']) && $row['Key'] == 'UNI') { $checked_unique = ' checked="checked"'; } else { $checked_unique = ''; } if (empty($checked_primary) && empty($checked_index) && empty($checked_unique)) { $checked_none = ' checked="checked"'; } else { $checked_none = ''; } if ((isset($row) && isset($row['Comment']) && $row['Comment'] == 'FULLTEXT')) { $checked_fulltext = ' checked="checked"'; } else { $checked_fulltext = ''; } $content_cells[$i][$ci] = "\n" . ''; $ci++; $content_cells[$i][$ci] = "\n" . ''; $ci++; $content_cells[$i][$ci] = "\n" . ''; $ci++; $content_cells[$i][$ci] = "\n" . ''; $ci++; $content_cells[$i][$ci] = ''; $ci++; } // end if ($action ==...) // garvin: comments $content_cells[$i][$ci] = ''; $ci++; // garvin: MIME-types if ($cfgRelation['mimework'] && $cfg['BrowseMIME'] && $cfgRelation['commwork']) { $content_cells[$i][$ci] = ''; $ci++; $content_cells[$i][$ci] = ''; $ci++; $content_cells[$i][$ci] = ''; //$ci++; } } // end for if ($cfg['CtrlArrowsMoving']) { ?>
'; if ($display_type == 'horizontal') { ?> '; $odd_row = ! $odd_row; if (is_array($content_row)) { foreach ($content_row as $content_row_val) { ?> '; } } else { $i = 0; $odd_row = true; foreach ($header_cells as $header_val) { echo ''; $odd_row = ! $odd_row; ?> '; $i++; } } ?>
' . $content_row_val . ''; } ?>
  :  
   

'); ?> onclick="return checkFormElementInRange(this.form, 'added_fields', '', 1)" />