3 // vim: expandtab sw=4 ts=4 sts=4:
9 require('./tbl_properties_common.php3');
10 //$err_url = 'tbl_properties_operations.php3' . $err_url;
11 $url_query .= '&goto=tbl_properties_operations.php3&back=tbl_properties_operations.php3';
15 * Gets relation settings
17 require('./libraries/relation.lib.php3');
18 $cfgRelation = PMA_getRelationsParam();
22 * Reordering the table has been requested by the user
24 if (isset($submitorderby) && !empty($order_field)) {
25 $sql_query = 'ALTER TABLE ' . PMA_backquote($table)
26 . ' ORDER BY ' . PMA_backquote(urldecode($order_field));
27 $result = PMA_mysql_query($sql_query) or PMA_mysqlDie('', $sql_query, '', $err_url);
28 PMA_showMessage($strSuccess);
33 * Gets tables informations and displays top links
35 require('./tbl_properties_table_info.php3');
41 $local_query = 'SHOW COLUMNS FROM ' . PMA_backquote($table) . ' FROM ' . PMA_backquote($db);
42 $result = PMA_mysql_query($local_query) or PMA_mysqlDie('', $local_query, '', $error_url);
43 for ($i = 0; $row = PMA_mysql_fetch_array($result); $i++
) {
44 $columns[$i] = $row['Field'];
46 mysql_free_result($result);
56 if (PMA_MYSQL_INT_VERSION
>= 32334) {
58 <!-- Order the table
-->
60 <form method
="post" action
="tbl_properties_operations.php3">
61 <?php
echo PMA_generate_common_hidden_inputs($db, $table); ?
>
62 <?php
echo $strAlterOrderBy; ?
> 
;:
63 <select name
="order_field" style
="vertical-align: middle">
67 while (list($junk, $fieldname) = each($columns)) {
68 echo ' <option value="' . htmlspecialchars($fieldname) . '">' . htmlspecialchars($fieldname) . '</option>' . "\n";
73 <input type
="submit" name
="submitorderby" value
="<?php echo $strGo; ?>" style
="vertical-align: middle" />
74  
;<?php
echo $strSingly . "\n"; ?
>
82 <!-- Change table name
-->
84 <div style
="margin-bottom: 10px">
85 <form method
="post" action
="tbl_rename.php3"
86 onsubmit
="return emptyFormElements(this, 'new_name')">
87 <?php
echo PMA_generate_common_hidden_inputs($db, $table); ?
>
88 <input type
="hidden" name
="reload" value
="1" />
89 <?php
echo $strRenameTable; ?
> 
;:
90 <input type
="text" size
="20" name
="new_name" value
="<?php echo htmlspecialchars($table); ?>" class="textfield" onfocus
="this.select()" /> 
;
91 <input type
="submit" value
="<?php echo $strGo; ?>" />
96 <!-- Move
and copy table
-->
97 <li style
="vertical-align: top">
98 <div style
="margin-bottom: 10px">
99 <table border
="0" cellspacing
="0" cellpadding
="0" style
="vertical-align: top">
102 <form method
="post" action
="tbl_move_copy.php3"
103 onsubmit
="return emptyFormElements(this, 'new_name')">
104 <?php
echo PMA_generate_common_hidden_inputs($db, $table); ?
>
105 <input type
="hidden" name
="reload" value
="1" />
106 <input type
="hidden" name
="what" value
="data" />
107 <table border
="0" cellspacing
="0" cellpadding
="0">
110 <?php
echo $strMoveTable . "\n"; ?
>
115 <select name
="target_db">
117 // The function used below is defined in "common.lib.php3"
118 PMA_availableDatabases('main.php3?' . PMA_generate_common_url());
119 for ($i = 0; $i < $num_dbs; $i++
) {
121 echo '<option value="' . htmlspecialchars($dblist[$i]) . '">' . htmlspecialchars($dblist[$i]) . '</option>';
127 <input type
="text" size
="20" name
="new_name" value
="<?php echo htmlspecialchars($table); ?>" class="textfield" onfocus
="this.select()" />
131 <td align
="<?php echo $cell_align_right; ?>" valign
="top">
132 <input type
="submit" name
="submit_move" value
="<?php echo $strGo; ?>" />
138 <td width
="25"> 
;</td
>
140 <form method
="post" action
="tbl_move_copy.php3"
141 onsubmit
="return emptyFormElements(this, 'new_name')">
142 <?php
echo PMA_generate_common_hidden_inputs($db, $table); ?
>
143 <input type
="hidden" name
="reload" value
="1" />
144 <table border
="0" cellspacing
="0" cellpadding
="0">
146 <td colspan
="2" nowrap
="nowrap">
147 <?php
echo $strCopyTable . "\n"; ?
>
152 <select name
="target_db">
154 for ($i = 0; $i < $num_dbs; $i++
) {
156 echo '<option value="' . htmlspecialchars($dblist[$i]) . '"';
157 if ($dblist[$i] == $db) {
158 echo ' selected="selected"';
160 echo '>' . htmlspecialchars($dblist[$i]) . '</option>';
166 <input type
="text" size
="20" name
="new_name" class="textfield" onfocus
="this.select()" />
171 <input type
="radio" name
="what" value
="structure" id
="radio_copy_structure" checked
="checked" />
172 <label
for="radio_copy_structure"><?php
echo $strStrucOnly; ?
></label
> 
; 
;<br
/>
173 <input type
="radio" name
="what" value
="data" id
="radio_copy_data" />
174 <label
for="radio_copy_data"><?php
echo $strStrucData; ?
></label
> 
; 
;<br
/>
175 <input type
="radio" name
="what" value
="dataonly" id
="radio_copy_dataonly" />
176 <label
for="radio_copy_dataonly"><?php
echo $strDataOnly; ?
></label
> 
; 
;<br
/>
177 <input type
="checkbox" name
="drop_if_exists" value
="true" id
="checkbox_drop" />
178 <label
for="checkbox_drop"><?php
echo $strStrucDrop; ?
></label
> 
; 
;<br
/>
180 if (isset($_COOKIE) && isset($_COOKIE['pma_switch_to_new']) && $_COOKIE['pma_switch_to_new'] == 'true') {
181 $pma_switch_to_new = 'true';
182 } elseif (isset($HTTP_COOKIE_VARS) && isset($HTTP_COOKIE_VARS['pma_switch_to_new']) && $HTTP_COOKIE_VARS['pma_switch_to_new'] == 'true') {
183 $pma_switch_to_new = 'true';
186 <input type
="checkbox" name
="switch_to_new" value
="true" id
="checkbox_switch" <?php
echo ((isset($pma_switch_to_new) && $pma_switch_to_new == 'true') ?
'checked="checked"' : ''); ?
>/>
187 <label
for="checkbox_switch"><?php
echo $strSwitchToTable; ?
></label
> 
; 
;
189 <td align
="<?php echo $cell_align_right; ?>" valign
="top">
190 <input type
="submit" name
="submit_copy" value
="<?php echo $strGo; ?>" />
202 if (PMA_MYSQL_INT_VERSION
>= 32322) {
203 if ($tbl_type == 'MYISAM' or $tbl_type == 'BDB') {
205 <!-- Table maintenance
-->
206 <li style
="vertical-align: top">
207 <div style
="margin-bottom: 10px">
208 <table border
="0" cellspacing
="0" cellpadding
="0" style
="vertical-align: top">
210 <td
><?php
echo $strTableMaintenance; ?
> 
;: 
;</td
>
213 if ($tbl_type == 'MYISAM') {
216 <a href
="sql.php3?<?php echo $url_query; ?>&sql_query=<?php echo urlencode('CHECK TABLE ' . PMA_backquote($table)); ?>">
217 <?php
echo $strCheckTable; ?
></a
> 
;
218 <?php
echo PMA_showMySQLDocu('MySQL_Database_Administration', 'CHECK_TABLE') . "\n"; ?
>
220 <td
> 
;- 
;</td
>
224 if ($tbl_type == 'MYISAM' ||
$tbl_type == 'BDB') {
227 <a href
="sql.php3?<?php echo $url_query; ?>&sql_query=<?php echo urlencode('ANALYZE TABLE ' . PMA_backquote($table)); ?>">
228 <?php
echo $strAnalyzeTable; ?
></a
> 
;
229 <?php
echo PMA_showMySQLDocu('MySQL_Database_Administration', 'ANALYZE_TABLE') . "\n";?
>
240 if ($tbl_type == 'MYISAM') {
243 <a href
="sql.php3?<?php echo $url_query; ?>&sql_query=<?php echo urlencode('REPAIR TABLE ' . PMA_backquote($table)); ?>">
244 <?php
echo $strRepairTable; ?
></a
> 
;
245 <?php
echo PMA_showMySQLDocu('MySQL_Database_Administration', 'REPAIR_TABLE') . "\n"; ?
>
247 <td
> 
;- 
;</td
>
251 if ($tbl_type == 'MYISAM' ||
$tbl_type == 'BDB') {
254 <a href
="sql.php3?<?php echo $url_query; ?>&sql_query=<?php echo urlencode('OPTIMIZE TABLE ' . PMA_backquote($table)); ?>">
255 <?php
echo $strOptimizeTable; ?
></a
> 
;
256 <?php
echo PMA_showMySQLDocu('MySQL_Database_Administration', 'OPTIMIZE_TABLE') . "\n"; ?
>
267 } // end MYISAM or BDB case
269 } // end MySQL >= 3.23.22
271 // loic1: "OPTIMIZE" statement is available for MyISAM and BDB tables only and
272 // MyISAM/BDB tables exists since MySQL 3.23.06/3.23.34
273 else if (PMA_MYSQL_INT_VERSION
>= 32306
274 && ($tbl_type == 'MYISAM' or $tbl_type == 'BDB')) {
276 <!-- Table maintenance
-->
277 <li style
="vertical-align: top">
278 <div style
="margin-bottom: 10px">
279 <?php
echo $strTableMaintenance; ?
> 
;: 
;
280 <a href
="sql.php3?<?php echo $url_query; ?>&sql_query=<?php echo urlencode('OPTIMIZE TABLE ' . PMA_backquote($table)); ?>">
281 <?php
echo $strOptimizeTable; ?
></a
> 
;
282 <?php
echo PMA_showMySQLDocu('MySQL_Database_Administration', 'OPTIMIZE_TABLE') . "\n"; ?
>
287 } // end 3.23.06 < MySQL < 3.23.22
289 // Referential integrity check
290 if ($cfgRelation['relwork']) {
292 // we need this PMA_mysql_select_db if the user has access to more than one db
293 // and $db is not the last of the list, because PMA_availableDatabases()
294 // has made a PMA_mysql_select_db() on the last one
295 PMA_mysql_select_db($db);
296 $foreign = PMA_getForeigners($db, $table);
300 <!-- Referential integrity check
-->
301 <li style
="vertical-align: top">
302 <div style
="margin-bottom: 10px">
303 <?php
echo $strReferentialIntegrity; ?
><br
/>
306 while (list($master, $arr) = each($foreign)){
307 $join_query = 'SELECT ' . PMA_backquote($table) . '.* FROM '
308 . PMA_backquote($table) . ' LEFT JOIN '
309 . PMA_backquote($arr['foreign_table']);
310 if ($arr['foreign_table'] == $table) {
311 $foreign_table = $table . '1';
312 $join_query .= ' AS ' . PMA_backquote($foreign_table);
314 $foreign_table = $arr['foreign_table'];
316 $join_query .= ' ON '
317 . PMA_backquote($table) . '.' . PMA_backquote($master)
318 . ' = ' . PMA_backquote($foreign_table) . '.' . PMA_backquote($arr['foreign_field'])
320 . PMA_backquote($foreign_table) . '.' . PMA_backquote($arr['foreign_field'])
322 . PMA_backquote($table) . '.' . PMA_backquote($master)
325 . '<a href="sql.php3?' . $url_query
327 . urlencode($join_query)
328 . '">' . $master . ' -> ' . $arr['foreign_table'] . '.' . $arr['foreign_field']
329 . '</a><br />' . "\n";
330 unset($foreign_table);
337 } // end if ($result)
340 } // end if (!empty($cfg['Server']['relation']))
343 <!-- Flushes the table
-->
345 <a href
="sql.php3?<?php echo $url_query; ?>&sql_query=<?php echo urlencode('FLUSH TABLE ' . PMA_backquote($table)); ?>&zero_rows=<?php echo urlencode(sprintf($strTableHasBeenFlushed, htmlspecialchars($table))); if ($cfg['ShowTooltip']) echo '&reload=1'; ?>">
346 <?php
echo $strFlushTable; ?
></a
> 
;
347 <?php
echo PMA_showMySQLDocu('MySQL_Database_Administration', 'FLUSH') . "\n"; ?
>
355 * Displays the footer
358 require('./footer.inc.php3');