3 // vim: expandtab sw=4 ts=4 sts=4:
6 * Gets the variables sent or posted to this script and displays the header
8 require_once './libraries/common.lib.php';
11 * Sets global variables.
12 * Here it's better to use a if, instead of the '?' operator
13 * to avoid setting a variable to '' when it's not present in $_REQUEST
15 if (isset($_REQUEST['pos'])) {
16 $pos = $_REQUEST['pos'];
18 if (isset($_REQUEST['session_max_rows'])) {
19 $session_max_rows = $_REQUEST['session_max_rows'];
21 if (isset($_REQUEST['disp_direction'])) {
22 $disp_direction = $_REQUEST['disp_direction'];
24 if (isset($_REQUEST['repeat_cells'])) {
25 $repeat_cells = $_REQUEST['repeat_cells'];
27 if (isset($_REQUEST['dontlimitchars'])) {
28 $dontlimitchars = $_REQUEST['dontlimitchars'];
30 if (isset($_REQUEST['primary_key'])) {
31 $primary_key = $_REQUEST['primary_key'];
33 if (isset($_REQUEST['sql_query'])) {
34 $sql_query = $_REQUEST['sql_query'];
38 $js_to_run = 'tbl_change.js';
39 require_once './libraries/header.inc.php';
40 require_once './libraries/relation.lib.php'; // foreign keys
41 require_once './libraries/file_listing.php'; // file listing
45 * Displays the query submitted and its result
47 if (!empty($disp_message)) {
50 $goto = 'tbl_properties.php?'
51 . PMA_generate_common_url($db, $table)
52 . '&$show_query=1'
53 . '&sql_query=' . (isset($disp_query) ?
urlencode($disp_query) : '');
57 if (isset($sql_query)) {
58 $sql_query_cpy = $sql_query;
61 if (isset($disp_query)) {
62 $sql_query = $disp_query;
64 PMA_showMessage($disp_message);
65 if (isset($goto_cpy)) {
69 if (isset($sql_query_cpy)) {
70 $sql_query = $sql_query_cpy;
71 unset($sql_query_cpy);
77 * Defines the url to return to in case of error in a sql statement
78 * (at this point, $goto might be set but empty)
81 $goto = 'db_details.php';
83 // TODO: check if we could replace by "db_details|tbl"
84 if (!preg_match('@^(db_details|tbl_properties|tbl_select|tbl_import)@', $goto)) {
85 $err_url = $goto . "?" . PMA_generate_common_url($db) . "&sql_query=" . urlencode($sql_query);
87 $err_url = $goto . '?'
88 . PMA_generate_common_url($db)
89 . ((preg_match('@^(tbl_properties|tbl_select)@', $goto)) ?
'&table=' . urlencode($table) : '');
94 * Ensures db and table are valid, else moves to the "parent" script
96 require_once './libraries/db_table_exists.lib.php';
100 * Sets parameters for links
102 $url_query = PMA_generate_common_url($db, $table)
103 . '&goto=tbl_properties.php';
105 require_once './libraries/tbl_properties_table_info.inc.php';
109 $comments_map = array();
111 if ($GLOBALS['cfg']['ShowPropertyComments']) {
112 require_once './libraries/relation.lib.php';
113 require_once './libraries/transformations.lib.php';
115 $cfgRelation = PMA_getRelationsParam();
117 if ($cfgRelation['commwork'] || PMA_MYSQL_INT_VERSION
>= 40100) {
118 $comments_map = PMA_getComments($db, $table);
123 * Displays top menu links
125 require_once './libraries/tbl_properties_links.inc.php';
129 * Get the analysis of SHOW CREATE TABLE for this table
131 $show_create_table = PMA_DBI_fetch_value(
132 'SHOW CREATE TABLE ' . PMA_backquote($db) . '.' . PMA_backquote($table),
134 $analyzed_sql = PMA_SQP_analyze( PMA_SQP_parse( $show_create_table ) );
135 unset($show_create_table);
138 * Get the list of the fields of the current table
140 PMA_DBI_select_db($db);
141 $table_def = PMA_DBI_query('SHOW FIELDS FROM ' . PMA_backquote($table) . ';', null, PMA_DBI_QUERY_STORE
);
142 if (isset($primary_key)) {
143 if (is_array($primary_key)) {
144 $primary_key_array = $primary_key;
146 $primary_key_array = array(0 => $primary_key);
151 foreach ($primary_key_array AS $rowcount => $primary_key) {
152 $local_query = 'SELECT * FROM ' . PMA_backquote($table) . ' WHERE ' . $primary_key . ';';
153 $result[$rowcount] = PMA_DBI_query($local_query, null, PMA_DBI_QUERY_STORE
);
154 $row[$rowcount] = PMA_DBI_fetch_assoc($result[$rowcount]);
155 $primary_keys[$rowcount] = $primary_key;
158 if (!$row[$rowcount]) {
159 unset($row[$rowcount]);
160 unset($primary_key_array[$rowcount]);
162 $goto = 'tbl_properties.php?'
163 . PMA_generate_common_url($db, $table)
164 . '&$show_query=1'
165 . '&sql_query=' . urlencode($local_query);
166 if (isset($sql_query)) {
167 $sql_query_cpy = $sql_query;
170 $sql_query = $local_query;
171 PMA_showMessage($strEmptyResultSet);
174 if (isset($sql_query_cpy)) {
175 $sql_query = $sql_query_cpy;
176 unset($sql_query_cpy);
179 require_once './libraries/footer.inc.php';
180 } // end if (no record returned)
183 $result = PMA_DBI_query('SELECT * FROM ' . PMA_backquote($table) . ' LIMIT 1;', null, PMA_DBI_QUERY_STORE
);
188 // retrieve keys into foreign fields, if any
189 $cfgRelation = PMA_getRelationsParam();
190 $foreigners = ($cfgRelation['relwork'] ?
PMA_getForeigners($db, $table) : FALSE);
196 // loic1: autocomplete feature of IE kills the "onchange" event handler and it
197 // must be replaced by the "onpropertychange" one in this case
198 $chg_evt_handler = (PMA_USR_BROWSER_AGENT
== 'IE' && PMA_USR_BROWSER_VER
>= 5)
201 // Had to put the URI because when hosted on an https server,
202 // some browsers send wrongly this form to the http server.
205 <?php
if ($cfg['CtrlArrowsMoving']) { ?
>
206 <!-- Set on key handler
for moving using by Ctrl+arrows
-->
207 <script src
="./js/keyhandler.js" type
="text/javascript" language
="javascript"></script
>
208 <script type
="text/javascript" language
="javascript">
210 var switch_movement
= 0;
211 document
.onkeydown
= onKeyDownArrowsHandler
;
216 <!-- Change table properties form
-->
217 <form method
="post" action
="tbl_replace.php" name
="insertForm" <?php
if ($is_upload) { echo ' enctype="multipart/form-data"'; } ?
>>
218 <?php
echo PMA_generate_common_hidden_inputs($db, $table); ?
>
219 <input type
="hidden" name
="goto" value
="<?php echo urlencode($goto); ?>" />
220 <input type
="hidden" name
="pos" value
="<?php echo isset($pos) ? $pos : 0; ?>" />
221 <input type
="hidden" name
="session_max_rows" value
="<?php echo isset($session_max_rows) ? $session_max_rows : ''; ?>" />
222 <input type
="hidden" name
="disp_direction" value
="<?php echo isset($disp_direction) ? $disp_direction : ''; ?>" />
223 <input type
="hidden" name
="repeat_cells" value
="<?php echo isset($repeat_cells) ? $repeat_cells : ''; ?>" />
224 <input type
="hidden" name
="dontlimitchars" value
="<?php echo (isset($dontlimitchars) ? $dontlimitchars : 0); ?>" />
225 <input type
="hidden" name
="err_url" value
="<?php echo urlencode($err_url); ?>" />
226 <input type
="hidden" name
="sql_query" value
="<?php echo isset($sql_query) ? urlencode($sql_query) : ''; ?>" />
228 if (isset($primary_key_array)) {
229 foreach ($primary_key_array AS $primary_key) {
231 <input type
="hidden" name
="primary_key[]" value
="<?php echo urlencode($primary_key); ?>" />
237 if ($cfg['PropertiesIconic'] == true) {
238 // We need to copy the value or else the == 'both' check will always return true
239 $propicon = (string)$cfg['PropertiesIconic'];
241 if ($propicon == 'both') {
242 $iconic_spacer = '<div class="nowrap">';
247 $titles['Browse'] = $iconic_spacer . '<img width="16" height="16" src="' . $pmaThemeImage . 'b_browse.png" alt="' . $strBrowseForeignValues . '" title="' . $strBrowseForeignValues . '" border="0" />';
249 if ($propicon == 'both') {
250 $titles['Browse'] .= ' ' . $strBrowseForeignValues . '</div>';
253 $titles['Browse'] = $strBrowseForeignValues;
256 // Set if we passed the first timestamp field
258 $fields_cnt = PMA_DBI_num_rows($table_def);
260 // Set a flag here because the 'if' would not be valid in the loop
261 // if we set a value in some field
262 $insert_mode = (!isset($row) ?
TRUE : FALSE);
264 $loop_array = array();
265 for ($i = 0; $i < $cfg['InsertRows']; $i++
) $loop_array[] = FALSE;
270 while ($trow = PMA_DBI_fetch_assoc($table_def)) {
271 $trow_table_def[] = $trow;
275 $tabindex_for_function = +
1000;
276 $tabindex_for_null = +
2000;
277 $tabindex_for_value = 0;
279 $biggest_max_file_size = 0;
280 foreach ($loop_array AS $vrowcount => $vrow) {
281 if ($vrow === FALSE) {
286 $jsvkey = $vrowcount;
287 $browse_foreigners_uri = '&pk=' . $vrowcount;
289 $jsvkey = urlencode($primary_keys[$vrowcount]);
290 $browse_foreigners_uri = '&pk=' . urlencode($primary_keys[$vrowcount]);
292 $vkey = '[multi_edit][' . $jsvkey . ']';
294 $vresult = (isset($result) && is_array($result) && isset($result[$vrowcount]) ?
$result[$vrowcount] : $result);
295 if ($insert_mode && $vrowcount > 0) {
296 echo '<input type="checkbox" checked="checked" name="insert_ignore_' . $vrowcount . '" id="insert_ignore_check_' . $vrowcount . '" />';
297 echo '<label for="insert_ignore_check_' . $vrowcount . '">' . $strIgnore . '</label><br />' . "\n";
302 <th
><?php
echo $strField; ?
></th
>
303 <th
><?php
echo $strType; ?
></th
>
305 if ($cfg['ShowFunctionFields']) {
306 echo ' <th>' . $strFunction . '</th>' . "\n";
309 <th
><?php
echo $strNull; ?
></th
>
310 <th
><?php
echo $strValue; ?
></th
>
314 // garvin: For looping on multiple rows, we need to reset any variable used inside the loop to indicate sth.
316 unset($first_timestamp);
318 // Sets a multiplier used for input-field counts (as zero cannot be used, advance the counter plus one)
319 $m_rows = $o_rows +
1;
322 for ($i = 0; $i < $fields_cnt; $i++
) {
323 // Display the submit button after every 15 lines --swix
324 // (wanted to use an <a href="#bottom"> and <a name> instead,
325 // but it didn't worked because of the <base href>)
327 if ((($o_rows * $fields_cnt +
$i) %
15 == 0) && ($i +
$o_rows != 0)) {
330 <th colspan
="5" align
="right" class="tblFooters">
331 <input type
="submit" value
="<?php echo $strGo; ?>" /> 
;
338 $row_table_def = $trow_table_def[$i];
339 $row_table_def['True_Type'] = preg_replace('@\(.*@s', '', $row_table_def['Type']);
341 $field = $row_table_def['Field'];
343 // removed previous PHP3-workaround that caused a problem with
344 // field names like '000'
349 // loic1: current date should not be set as default if the field is NULL
350 // for the current row
351 // lem9: but do not put here the current datetime if there is a default
352 // value (the real default value will be set in the
353 // Default value logic below)
355 // Note: (tested in MySQL 4.0.16): when lang is some UTF-8,
356 // $row_table_def['Default'] is not set if it contains NULL:
357 // Array ( [Field] => d [Type] => datetime [Null] => YES [Key] => [Extra] => [True_Type] => datetime )
358 // but, look what we get if we switch to iso: (Default is NULL)
359 // Array ( [Field] => d [Type] => datetime [Null] => YES [Key] => [Default] => [Extra] => [True_Type] => datetime )
360 // so I force a NULL into it (I don't think it's possible
361 // to have an empty default value for DATETIME)
362 // then, the "if" after this one will work
363 if ($row_table_def['Type'] == 'datetime'
364 && !isset($row_table_def['Default'])
365 && isset($row_table_def['Null'])
366 && $row_table_def['Null'] == 'YES') {
367 $row_table_def['Default'] = null;
370 if ($row_table_def['Type'] == 'datetime'
371 && (!isset($row_table_def['Default']))
372 && (!is_null($row_table_def['Default']))) {
376 $vrow[$rowfield] = date('Y-m-d H:i:s', time());
378 $vrow = array($rowfield => date('Y-m-d H:i:s', time()));
381 // UPDATE case with an empty and not NULL value under PHP4
382 elseif (empty($vrow[$rowfield]) && is_null($vrow[$rowfield])) {
383 $vrow[$rowfield] = date('Y-m-d H:i:s', time());
384 } // end if... elseif...
386 $len = (preg_match('@float|double@', $row_table_def['Type']))
388 : PMA_DBI_field_len($vresult, $i);
389 $first_timestamp = 0;
391 $field_name = htmlspecialchars($field);
392 if (isset($comments_map[$field])) {
393 $field_name = '<span style="border-bottom: 1px dashed black;" title="' . htmlspecialchars($comments_map[$field]) . '">' . $field_name . '</span>';
397 <tr
class="<?php echo $odd_row ? 'odd' : 'even'; ?>">
398 <td
<?php
echo ($cfg['LongtextDoubleTextarea'] && strstr($row_table_def['True_Type'], 'longtext') ?
'rowspan="2"' : ''); ?
> align
="center"><?php
echo $field_name; ?
></td
>
402 $is_binary = stristr($row_table_def['Type'], ' binary');
403 $is_blob = stristr($row_table_def['Type'], 'blob');
404 $is_char = stristr($row_table_def['Type'], 'char');
405 switch ($row_table_def['True_Type']) {
415 if (!$timestamp_seen) { // can only occur once per table
417 $first_timestamp = 1;
419 $type = $row_table_def['Type'];
420 $type_nowrap = ' nowrap="nowrap"';
424 $type = $row_table_def['Type'];
425 $type_nowrap = ' nowrap="nowrap"';
429 <td align
="center"<?php
echo $type_nowrap; ?
>>
435 // Prepares the field value
436 $real_null_value = FALSE;
438 if (!isset($vrow[$rowfield])
439 ||
(function_exists('is_null') && is_null($vrow[$rowfield]))) {
440 $real_null_value = TRUE;
441 $vrow[$rowfield] = '';
443 $data = $vrow[$rowfield];
445 // loic1: special binary "characters"
446 if ($is_binary ||
$is_blob) {
447 $vrow[$rowfield] = str_replace("\x00", '\0', $vrow[$rowfield]);
448 $vrow[$rowfield] = str_replace("\x08", '\b', $vrow[$rowfield]);
449 $vrow[$rowfield] = str_replace("\x0a", '\n', $vrow[$rowfield]);
450 $vrow[$rowfield] = str_replace("\x0d", '\r', $vrow[$rowfield]);
451 $vrow[$rowfield] = str_replace("\x1a", '\Z', $vrow[$rowfield]);
453 $special_chars = htmlspecialchars($vrow[$rowfield]);
454 $data = $vrow[$rowfield];
455 } // end if... else...
456 // loic1: if a timestamp field value is not included in an update
457 // statement MySQL auto-update it to the current timestamp
458 $backup_field = ($row_table_def['True_Type'] == 'timestamp')
460 : '<input type="hidden" name="fields_prev' . $vkey . '[' . urlencode($field) . ']" value="' . urlencode($vrow[$rowfield]) . '" />';
462 // loic1: display default values
463 if (!isset($row_table_def['Default'])) {
464 $row_table_def['Default'] = '';
465 $real_null_value = TRUE;
468 $data = $row_table_def['Default'];
470 $special_chars = htmlspecialchars($row_table_def['Default']);
474 $idindex = ($o_rows * $fields_cnt) +
$i +
1;
475 $tabindex = (($idindex - 1) * 3) +
1;
477 // The function column
478 // -------------------
479 // Change by Bernard M. Piller <bernard@bmpsystems.com>
480 // We don't want binary data to be destroyed
481 // Note: from the MySQL manual: "BINARY doesn't affect how the column is
482 // stored or retrieved" so it does not mean that the contents is
484 if ($cfg['ShowFunctionFields']) {
485 if (($cfg['ProtectBinary'] && $is_blob && !$is_upload)
486 ||
($cfg['ProtectBinary'] == 'all' && $is_binary)) {
487 echo ' <td align="center">' . $strBinary . '</td>' . "\n";
488 } elseif (strstr($row_table_def['True_Type'], 'enum') ||
strstr($row_table_def['True_Type'], 'set')) {
489 echo ' <td align="center">--</td>' . "\n";
493 <select name
="funcs<?php echo $vkey; ?>[<?php echo urlencode($field); ?>]" <?php
echo $chg_evt_handler; ?
>="return unNullify('<?php echo urlencode($field); ?>', '<?php echo $jsvkey; ?>')" tabindex
="<?php echo ($tabindex + $tabindex_for_function); ?>" id
="field_<?php echo $idindex; ?>_1">
498 // garvin: Find the current type in the RestrictColumnTypes. Will result in 'FUNC_CHAR'
499 // or something similar. Then directly look up the entry in the RestrictFunctions array,
500 // which will then reveal the available dropdown options
501 if (isset($cfg['RestrictFunctions']) && isset($cfg['RestrictColumnTypes']) && isset($cfg['RestrictColumnTypes'][strtoupper($row_table_def['True_Type'])]) && isset($cfg['RestrictFunctions'][$cfg['RestrictColumnTypes'][strtoupper($row_table_def['True_Type'])]])) {
502 $current_func_type = $cfg['RestrictColumnTypes'][strtoupper($row_table_def['True_Type'])];
503 $dropdown = $cfg['RestrictFunctions'][$current_func_type];
504 $default_function = $cfg['DefaultFunctions'][$current_func_type];
507 $default_function = '';
510 $dropdown_built = array();
511 $op_spacing_needed = FALSE;
512 // garvin: loop on the dropdown array and print all available options for that field.
513 $cnt_dropdown = count($dropdown);
514 for ($j = 0; $j < $cnt_dropdown; $j++
) {
515 // Is current function defined as default?
516 // For MySQL < 4.1.2, for the first timestamp we set as
517 // default function the one defined in config (which
518 // should be NOW() ).
519 // For MySQL >= 4.1.2, we don't set the default function
520 // if there is a default value for the timestamp
521 // (not including CURRENT_TIMESTAMP)
522 // and the column does not have the
523 // ON UPDATE DEFAULT TIMESTAMP attribute.
525 if (PMA_MYSQL_INT_VERSION
< 40102
526 ||
(PMA_MYSQL_INT_VERSION
>= 40102
527 && !($row_table_def['True_Type'] == 'timestamp' && !empty($row_table_def['Default']) && !isset($analyzed_sql[0]['create_table_fields'][$field]['on_update_current_timestamp'])))) {
528 $selected = ($first_timestamp && $dropdown[$j] == $cfg['DefaultFunctions']['first_timestamp'])
529 ||
(!$first_timestamp && $dropdown[$j] == $default_function)
530 ?
' selected="selected"'
534 echo '<option' . $selected . '>' . $dropdown[$j] . '</option>' . "\n";
535 $dropdown_built[$dropdown[$j]] = 'TRUE';
536 $op_spacing_needed = TRUE;
539 // garvin: For compatibility's sake, do not let out all other functions. Instead
540 // print a separator (blank) and then show ALL functions which weren't shown
542 $cnt_functions = count($cfg['Functions']);
543 for ($j = 0; $j < $cnt_functions; $j++
) {
544 if (!isset($dropdown_built[$cfg['Functions'][$j]]) ||
$dropdown_built[$cfg['Functions'][$j]] != 'TRUE') {
545 // Is current function defined as default?
546 $selected = ($first_timestamp && $cfg['Functions'][$j] == $cfg['DefaultFunctions']['first_timestamp'])
547 ||
(!$first_timestamp && $cfg['Functions'][$j] == $default_function)
548 ?
' selected="selected"'
550 if ($op_spacing_needed == TRUE) {
552 echo '<option value="">--------</option>' . "\n";
553 $op_spacing_needed = FALSE;
557 echo '<option' . $selected . '>' . $cfg['Functions'][$j] . '</option>' . "\n";
566 } // end if ($cfg['ShowFunctionFields'])
572 if ($row_table_def['Null'] == 'YES') {
573 echo ' <input type="hidden" name="fields_null_prev' . $vkey . '[' . urlencode($field) . ']"';
574 if ($real_null_value && !$first_timestamp) {
579 if (!(($cfg['ProtectBinary'] && $is_blob) ||
($cfg['ProtectBinary'] == 'all' && $is_binary)) ) {
581 echo ' <input type="checkbox" tabindex="' . ($tabindex +
$tabindex_for_null) . '"'
582 . ' name="fields_null' . $vkey . '[' . urlencode($field) . ']"';
583 if ($real_null_value && !$first_timestamp) {
584 echo ' checked="checked"';
586 echo ' id="field_' . ($idindex) . '_2"';
587 $onclick = ' onclick="if (this.checked) {nullify(';
588 if (strstr($row_table_def['True_Type'], 'enum')) {
589 if (strlen($row_table_def['Type']) > 20) {
594 } elseif (strstr($row_table_def['True_Type'], 'set')) {
596 } elseif ($foreigners && isset($foreigners[$field])) {
601 $onclick .= '\'' . urlencode($field) . '\', \'' . md5($field) . '\', \'' . $vkey . '\'); this.checked = true}; return true" />' . "\n";
604 echo ' <input type="hidden" name="fields_null' . $vkey . '[' . urlencode($field) . ']"';
605 if ($real_null_value && !$first_timestamp) {
611 echo ' </td>' . "\n";
613 // The value column (depends on type)
616 require './libraries/get_foreign.lib.php';
618 if (isset($foreign_link) && $foreign_link == true) {
621 <?php
echo $backup_field . "\n"; ?
>
622 <input type
="hidden" name
="fields_type<?php echo $vkey; ?>[<?php echo urlencode($field); ?>]" value
="foreign" />
623 <input type
="hidden" name
="fields<?php echo $vkey; ?>[<?php echo urlencode($field); ?>]" value
="" id
="field_<?php echo ($idindex); ?>_1" />
624 <input type
="text" name
="field_<?php echo md5($field); ?><?php echo $vkey; ?>[]" class="textfield" <?php
echo $chg_evt_handler; ?
>="return unNullify('<?php echo urlencode($field); ?>', '<?php echo $jsvkey; ?>')" tabindex
="<?php echo ($tabindex + $tabindex_for_value); ?>" id
="field_<?php echo ($idindex); ?>_3" value
="<?php echo htmlspecialchars($data); ?>" />
625 <script type
="text/javascript" language
="javascript">
627 document
.writeln('<a target="_blank" onclick="window.open(this.href, \'foreigners\', \'width=640,height=240,scrollbars=yes,resizable=yes\'); return false" href="browse_foreigners.php?<?php echo PMA_generate_common_url($db, $table); ?>&field=<?php echo urlencode($field) . $browse_foreigners_uri; ?>"><?php echo str_replace("'", "\'
", $titles['Browse']); ?></a>');
632 } elseif (isset($disp_row) && is_array($disp_row)) {
635 <?php echo $backup_field . "\n
"; ?>
636 <input type="hidden
" name="fields_type
<?php
echo $vkey; ?
>[<?php
echo urlencode($field); ?
>]" value="foreign
" />
637 <input type="hidden
" name="fields
<?php
echo $vkey; ?
>[<?php
echo urlencode($field); ?
>]" value="" id="field_
<?php
echo $idindex; ?
>_1
" />
638 <select name="field_
<?php
echo md5($field); ?
><?php
echo $vkey; ?
>[]" <?php echo $chg_evt_handler; ?>="return unNullify('<?php echo urlencode($field); ?>', '<?php echo $jsvkey; ?>')" tabindex="<?php
echo ($tabindex +
$tabindex_for_value); ?
>" id="field_
<?php
echo ($idindex); ?
>_3
">
639 <?php echo PMA_foreignDropdown($disp_row, $foreign_field, $foreign_display, $data, $cfg['ForeignKeyMaxLimit']); ?>
644 } elseif ($cfg['LongtextDoubleTextarea'] && strstr($type, 'longtext')) {
648 <tr class="<?php
echo $odd_row ?
'odd' : 'even'; ?
>">
649 <td colspan="5" align="right
">
650 <?php echo $backup_field . "\n
"; ?>
651 <textarea name="fields
<?php
echo $vkey; ?
>[<?php
echo urlencode($field); ?
>]" rows="<?php
echo ($cfg['TextareaRows']*2); ?
>" cols="<?php
echo ($cfg['TextareaCols']*2); ?
>" dir="<?php
echo $text_dir; ?
>" id="field_
<?php
echo ($idindex); ?
>_3
"
652 <?php echo $chg_evt_handler; ?>="return unNullify('<?php echo urlencode($field); ?>', '<?php echo $jsvkey; ?>')" tabindex="<?php
echo ($tabindex +
$tabindex_for_value); ?
>"><?php echo $special_chars; ?></textarea>
655 } elseif (strstr($type, 'text')) {
658 <?php echo $backup_field . "\n
"; ?>
659 <textarea name="fields
<?php
echo $vkey; ?
>[<?php
echo urlencode($field); ?
>]" rows="<?php
echo $cfg['TextareaRows']; ?
>" cols="<?php
echo $cfg['TextareaCols']; ?
>" dir="<?php
echo $text_dir; ?
>" id="field_
<?php
echo ($idindex); ?
>_3
"
660 <?php echo $chg_evt_handler; ?>="return unNullify('<?php echo urlencode($field); ?>', '<?php echo $jsvkey; ?>')" tabindex="<?php
echo ($tabindex +
$tabindex_for_value); ?
>"><?php echo $special_chars; ?></textarea>
664 if (strlen($special_chars) > 32000) {
665 echo ' <td>' . $strTextAreaLength . '</td>' . "\n
";
667 } elseif ($type == 'enum') {
668 $enum = PMA_getEnumSetOptions($row_table_def['Type']);
669 $enum_cnt = count($enum);
672 <input type="hidden
" name="fields_type
<?php
echo $vkey; ?
>[<?php
echo urlencode($field); ?
>]" value="enum
" />
673 <input type="hidden
" name="fields
<?php
echo $vkey; ?
>[<?php
echo urlencode($field); ?
>]" value="" />
675 echo "\n
" . ' ' . $backup_field;
677 // show dropdown or radio depend on length
678 if (strlen($row_table_def['Type']) > 20) {
681 <select name="field_
<?php
echo md5($field); ?
><?php
echo $vkey; ?
>[]" <?php echo $chg_evt_handler; ?>="return unNullify('<?php echo urlencode($field); ?>', '<?php echo $jsvkey; ?>')" tabindex="<?php
echo ($tabindex +
$tabindex_for_value); ?
>" id="field_
<?php
echo ($idindex); ?
>_3
">
682 <option value=""></option>
686 for ($j = 0; $j < $enum_cnt; $j++) {
687 // Removes automatic MySQL escape format
688 $enum_atom = str_replace('\'\'', '\'', str_replace('\\\\', '\\', $enum[$j]));
690 //echo '<option value="' . htmlspecialchars($enum_atom) . '"';
691 echo '<option value="' . urlencode($enum_atom) . '"';
692 if ($data == $enum_atom
693 || ($data == '' && (!isset($primary_key) || $row_table_def['Null'] != 'YES')
694 && isset($row_table_def['Default']) && $enum_atom == $row_table_def['Default'])) {
695 echo ' selected="selected
"';
697 echo '>' . htmlspecialchars($enum_atom) . '</option>' . "\n
";
705 for ($j = 0; $j < $enum_cnt; $j++) {
706 // Removes automatic MySQL escape format
707 $enum_atom = str_replace('\'\'', '\'', str_replace('\\\\', '\\', $enum[$j]));
709 echo '<input type="radio
" name="field_
' . md5($field) . $vkey . '[]" value="' . urlencode($enum_atom) . '" id="field_
' . ($idindex) . '_3_
' . $j . '" onclick="if (typeof(document
.forms
[\'insertForm\'
].elements
[\'fields_null
' . str_replace('"', '\"', $vkey) . '[' . urlencode($field) . ']\']) != \'undefined\') {document.forms[\'insertForm\'].elements[\'fields_null' . str_replace('"', '\"
', $vkey) . '[' . urlencode($field) .']\'].checked
= false}"';
710 if ($data == $enum_atom
711 || ($data == '' && (!isset($primary_key) || $row_table_def['Null'] != 'YES')
712 && isset($row_table_def['Default']) && $enum_atom == $row_table_def['Default'])) {
713 echo ' checked="checked
"';
715 echo 'tabindex="' . ($tabindex + $tabindex_for_value) . '" />';
716 echo '<label for="field_
' . $idindex . '_3_
' . $j . '">' . htmlspecialchars($enum_atom) . '</label>' . "\n
";
725 } elseif ($type == 'set') {
726 $set = PMA_getEnumSetOptions($row_table_def['Type']);
731 for ($vals = explode(',', $data); list($t, $k) = each($vals);) {
734 $countset = count($set);
735 $size = min(4, $countset);
738 <?php echo $backup_field . "\n
"; ?>
739 <input type="hidden
" name="fields_type
<?php
echo $vkey; ?
>[<?php
echo urlencode($field); ?
>]" value="set
" />
740 <input type="hidden
" name="fields
<?php
echo $vkey; ?
>[<?php
echo urlencode($field); ?
>]" value="" />
741 <select name="field_
<?php
echo md5($field); ?
><?php
echo $vkey; ?
>[]" size="<?php
echo $size; ?
>" multiple="multiple
" <?php echo $chg_evt_handler; ?>="return unNullify('<?php echo urlencode($field); ?>', '<?php echo $jsvkey; ?>')" tabindex="<?php
echo ($tabindex +
$tabindex_for_value); ?
>" id="field_
<?php
echo ($idindex); ?
>_3
">
744 for ($j = 0; $j < $countset; $j++) {
746 //echo '<option value="'. htmlspecialchars($set[$j]) . '"';
747 echo '<option value="'. urlencode($set[$j]) . '"';
748 if (isset($vset[$set[$j]]) && $vset[$set[$j]]) {
749 echo ' selected="selected
"';
751 echo '>' . htmlspecialchars($set[$j]) . '</option>' . "\n
";
758 // Change by Bernard M. Piller <bernard@bmpsystems.com>
759 // We don't want binary data destroyed
760 elseif ($is_binary || $is_blob) {
761 if (($cfg['ProtectBinary'] && $is_blob)
762 || ($cfg['ProtectBinary'] == 'all' && $is_binary)) {
767 echo $strBinaryDoNotEdit;
769 $data_size = PMA_formatByteDown(strlen(stripslashes($data)), 3, 1);
770 echo ' ('. $data_size [0] . ' ' . $data_size[1] . ')';
775 <input type="hidden
" name="fields_type
<?php
echo $vkey; ?
>[<?php
echo urlencode($field); ?
>]" value="protected" />
776 <input type="hidden
" name="fields
<?php
echo $vkey; ?
>[<?php
echo urlencode($field); ?
>]" value="" />
778 } elseif ($is_blob) {
782 <?php echo $backup_field . "\n
"; ?>
783 <textarea name="fields
<?php
echo $vkey; ?
>[<?php
echo urlencode($field); ?
>]" rows="<?php
echo $cfg['TextareaRows']; ?
>" cols="<?php
echo $cfg['TextareaCols']; ?
>" dir="<?php
echo $text_dir; ?
>" id="field_
<?php
echo ($idindex); ?
>_3
"
784 <?php echo $chg_evt_handler; ?>="return unNullify('<?php echo urlencode($field); ?>', '<?php echo $jsvkey; ?>')" tabindex="<?php
echo ($tabindex +
$tabindex_for_value); ?
>" ><?php echo $special_chars; ?></textarea>
789 $fieldsize = $maxlength = 4;
791 $fieldsize = (($len > 40) ? 40 : $len);
797 <?php echo $backup_field . "\n
"; ?>
798 <input type="text
" name="fields
<?php
echo $vkey; ?
>[<?php
echo urlencode($field); ?
>]" value="<?php
echo $special_chars; ?
>" size="<?php
echo $fieldsize; ?
>" maxlength="<?php
echo $maxlength; ?
>" class="textfield
" <?php echo $chg_evt_handler; ?>="return unNullify('<?php echo urlencode($field); ?>', '<?php echo $jsvkey; ?>')" tabindex="<?php
echo ($tabindex +
$tabindex_for_value); ?
>" id="field_
<?php
echo ($idindex); ?
>_3
" />
800 } // end if...elseif...else
802 // Upload choice (only for BLOBs because the binary
803 // attribute does not imply binary contents)
804 // (displayed whatever value the ProtectBinary has)
806 if ($is_upload && $is_blob) {
808 echo '<input type="file
" name="fields_upload_
' . urlencode($field) . $vkey . '" class="textfield
" id="field_
' . ($idindex) . '_3
" size="10" /> ';
810 // find maximum upload size, based on field type
811 // FIXME: with functions this is not so easy, as you can basically process any data with function like MD5
812 $max_field_sizes = array(
815 'mediumblob' => '16777216',
816 'longblob' => '4294967296'); // yeah, really
818 $this_field_max_size = $max_upload_size; // from PHP max
819 if ($this_field_max_size > $max_field_sizes[$type]) {
820 $this_field_max_size = $max_field_sizes[$type];
822 echo PMA_displayMaximumUploadSize($this_field_max_size) . "\n
";
823 // do not generate here the MAX_FILE_SIZE, because we should
824 // put only one in the form to accommodate the biggest field
825 if ($this_field_max_size > $biggest_max_file_size) {
826 $biggest_max_file_size = $this_field_max_size;
830 if (!empty($cfg['UploadDir'])) {
831 $files = PMA_getFileSelectOptions(PMA_userDir($cfg['UploadDir']));
832 if ($files === FALSE) {
833 echo ' <font color="red
">' . $strError . '</font><br />' . "\n
";
834 echo ' ' . $strWebServerUploadDirectoryError . "\n
";
835 } elseif (!empty($files)) {
837 echo ' <i>' . $strOr . '</i>' . ' ' . $strWebServerUploadDirectory . ':<br />' . "\n
";
838 echo ' <select size="1" name="fields_uploadlocal_
' . urlencode($field) . $vkey . '">' . "\n
";
839 echo ' <option value="" selected="selected
"></option>' . "\n
";
841 echo ' </select>' . "\n
";
843 } // end if (web-server upload directory)
847 } // end elseif ( binary or blob)
849 // For char or varchar, respect the maximum length (M); for other
850 // types (int or float), the length is not a limit on the values that
851 // can be entered, so let's be generous (20) (we could also use the
852 // real limits for each numeric type)
853 // 2004-04-07, it turned out that 20 was not generous enough
856 $fieldsize = (($len > 40) ? 40 : $len);
861 } // end if... else...
864 <?php echo $backup_field . "\n
"; ?>
866 if ($is_char && isset($cfg['CharEditing']) && ($cfg['CharEditing'] == 'textarea')) {
869 <textarea name="fields
<?php
echo $vkey; ?
>[<?php
echo urlencode($field); ?
>]" rows="<?php
echo $cfg['CharTextareaRows']; ?
>" cols="<?php
echo $cfg['CharTextareaCols']; ?
>" dir="<?php
echo $text_dir; ?
>" id="field_
<?php
echo ($idindex); ?
>_3
"
870 <?php echo $chg_evt_handler; ?>="return unNullify('<?php echo urlencode($field); ?>', '<?php echo $jsvkey; ?>')" tabindex="<?php
echo ($tabindex +
$tabindex_for_value); ?
>" ><?php echo $special_chars; ?></textarea>
874 <input type="text
" name="fields
<?php
echo $vkey; ?
>[<?php
echo urlencode($field); ?
>]" value="<?php
echo $special_chars; ?
>" size="<?php
echo $fieldsize; ?
>" maxlength="<?php
echo $maxlength; ?
>" class="textfield
" <?php echo $chg_evt_handler; ?>="return unNullify('<?php echo urlencode($field); ?>', '<?php echo $jsvkey; ?>')" tabindex="<?php
echo ($tabindex +
$tabindex_for_value); ?
>" id="field_
<?php
echo ($idindex); ?
>_3
" />
876 if ($row_table_def['Extra'] == 'auto_increment') {
878 <input type="hidden
" name="auto_increment
<?php
echo $vkey; ?
>[<?php
echo urlencode($field); ?
>]" value="1" />
881 if (substr($type, 0, 9) == 'timestamp') {
883 <input type="hidden
" name="fields_type
<?php
echo $vkey; ?
>[<?php
echo urlencode($field); ?
>]" value="timestamp
" />
886 if ($type == 'date' || $type == 'datetime' || substr($type, 0, 9) == 'timestamp') {
888 <script type="text
/javascript
" language="javascript
">
890 document.write('<a title="<?php
echo $strCalendar;?
>" href="javascript
:openCalendar(\'<?php
echo PMA_generate_common_url();?
>\', \'insertForm\'
, \'field_
<?php
echo ($idindex); ?
>_3\'
, \'<?php
echo (PMA_MYSQL_INT_VERSION
>= 40100 && substr($type, 0, 9) == 'timestamp') ?
'datetime' : substr($type, 0, 9); ?
>\')"><img class="calendar
" src="<?php
echo $pmaThemeImage; ?
>b_calendar
.png
" alt="<?php
echo $strCalendar; ?
>"/></a>');
903 $odd_row = !$odd_row;
906 echo ' </table><br />';
907 } // end foreach on multi-edit
911 <table border="0" cellpadding="5" cellspacing="0">
913 <td valign="middle
" nowrap="nowrap
">
914 <select name="submit_type
" tabindex="<?php
echo ($tabindex +
$tabindex_for_value +
1); ?
>">
916 if (isset($primary_key)) {
918 <option value="<?php
echo $strSave; ?
>"><?php echo $strSave; ?></option>
922 <option value="<?php
echo $strInsertAsNewRow; ?
>"><?php echo $strInsertAsNewRow; ?></option>
927 if (!isset($after_insert)) {
928 $after_insert = 'back';
933 <b><?php echo $strAndThen; ?></b>
935 <td valign="middle
" nowrap="nowrap
">
936 <select name="after_insert
">
937 <option value="back
" <?php echo ($after_insert == 'back' ? 'selected="selected
"' : ''); ?>><?php echo $strAfterInsertBack; ?></option>
938 <option value="new_insert
" <?php echo ($after_insert == 'new_insert' ? 'selected="selected
"' : ''); ?>><?php echo $strAfterInsertNewInsert; ?></option>
940 if (isset($primary_key)) {
942 <option value="same_insert
" <?php echo ($after_insert == 'same_insert' ? 'selected="selected
"' : ''); ?>><?php echo $strAfterInsertSame; ?></option>
944 // If we have just numeric primary key, we can also edit next
945 // in 2.8.2, we were looking for `field_name` = numeric_value
946 //if (preg_match('@^[\s]*`[^`]*` = [0-9]+@', $primary_key)) {
947 // in 2.9.0, we are looking for `table_name`.`field_name` = numeric_value
948 if (preg_match('@^[\s]*`[^`]*`[\.]`[^`]*` = [0-9]+@', $primary_key)) {
950 <option value="edit_next
"><?php echo $strAfterInsertNext; ?></option>
961 <?php echo PMA_showHint($strUseTabKey); ?>
963 <td colspan="3" align="right
" valign="middle
">
964 <input type="submit
" value="<?php
echo $strGo; ?
>" tabindex="<?php
echo ($tabindex +
$tabindex_for_value +
6); ?
>" id="buttonYes
" />
965 <input type="reset
" value="<?php
echo $strReset; ?
>" tabindex="<?php
echo ($tabindex +
$tabindex_for_value +
7); ?
>" />
969 <?php if ($biggest_max_file_size > 0) {
970 echo ' ' . PMA_generateHiddenMaxFileSize($biggest_max_file_size) . "\n
";
977 * Displays the footer
979 require_once './libraries/footer.inc.php';