<?php // here we put 'NONE' as the default value of drop-down; otherwise // users would have problems if they forget to enter the default // value (example, for an INT) $default_options = array( 'NONE' => _pgettext('for default', 'None'), 'USER_DEFINED' => __('As defined:'), 'NULL' => 'NULL', 'CURRENT_TIMESTAMP' => 'CURRENT_TIMESTAMP', ); // for a TIMESTAMP, do not show the string "CURRENT_TIMESTAMP" as a default // value $defaultValue = ''; if (isset($columnMeta['DefaultValue'])) { $defaultValue = $columnMeta['DefaultValue']; } if ($type_upper == 'BIT') { $defaultValue = PMA\libraries\Util::convertBitDefaultValue($columnMeta['DefaultValue']); } elseif ($type_upper == 'BINARY' || $type_upper == 'VARBINARY') { $defaultValue = bin2hex($columnMeta['DefaultValue']); } ?> <select name="field_default_type[<?= $columnNumber; ?>]" id="field_<?= $columnNumber; ?>_<?=($ci - $ci_offset); ?>" class="default_type"> <?php foreach ($default_options as $key => $value): ?> <option value="<?= $key; ?>" <?php if (isset($columnMeta['DefaultType']) && $columnMeta['DefaultType'] == $key): ?> selected="selected" <?php endif; ?>> <?= $value; ?> </option> <?php endforeach; ?> </select> <br /> <?php if ($GLOBALS['cfg']['CharEditing'] == 'textarea'): ?> <textarea name="field_default_value[<?= $columnNumber; ?>]" cols="15" class="textfield default_value"> <?= htmlspecialchars($defaultValue); ?> </textarea> <?php else: ?> <input type="text" name="field_default_value[<?= $columnNumber; ?>]" size="12" value="<?= htmlspecialchars($defaultValue); ?>" class="textfield default_value" /> <?php endif; ?>
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
column_adjust_privileges.phtml | File | 716 B | 0644 |
|
column_attribute.phtml | File | 1.01 KB | 0644 |
|
column_attributes.phtml | File | 8.34 KB | 0644 |
|
column_auto_increment.phtml | File | 350 B | 0644 |
|
column_comment.phtml | File | 485 B | 0644 |
|
column_default.phtml | File | 1.82 KB | 0644 |
|
column_definitions_form.phtml | File | 6.59 KB | 0644 |
|
column_extra.phtml | File | 316 B | 0644 |
|
column_indexes.phtml | File | 1.32 KB | 0644 |
|
column_length.phtml | File | 458 B | 0644 |
|
column_name.phtml | File | 1.46 KB | 0644 |
|
column_null.phtml | File | 356 B | 0644 |
|
column_type.phtml | File | 390 B | 0644 |
|
column_virtuality.phtml | File | 1.43 KB | 0644 |
|
mime_type.phtml | File | 897 B | 0644 |
|
move_column.phtml | File | 774 B | 0644 |
|
partitions.phtml | File | 8.25 KB | 0644 |
|
table_fields_definitions.phtml | File | 4.91 KB | 0644 |
|
transformation.phtml | File | 1.4 KB | 0644 |
|
transformation_option.phtml | File | 471 B | 0644 |
|