3 // vim: expandtab sw=4 ts=4 sts=4:
5 require_once './libraries/common.lib.php';
6 require_once './libraries/Table.class.php';
8 $pma_table = new PMA_Table($GLOBALS['table'], $GLOBALS['db']);
13 require './libraries/tbl_properties_common.php';
14 $url_query .= '&goto=tbl_properties_operations.php&back=tbl_properties_operations.php';
15 $url_params['goto'] = $url_params['back'] = 'tbl_properties_operations.php';
18 * Gets relation settings
20 require_once './libraries/relation.lib.php';
21 $cfgRelation = PMA_getRelationsParam();
24 * Gets available MySQL charsets and storage engines
26 require_once './libraries/mysql_charsets.lib.php';
27 require_once './libraries/storage_engines.lib.php';
29 // reselect current db (needed in some cases probably due to
30 // the calling of relation.lib.php)
31 PMA_DBI_select_db($GLOBALS['db']);
34 * Gets tables informations
37 require './libraries/tbl_properties_table_info.inc.php';
41 $table_alters = array();
44 * Updates table comment, type and options if required
46 if (isset($_REQUEST['submitoptions'])) {
48 if (isset($_REQUEST['new_name'])) {
49 if ($pma_table->rename($_REQUEST['new_name'])) {
50 $message .= $pma_table->getLastMessage();
51 $GLOBALS['table'] = $pma_table->getName();;
55 $errors[] = $pma_table->getLastError();
56 $message .= $pma_table->getLastError();
59 if (isset($_REQUEST['comment'])
60 && urldecode($_REQUEST['prev_comment']) !== $_REQUEST['comment']) {
61 $table_alters[] = 'COMMENT = \'' . PMA_sqlAddslashes($_REQUEST['comment']) . '\'';
63 if (! empty($_REQUEST['new_tbl_type'])
64 && strtolower($_REQUEST['new_tbl_type']) !== strtolower($tbl_type)) {
65 $table_alters[] = PMA_ENGINE_KEYWORD
. ' = ' . $_REQUEST['new_tbl_type'];
66 $tbl_type = $_REQUEST['new_tbl_type'];
69 if (! empty($_REQUEST['tbl_collation'])
70 && $_REQUEST['tbl_collation'] !== $tbl_collation) {
71 $table_alters[] = 'DEFAULT ' . PMA_generateCharsetQueryPart($_REQUEST['tbl_collation']);
74 $l_tbl_type = strtolower($tbl_type);
76 if (($l_tbl_type === 'myisam' ||
$l_tbl_type === 'isam')
77 && isset($_REQUEST['new_pack_keys'])
78 && $_REQUEST['new_pack_keys'] != (string)$pack_keys) {
79 $table_alters[] = 'pack_keys = ' . $_REQUEST['new_pack_keys'];
82 $checksum = empty($checksum) ?
'0' : '1';
83 $_REQUEST['new_checksum'] = empty($_REQUEST['new_checksum']) ?
'0' : '1';
84 if (($l_tbl_type === 'myisam')
85 && $_REQUEST['new_checksum'] !== $checksum) {
86 $table_alters[] = 'checksum = ' . $_REQUEST['new_checksum'];
89 $delay_key_write = empty($delay_key_write) ?
'0' : '1';
90 $_REQUEST['new_delay_key_write'] = empty($_REQUEST['new_delay_key_write']) ?
'0' : '1';
91 if (($l_tbl_type === 'myisam')
92 && $_REQUEST['new_delay_key_write'] !== $delay_key_write) {
93 $table_alters[] = 'delay_key_write = ' . $_REQUEST['new_delay_key_write'];
96 if (($l_tbl_type === 'myisam' ||
$l_tbl_type === 'innodb')
97 && ! empty($_REQUEST['new_auto_increment'])
98 && (! isset($auto_increment) ||
$_REQUEST['new_auto_increment'] !== $auto_increment)) {
99 $table_alters[] = 'auto_increment = ' . PMA_sqlAddslashes($_REQUEST['new_auto_increment']);
102 if (count($table_alters) > 0) {
103 $sql_query = 'ALTER TABLE ' . PMA_backquote($GLOBALS['table']);
104 $sql_query .= "\r\n" . implode("\r\n", $table_alters);
105 $message .= PMA_DBI_query($sql_query) ?
$strSuccess : $strError;
107 unset($table_alters);
111 * Reordering the table has been requested by the user
113 if (isset($_REQUEST['submitorderby']) && ! empty($_REQUEST['order_field'])) {
115 ALTER TABLE ' . PMA_backquote($GLOBALS['table']) . '
116 ORDER BY ' . PMA_backquote(urldecode($_REQUEST['order_field']));
117 if (isset($_REQUEST['order_order']) && $_REQUEST['order_order'] === 'desc') {
118 $sql_query .= ' DESC';
120 $message = PMA_DBI_query($sql_query) ?
$strSuccess : $strError;
125 $checksum = $delay_key_write = 0;
126 require './libraries/tbl_properties_table_info.inc.php';
131 * Displays top menu links
133 require_once './libraries/tbl_properties_links.inc.php';
135 $url_params['goto'] = 'tbl_properties_operations.php';
136 $url_params['back'] = 'tbl_properties_operations.php';
143 FROM ' . PMA_backquote($GLOBALS['table']) . '
144 FROM ' . PMA_backquote($GLOBALS['db']);
145 $columns = PMA_DBI_fetch_result($local_query, null, 'Field');
152 <!-- Order the table
-->
153 <div id
="div_table_order">
154 <form method
="post" action
="tbl_properties_operations.php">
155 <?php
echo PMA_generate_common_hidden_inputs($GLOBALS['db'], $GLOBALS['table']); ?
>
156 <fieldset id
="fieldset_table_order">
157 <legend
><?php
echo $strAlterOrderBy; ?
></legend
>
158 <select name
="order_field">
160 foreach ($columns as $fieldname) {
161 echo ' <option value="' . htmlspecialchars($fieldname) . '">'
162 . htmlspecialchars($fieldname) . '</option>' . "\n";
166 </select
> <?php
echo $strSingly; ?
>
167 <select name
="order_order">
168 <option value
="asc"><?php
echo $strAscending; ?
></option
>
169 <option value
="desc"><?php
echo $strDescending; ?
></option
>
171 <input type
="submit" name
="submitorderby" value
="<?php echo $strGo; ?>" />
177 <div id
="div_table_rename">
178 <form method
="post" action
="tbl_move_copy.php"
179 onsubmit
="return emptyFormElements(this, 'new_name')">
180 <?php
echo PMA_generate_common_hidden_inputs($GLOBALS['db'], $GLOBALS['table']); ?
>
181 <input type
="hidden" name
="reload" value
="1" />
182 <input type
="hidden" name
="what" value
="data" />
183 <fieldset id
="fieldset_table_rename">
184 <legend
><?php
echo $strMoveTable; ?
></legend
>
185 <select name
="target_db">
187 // The function used below is defined in "common.lib.php"
188 PMA_availableDatabases('main.php?' . PMA_generate_common_url());
189 foreach ($dblist as $each_db) {
191 echo '<option value="' . htmlspecialchars($each_db) . '">'
192 . htmlspecialchars($each_db) . '</option>';
194 } // end foreach $dblist
198 <input type
="text" size
="20" name
="new_name" onfocus
="this.select()"
199 value
="<?php echo htmlspecialchars($GLOBALS['table']); ?>" /><br
/>
201 // starting with MySQL 5.0.24, SHOW CREATE TABLE includes the AUTO_INCREMENT
202 // next value but users can decide if they want it or not for the operation
204 <input type
="checkbox" name
="sql_auto_increment" value
="1" id
="checkbox_auto_increment" checked
="checked" />
205 <label
for="checkbox_auto_increment"><?php
echo $strAddAutoIncrement; ?
></label
><br
/>
207 <fieldset
class="tblFooters">
208 <input type
="submit" name
="submit_move" value
="<?php echo $strGo; ?>" />
214 if (strstr($show_comment, '; InnoDB free') === false) {
215 if (strstr($show_comment, 'InnoDB free') === false) {
216 // only user entered comment
217 $comment = $show_comment;
219 // here we have just InnoDB generated part
223 // remove InnoDB comment from end, just the minimal part (*? is non greedy)
224 $comment = preg_replace('@; InnoDB free:.*?$@', '', $show_comment);
227 // PACK_KEYS: MyISAM or ISAM
228 // DELAY_KEY_WRITE, CHECKSUM, : MyISAM only
229 // AUTO_INCREMENT: MyISAM and InnoDB since 5.0.3
231 // nijel: Here should be version check for InnoDB, however it is supported
232 // in >5.0.4, >4.1.12 and >4.0.11, so I decided not to
236 <!-- Table options
-->
237 <div id
="div_table_options">
238 <form method
="post" action
="tbl_properties_operations.php">
239 <?php
echo PMA_generate_common_hidden_inputs($GLOBALS['db'], $GLOBALS['table']); ?
>
240 <input type
="hidden" name
="reload" value
="1" />
242 <legend
><?php
echo $strTableOptions; ?
></legend
>
245 <!-- Change table name
-->
246 <tr
><td
><?php
echo $strRenameTable; ?
></td
>
247 <td
><input type
="text" size
="20" name
="new_name" onfocus
="this.select()"
248 value
="<?php echo htmlspecialchars($GLOBALS['table']); ?>" />
252 <!-- Table comments
-->
253 <tr
><td
><?php
echo $strTableComments; ?
></td
>
254 <td
><input type
="text" name
="comment" maxlength
="60" size
="30"
255 value
="<?php echo htmlspecialchars($comment); ?>" onfocus
="this.select()" />
256 <input type
="hidden" name
="prev_comment" value
="<?php echo urlencode($comment); ?>" />
260 <!-- Storage engine
-->
261 <tr
><td
><?php
echo $strStorageEngine; ?
>
262 <?php
echo PMA_showMySQLDocu('Storage_engines', 'Storage_engines'); ?
>
264 <td
><?php
echo PMA_generateEnginesDropdown('new_tbl_type', null, false, $tbl_type, 4); ?
>
269 if (PMA_MYSQL_INT_VERSION
>= 40100) {
271 <!-- Table character set
-->
272 <tr
><td
><?php
echo $strCollation; ?
></td
>
273 <td
><?php
echo PMA_generateCharsetDropdownBox(PMA_CSDROPDOWN_COLLATION
,
274 'tbl_collation', null, $tbl_collation, false, 3); ?
>
279 if ($tbl_type == 'MYISAM' ||
$tbl_type == 'ISAM') {
282 <td
><label
for="new_pack_keys">pack_keys
</label
></td
>
283 <td
><select name
="new_pack_keys" id
="new_pack_keys">
284 <option value
="DEFAULT"
285 <?php
if ($pack_keys == 'DEFAULT') echo 'selected="selected"'; ?
>
288 <?php
if ($pack_keys == '0') echo 'selected="selected"'; ?
>
291 <?php
if ($pack_keys == '1') echo 'selected="selected"'; ?
>
297 } // end if (MYISAM|ISAM)
299 if ($tbl_type == 'MYISAM') {
301 <tr
><td
><label
for="new_checksum">checksum
</label
></td
>
302 <td
><input type
="checkbox" name
="new_checksum" id
="new_checksum"
304 <?php
echo (isset($checksum) && $checksum == 1)
305 ?
' checked="checked"'
310 <tr
><td
><label
for="new_delay_key_write">delay_key_write
</label
></td
>
311 <td
><input type
="checkbox" name
="new_delay_key_write" id
="new_delay_key_write"
313 <?php
echo (isset($delay_key_write) && $delay_key_write == 1)
314 ?
' checked="checked"'
322 if (isset($auto_increment) && strlen($auto_increment) > 0
323 && ($tbl_type == 'MYISAM' ||
$tbl_type == 'INNODB')) {
325 <tr
><td
><label
for="auto_increment_opt">auto_increment
</label
></td
>
326 <td
><input type
="text" name
="new_auto_increment" id
="auto_increment_opt"
327 value
="<?php echo $auto_increment; ?>" /></td
>
330 } // end if (MYISAM|INNODB)
334 <fieldset
class="tblFooters">
335 <input type
="submit" name
="submitoptions" value
="<?php echo $strGo; ?>" />
341 <div id
="div_table_copy">
342 <form method
="post" action
="tbl_move_copy.php"
343 onsubmit
="return emptyFormElements(this, 'new_name')">
344 <?php
echo PMA_generate_common_hidden_inputs($GLOBALS['db'], $GLOBALS['table']); ?
>
345 <input type
="hidden" name
="reload" value
="1" />
347 <legend
><?php
echo $strCopyTable; ?
></legend
>
348 <select name
="target_db">
350 foreach ($dblist as $each_db) {
352 echo '<option value="' . htmlspecialchars($each_db) . '"';
353 if ($each_db === $GLOBALS['db']) {
354 echo ' selected="selected"';
356 echo '>' . htmlspecialchars($each_db) . '</option>';
358 } // end foreach $dblist
362 <input type
="text" size
="20" name
="new_name" onfocus
="this.select()" /><br
/>
364 <input type
="radio" name
="what" value
="structure" id
="radio_copy_structure" />
365 <label
for="radio_copy_structure"><?php
echo $strStrucOnly; ?
></label
><br
/>
366 <input type
="radio" name
="what" value
="data" id
="radio_copy_data" checked
="checked" />
367 <label
for="radio_copy_data"><?php
echo $strStrucData; ?
></label
><br
/>
368 <input type
="radio" name
="what" value
="dataonly" id
="radio_copy_dataonly" />
369 <label
for="radio_copy_dataonly"><?php
echo $strDataOnly; ?
></label
><br
/>
371 <input type
="checkbox" name
="drop_if_exists" value
="true" id
="checkbox_drop" />
372 <label
for="checkbox_drop"><?php
echo sprintf($strAddClause, 'DROP TABLE'); ?
></label
><br
/>
373 <input type
="checkbox" name
="sql_auto_increment" value
="1" id
="checkbox_auto_increment" />
374 <label
for="checkbox_auto_increment"><?php
echo $strAddAutoIncrement; ?
></label
><br
/>
376 // display "Add constraints" choice only if there are
378 if (PMA_getForeigners($GLOBALS['db'], $GLOBALS['table'], '', 'innodb')) {
380 <input type
="checkbox" name
="add_constraints" value
="1" id
="checkbox_constraints" />
381 <label
for="checkbox_constraints"><?php
echo $strAddConstraints; ?
></label
><br
/>
384 if (isset($_COOKIE['pma_switch_to_new'])
385 && $_COOKIE['pma_switch_to_new'] == 'true') {
386 $pma_switch_to_new = 'true';
389 <input type
="checkbox" name
="switch_to_new" value
="true"
390 id
="checkbox_switch"<?php
echo
391 isset($pma_switch_to_new) && $pma_switch_to_new == 'true'
392 ?
' checked="checked"'
394 <label
for="checkbox_switch"><?php
echo $strSwitchToTable; ?
></label
>
396 <fieldset
class="tblFooters">
397 <input type
="submit" name
="submit_copy" value
="<?php echo $strGo; ?>" />
402 <br
class="clearfloat"/>
404 <h1
><?php
echo $strTableMaintenance; ?
></h1
>
408 if ($tbl_type == 'MYISAM' ||
$tbl_type == 'BERKELEYDB' ||
$tbl_type == 'INNODB') {
409 if ($tbl_type == 'MYISAM' ||
$tbl_type == 'INNODB') {
410 $this_url_params = array_merge($url_params,
411 array('sql_query' => 'CHECK TABLE ' . PMA_backquote($GLOBALS['table'])));
413 <li
><a href
="sql.php<?php echo PMA_generate_common_url($this_url_params); ?>">
414 <?php
echo $strCheckTable; ?
></a
>
415 <?php
echo PMA_showMySQLDocu('MySQL_Database_Administration', 'CHECK_TABLE'); ?
>
419 if ($tbl_type == 'INNODB') {
420 $this_url_params = array_merge($url_params,
421 array('sql_query' => 'ALTER TABLE ' . PMA_backquote($GLOBALS['table']) . ' ' . PMA_ENGINE_KEYWORD
. '=InnoDB'));
423 <li
><a href
="sql.php<?php echo PMA_generate_common_url($this_url_params); ?>">
424 <?php
echo $strDefragment; ?
></a
>
425 <?php
echo PMA_showMySQLDocu('Table_types', 'InnoDB_File_Defragmenting'); ?
>
429 if ($tbl_type == 'MYISAM' ||
$tbl_type == 'BERKELEYDB') {
430 $this_url_params = array_merge($url_params,
431 array('sql_query' => 'ANALYZE TABLE ' . PMA_backquote($GLOBALS['table'])));
433 <li
><a href
="sql.php<?php echo PMA_generate_common_url($this_url_params); ?>">
434 <?php
echo $strAnalyzeTable; ?
></a
>
435 <?php
echo PMA_showMySQLDocu('MySQL_Database_Administration', 'ANALYZE_TABLE');?
>
439 if ($tbl_type == 'MYISAM') {
440 $this_url_params = array_merge($url_params,
441 array('sql_query' => 'REPAIR TABLE ' . PMA_backquote($GLOBALS['table'])));
443 <li
><a href
="sql.php<?php echo PMA_generate_common_url($this_url_params); ?>">
444 <?php
echo $strRepairTable; ?
></a
>
445 <?php
echo PMA_showMySQLDocu('MySQL_Database_Administration', 'REPAIR_TABLE'); ?
>
449 if ($tbl_type == 'MYISAM' ||
$tbl_type == 'BERKELEYDB' ||
$tbl_type == 'INNODB') {
450 $this_url_params = array_merge($url_params,
451 array('sql_query' => 'OPTIMIZE TABLE ' . PMA_backquote($GLOBALS['table'])));
453 <li
><a href
="sql.php<?php echo PMA_generate_common_url($this_url_params); ?>">
454 <?php
echo $strOptimizeTable; ?
></a
>
455 <?php
echo PMA_showMySQLDocu('MySQL_Database_Administration', 'OPTIMIZE_TABLE'); ?
>
459 } // end MYISAM or BERKELEYDB case
460 $this_url_params = array_merge($url_params,
462 'sql_query' => 'FLUSH TABLE ' . PMA_backquote($GLOBALS['table']),
463 'zero_rows' => sprintf($strTableHasBeenFlushed,
464 htmlspecialchars($GLOBALS['table'])),
468 <li
><a href
="sql.php<?php echo PMA_generate_common_url($this_url_params); ?>">
469 <?php
echo $strFlushTable; ?
></a
>
470 <?php
echo PMA_showMySQLDocu('MySQL_Database_Administration', 'FLUSH'); ?
>
474 // Referential integrity check
475 // The Referential integrity check was intended for the non-InnoDB
476 // tables for which the relations are defined in pmadb
477 // so I assume that if the current table is InnoDB, I don't display
478 // this choice (InnoDB maintains integrity by itself)
480 if ($cfgRelation['relwork'] && $tbl_type != "INNODB") {
482 // we need this PMA_DBI_select_db if the user has access to more than one db
483 // and $GLOBALS['db'] is not the last of the list, because PMA_availableDatabases()
484 // has made a PMA_DBI_select_db() on the last one
485 PMA_DBI_select_db($GLOBALS['db']);
486 $foreign = PMA_getForeigners($GLOBALS['db'], $GLOBALS['table']);
490 <!-- Referential integrity check
-->
492 <?php
echo $strReferentialIntegrity; ?
><br
/>
495 foreach ($foreign AS $master => $arr) {
496 $join_query = 'SELECT ' . PMA_backquote($GLOBALS['table']) . '.* FROM '
497 . PMA_backquote($GLOBALS['table']) . ' LEFT JOIN '
498 . PMA_backquote($arr['foreign_table']);
499 if ($arr['foreign_table'] == $GLOBALS['table']) {
500 $foreign_table = $GLOBALS['table'] . '1';
501 $join_query .= ' AS ' . PMA_backquote($foreign_table);
503 $foreign_table = $arr['foreign_table'];
505 $join_query .= ' ON '
506 . PMA_backquote($GLOBALS['table']) . '.' . PMA_backquote($master)
507 . ' = ' . PMA_backquote($foreign_table) . '.' . PMA_backquote($arr['foreign_field'])
509 . PMA_backquote($foreign_table) . '.' . PMA_backquote($arr['foreign_field'])
511 . PMA_backquote($GLOBALS['table']) . '.' . PMA_backquote($master)
513 $this_url_params = array_merge($url_params,
514 array('sql_query' => $join_query));
517 . PMA_generate_common_url($this_url_params)
518 . '">' . $master . ' -> ' . $arr['foreign_table'] . '.' . $arr['foreign_field']
519 . '</a></li>' . "\n";
520 } // foreach $foreign
521 unset($foreign_table, $join_query);
525 } // end if ($result)
527 } // end if (!empty($cfg['Server']['relation']))
531 * Displays the footer
533 require_once './libraries/footer.inc.php';