Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Čihař <michal@cihar.com>2008-11-24 14:22:44 +0300
committerMichal Čihař <michal@cihar.com>2008-11-24 14:22:44 +0300
commit84ae0420feb00ff769279f6a12fbae2de14f270d (patch)
tree0a9441ecff82412745ca748a771e053b3c35a3f7 /tbl_addfield.php
parent2f457eebbd0387b84a3622246747929609270ef8 (diff)
Adding @package, third part.
Diffstat (limited to 'tbl_addfield.php')
-rw-r--r--tbl_addfield.php33
1 files changed, 17 insertions, 16 deletions
diff --git a/tbl_addfield.php b/tbl_addfield.php
index 8d0e998ee8..e0a8122e32 100644
--- a/tbl_addfield.php
+++ b/tbl_addfield.php
@@ -3,6 +3,7 @@
/**
*
* @version $Id$
+ * @package phpMyAdmin
*/
/**
@@ -67,7 +68,7 @@ if (isset($_REQUEST['do_save_data'])) {
}
} // end if
} // end for
-
+
// Builds the field creation statement and alters the table
for ($i = 0; $i < $field_cnt; ++$i) {
// '0' is also empty for php :-(
@@ -76,23 +77,23 @@ if (isset($_REQUEST['do_save_data'])) {
}
$definition = ' ADD ' . PMA_Table::generateFieldSpec(
- $_REQUEST['field_name'][$i],
+ $_REQUEST['field_name'][$i],
$_REQUEST['field_type'][$i],
- $_REQUEST['field_length'][$i],
+ $_REQUEST['field_length'][$i],
$_REQUEST['field_attribute'][$i],
- isset($_REQUEST['field_collation'][$i])
- ? $_REQUEST['field_collation'][$i]
+ isset($_REQUEST['field_collation'][$i])
+ ? $_REQUEST['field_collation'][$i]
: '',
- isset($_REQUEST['field_null'][$i])
- ? $_REQUEST['field_null'][$i]
+ isset($_REQUEST['field_null'][$i])
+ ? $_REQUEST['field_null'][$i]
: 'NOT NULL',
- $_REQUEST['field_default_type'][$i],
+ $_REQUEST['field_default_type'][$i],
$_REQUEST['field_default_value'][$i],
isset($_REQUEST['field_extra'][$i])
? $_REQUEST['field_extra'][$i]
: false,
- isset($_REQUEST['field_comments'][$i])
- ? $_REQUEST['field_comments'][$i]
+ isset($_REQUEST['field_comments'][$i])
+ ? $_REQUEST['field_comments'][$i]
: '',
$field_primary,
$i
@@ -121,7 +122,7 @@ if (isset($_REQUEST['do_save_data'])) {
}
$definitions[] = ' ADD PRIMARY KEY (' . implode(', ', $fields) . ') ';
}
-
+
// Builds the indexes statements and updates the table
if (count($field_index)) {
$fields = array();
@@ -130,7 +131,7 @@ if (isset($_REQUEST['do_save_data'])) {
}
$definitions[] = ' ADD INDEX (' . implode(', ', $fields) . ') ';
}
-
+
// Builds the uniques statements and updates the table
if (count($field_unique)) {
$fields = array();
@@ -167,10 +168,10 @@ if (isset($_REQUEST['do_save_data'])) {
foreach ($_REQUEST['field_mimetype'] as $fieldindex => $mimetype) {
if (isset($_REQUEST['field_name'][$fieldindex])
&& strlen($_REQUEST['field_name'][$fieldindex])) {
- PMA_setMIME($db, $table,
- $_REQUEST['field_name'][$fieldindex],
- $mimetype,
- $_REQUEST['field_transformation'][$fieldindex],
+ PMA_setMIME($db, $table,
+ $_REQUEST['field_name'][$fieldindex],
+ $mimetype,
+ $_REQUEST['field_transformation'][$fieldindex],
$_REQUEST['field_transformation_options'][$fieldindex]);
}
}