Czech translation update.
[phpmyadmin/madhuracj.git] / db_structure.php
blob3a9b35c95dc752cc5aa92ece1ad534e5f534e579
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
5 * @version $Id$
6 * @package phpMyAdmin
7 */
9 /**
12 require_once './libraries/common.inc.php';
13 require_once './libraries/Table.class.php';
15 $GLOBALS['js_include'][] = 'mootools.js';
17 /**
18 * Prepares the tables list if the user where not redirected to this script
19 * because there is no table in the database ($is_info is true)
21 if (empty($is_info)) {
22 // Drops/deletes/etc. multiple tables if required
23 if ((!empty($submit_mult) && isset($selected_tbl))
24 || isset($mult_btn)) {
25 $action = 'db_structure.php';
26 $err_url = 'db_structure.php?'. PMA_generate_common_url($db);
28 // see bug #2794840; in this case, code path is:
29 // db_structure.php -> libraries/mult_submits.inc.php -> sql.php
30 // -> db_structure.php and if we got an error on the multi submit,
31 // we must display it here and not call again mult_submits.inc.php
32 if (! isset($error) || FALSE === $error) {
33 require './libraries/mult_submits.inc.php';
35 if (empty($message)) {
36 $message = PMA_Message::success();
39 require './libraries/db_common.inc.php';
40 $url_query .= '&amp;goto=db_structure.php';
42 // Gets the database structure
43 $sub_part = '_structure';
44 require './libraries/db_info.inc.php';
46 require_once './libraries/replication.inc.php';
49 // 1. No tables
50 if ($num_tables == 0) {
51 echo '<p>' . $strNoTablesFound . '</p>' . "\n";
53 if (empty($db_is_information_schema)) {
54 require './libraries/display_create_table.lib.php';
55 } // end if (Create Table dialog)
57 /**
58 * Displays the footer
60 require_once './libraries/footer.inc.php';
61 exit;
64 // else
65 // 2. Shows table informations - staybyte - 11 June 2001
67 require_once './libraries/bookmark.lib.php';
69 require_once './libraries/mysql_charsets.lib.php';
70 $db_collation = PMA_getDbCollation($db);
72 // in a separate file to avoid redeclaration of functions in some code paths
73 require_once './libraries/db_structure.lib.php';
75 $titles = array();
76 if (true == $cfg['PropertiesIconic']) {
77 $titles['Browse'] = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'b_browse.png" alt="' . $strBrowse . '" title="' . $strBrowse . '" />';
78 $titles['NoBrowse'] = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'bd_browse.png" alt="' . $strBrowse . '" title="' . $strBrowse . '" />';
79 $titles['Search'] = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'b_select.png" alt="' . $strSearch . '" title="' . $strSearch . '" />';
80 $titles['NoSearch'] = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'bd_select.png" alt="' . $strSearch . '" title="' . $strSearch . '" />';
81 $titles['Insert'] = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'b_insrow.png" alt="' . $strInsert . '" title="' . $strInsert . '" />';
82 $titles['NoInsert'] = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'bd_insrow.png" alt="' . $strInsert . '" title="' . $strInsert . '" />';
83 $titles['Structure'] = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'b_props.png" alt="' . $strStructure . '" title="' . $strStructure . '" />';
84 $titles['Drop'] = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'b_drop.png" alt="' . $strDrop . '" title="' . $strDrop . '" />';
85 $titles['NoDrop'] = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'bd_drop.png" alt="' . $strDrop . '" title="' . $strDrop . '" />';
86 $titles['Empty'] = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'b_empty.png" alt="' . $strEmpty . '" title="' . $strEmpty . '" />';
87 $titles['NoEmpty'] = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'bd_empty.png" alt="' . $strEmpty . '" title="' . $strEmpty . '" />';
89 if ('both' === $cfg['PropertiesIconic']) {
90 $titles['Browse'] .= $strBrowse;
91 $titles['Search'] .= $strSearch;
92 $titles['NoBrowse'] .= $strBrowse;
93 $titles['NoSearch'] .= $strSearch;
94 $titles['Insert'] .= $strInsert;
95 $titles['NoInsert'] .= $strInsert;
96 $titles['Structure'] .= $strStructure;
97 $titles['Drop'] .= $strDrop;
98 $titles['NoDrop'] .= $strDrop;
99 $titles['Empty'] .= $strEmpty;
100 $titles['NoEmpty'] .= $strEmpty;
102 } else {
103 $titles['Browse'] = $strBrowse;
104 $titles['Search'] = $strSearch;
105 $titles['NoBrowse'] = $strBrowse;
106 $titles['NoSearch'] = $strSearch;
107 $titles['Insert'] = $strInsert;
108 $titles['NoInsert'] = $strInsert;
109 $titles['Structure'] = $strStructure;
110 $titles['Drop'] = $strDrop;
111 $titles['NoDrop'] = $strDrop;
112 $titles['Empty'] = $strEmpty;
113 $titles['NoEmpty'] = $strEmpty;
117 * Displays the tables list
119 $_url_params = array(
120 'pos' => $pos,
121 'db' => $db);
123 // Add the sort options if they exists
124 if (isset($_REQUEST['sort'])) {
125 $_url_params['sort'] = $_REQUEST['sort'];
128 if (isset($_REQUEST['sort_order'])) {
129 $_url_params['sort_order'] = $_REQUEST['sort_order'];
132 PMA_listNavigator($total_num_tables, $pos, $_url_params, 'db_structure.php', 'frame_content', $GLOBALS['cfg']['MaxTableList']);
135 <form method="post" action="db_structure.php" name="tablesForm" id="tablesForm">
136 <?php
137 echo PMA_generate_common_hidden_inputs($db);
139 PMA_TableHeader($db_is_information_schema, $server_slave_status);
141 $i = $sum_entries = 0;
142 $sum_size = (double) 0;
143 $overhead_size = (double) 0;
144 $overhead_check = '';
145 $checked = !empty($checkall) ? ' checked="checked"' : '';
146 $num_columns = $cfg['PropertiesNumColumns'] > 1 ? ceil($num_tables / $cfg['PropertiesNumColumns']) + 1 : 0;
147 $row_count = 0;
150 $hidden_fields = array();
151 $odd_row = true;
152 $sum_row_count_pre = '';
154 // added by rajk - for blobstreaming
155 $PMA_Config = $_SESSION['PMA_Config'];
157 if (!empty($PMA_Config))
158 $session_bs_tables = $PMA_Config->get('BLOBSTREAMING_TABLES'); // list of blobstreaming tables
160 $tableReductionCount = 0; // the amount to reduce the table count by
162 foreach ($tables as $keyname => $each_table) {
163 if (isset($session_bs_tables))
165 // compare table name against blobstreaming tables
166 foreach ($session_bs_tables as $table_key=>$table_val)
167 // if the table is a blobstreaming table, reduce table count and skip outer foreach loop
168 if ($table_key == $keyname)
170 $tableReductionCount++;
171 continue 2;
175 // loic1: Patch from Joshua Nye <josh at boxcarmedia.com> to get valid
176 // statistics whatever is the table type
178 $table_is_view = false;
179 $table_encoded = urlencode($each_table['TABLE_NAME']);
180 // Sets parameters for links
181 $tbl_url_query = $url_query . '&amp;table=' . $table_encoded;
182 // do not list the previous table's size info for a view
183 $formatted_size = '-';
184 $unit = '';
186 switch ( $each_table['ENGINE']) {
187 // MyISAM, ISAM or Heap table: Row count, data size and index size
188 // are accurate.
189 case 'MyISAM' :
190 case 'ISAM' :
191 case 'HEAP' :
192 case 'MEMORY' :
193 if ($db_is_information_schema) {
194 $each_table['Rows'] = PMA_Table::countRecords($db,
195 $each_table['Name'], $return = true);
198 if ($is_show_stats) {
199 $tblsize = doubleval($each_table['Data_length']) + doubleval($each_table['Index_length']);
200 $sum_size += $tblsize;
201 list($formatted_size, $unit) = PMA_formatByteDown($tblsize, 3, ($tblsize > 0) ? 1 : 0);
202 if (isset($each_table['Data_free']) && $each_table['Data_free'] > 0) {
203 list($formatted_overhead, $overhead_unit) = PMA_formatByteDown($each_table['Data_free'], 3, ($each_table['Data_free'] > 0) ? 1 : 0);
204 $overhead_size += $each_table['Data_free'];
207 break;
208 case 'InnoDB' :
209 // InnoDB table: Row count is not accurate but data and index
210 // sizes are.
212 if ($each_table['TABLE_ROWS'] < $GLOBALS['cfg']['MaxExactCount']) {
213 $each_table['COUNTED'] = true;
214 $each_table['TABLE_ROWS'] = PMA_Table::countRecords($db,
215 $each_table['TABLE_NAME'], $return = true, $force_exact = true,
216 $is_view = false);
217 } else {
218 $each_table['COUNTED'] = false;
221 if ($is_show_stats) {
222 $tblsize = $each_table['Data_length'] + $each_table['Index_length'];
223 $sum_size += $tblsize;
224 list($formatted_size, $unit) = PMA_formatByteDown($tblsize, 3, ($tblsize > 0) ? 1 : 0);
226 //$display_rows = ' - ';
227 break;
228 case 'MRG_MyISAM' :
229 case 'BerkeleyDB' :
230 // Merge or BerkleyDB table: Only row count is accurate.
231 if ($is_show_stats) {
232 $formatted_size = ' - ';
233 $unit = '';
235 break;
236 // for a view, the ENGINE is null
237 case null :
238 case 'SYSTEM VIEW' :
239 // countRecords() takes care of $cfg['MaxExactCountViews']
240 $each_table['TABLE_ROWS'] = PMA_Table::countRecords($db,
241 $each_table['TABLE_NAME'], $return = true, $force_exact = true,
242 $is_view = true);
243 $table_is_view = true;
244 break;
245 default :
246 // Unknown table type.
247 if ($is_show_stats) {
248 $formatted_size = 'unknown';
249 $unit = '';
251 } // end switch
252 $sum_entries += $each_table['TABLE_ROWS'];
254 if (isset($each_table['Collation'])) {
255 $collation = '<dfn title="'
256 . PMA_getCollationDescr($each_table['Collation']) . '">'
257 . $each_table['Collation'] . '</dfn>';
258 } else {
259 $collation = '---';
262 if ($is_show_stats) {
263 if (isset($formatted_overhead)) {
264 $overhead = '<a href="tbl_structure.php?'
265 . $tbl_url_query . '#showusage">' . $formatted_overhead
266 . ' ' . $overhead_unit . '</a>' . "\n";
267 unset($formatted_overhead);
268 $overhead_check .=
269 "document.getElementById('checkbox_tbl_" . ($i + 1) . "').checked = true;";
270 } else {
271 $overhead = '-';
273 } // end if
275 $alias = (!empty($tooltip_aliasname) && isset($tooltip_aliasname[$each_table['TABLE_NAME']]))
276 ? str_replace(' ', '&nbsp;', htmlspecialchars($tooltip_truename[$each_table['TABLE_NAME']]))
277 : str_replace(' ', '&nbsp;', htmlspecialchars($each_table['TABLE_NAME']));
278 $truename = (!empty($tooltip_truename) && isset($tooltip_truename[$each_table['TABLE_NAME']]))
279 ? str_replace(' ', '&nbsp;', htmlspecialchars($tooltip_truename[$each_table['TABLE_NAME']]))
280 : str_replace(' ', '&nbsp;', htmlspecialchars($each_table['TABLE_NAME']));
282 $i++;
284 $row_count++;
285 if ($table_is_view) {
286 $hidden_fields[] = '<input type="hidden" name="views[]" value="' . $each_table['TABLE_NAME'] . '" />';
289 if ($each_table['TABLE_ROWS'] > 0) {
290 $browse_table = '<a href="sql.php?' . $tbl_url_query . '&amp;pos=0">' . $titles['Browse'] . '</a>';
291 $search_table = '<a href="tbl_select.php?' . $tbl_url_query . '">' . $titles['Search'] . '</a>';
292 } else {
293 $browse_table = $titles['NoBrowse'];
294 $search_table = $titles['NoSearch'];
297 if (! $db_is_information_schema) {
298 if (! empty($each_table['TABLE_ROWS'])) {
299 $empty_table = '<a href="sql.php?' . $tbl_url_query
300 . '&amp;sql_query=';
301 $empty_table .= urlencode('TRUNCATE ' . PMA_backquote($each_table['TABLE_NAME']))
302 . '&amp;zero_rows='
303 . urlencode(sprintf($strTableHasBeenEmptied, htmlspecialchars($each_table['TABLE_NAME'])))
304 . '" onclick="return confirmLink(this, \'TRUNCATE ';
305 $empty_table .= PMA_jsFormat($each_table['TABLE_NAME']) . '\')">' . $titles['Empty'] . '</a>';
306 } else {
307 $empty_table = $titles['NoEmpty'];
309 $drop_query = 'DROP '
310 . ($table_is_view ? 'VIEW' : 'TABLE')
311 . ' ' . PMA_backquote($each_table['TABLE_NAME']);
312 $drop_message = sprintf(
313 $table_is_view ? $strViewHasBeenDropped : $strTableHasBeenDropped,
314 str_replace(' ', '&nbsp;', htmlspecialchars($each_table['TABLE_NAME'])));
317 $tracking_icon = '';
318 if (PMA_Tracker::isActive()) {
319 if (PMA_Tracker::isTracked($GLOBALS["db"], $truename)) {
320 $tracking_icon = '<a href="tbl_tracking.php?'.$url_query.'&table='.$truename.'"><img class="icon" width="14" height="14" src="' .$pmaThemeImage . 'eye.png" alt="' . $strTrackingIsActive . '" title="' . $strTrackingIsActive . '" /></a>';
321 } else if (PMA_Tracker::getVersion($GLOBALS["db"], $truename) > 0) {
322 $tracking_icon = '<a href="tbl_tracking.php?'.$url_query.'&table='.$truename.'"><img class="icon" width="14" height="14" src="' .$pmaThemeImage . 'eye_grey.png" alt="' . $strTrackingIsNotActive . '" title="' . $strTrackingIsNotActive . '" /></a>';
326 if ($num_columns > 0 && $num_tables > $num_columns
327 && (($row_count % $num_columns) == 0)) {
328 $row_count = 1;
329 $odd_row = true;
331 </tr>
332 </tbody>
333 </table>
334 <?php
335 PMA_TableHeader(false, $server_slave_status);
338 $ignored = false;
339 $do = false;
341 if ($server_slave_status) {
342 ////////////////////////////////////////////////////////////////
344 if ((strlen(array_search($truename, $server_slave_Do_Table)) > 0)
345 || (strlen(array_search($db, $server_slave_Do_DB))>0)
346 || (count($server_slave_Do_DB)==1 && count($server_slave_Ignore_DB)==1)
348 $do = true;
350 foreach ($server_slave_Wild_Do_Table as $table) {
351 if (($db == PMA_replication_strout($table)) && (ereg("^".substr(PMA_replication_strout($table, true), 0, strlen(PMA_replication_strout($table, true))-1), $truename)))
352 $do = true;
354 ////////////////////////////////////////////////////////////////////
355 if ((strlen(array_search($truename, $server_slave_Ignore_Table))>0) || (strlen(array_search($db, $server_slave_Ignore_DB))>0)) {
356 $ignored = true;
358 foreach ($server_slave_Wild_Ignore_Table as $table) {
359 if (($db == PMA_replication_strout($table)) && (ereg("^".substr(PMA_replication_strout($table, true), 0, strlen(PMA_replication_strout($table, true))-1), $truename)))
360 $ignored = true;
362 }/* elseif ($server_master_status) {
363 if ((strlen(array_search($db, $server_master_Do_DB))>0) || count($server_master_Do_DB)==1)
364 $do = true;
365 elseif ((strlen(array_search($db, $server_master_Ignore_DB))>0) || count($server_master_Ignore_DB)==1)
366 $ignored = true;
369 <tr class="<?php echo $odd_row ? 'odd' : 'even'; $odd_row = ! $odd_row; ?>">
370 <td align="center">
371 <input type="checkbox" name="selected_tbl[]"
372 value="<?php echo $each_table['TABLE_NAME']; ?>"
373 id="checkbox_tbl_<?php echo $i; ?>"<?php echo $checked; ?> /></td>
374 <th><label for="checkbox_tbl_<?php echo $i; ?>"
375 title="<?php echo $alias; ?>" style="<?php echo $ignored ? ' ignored' : ''; ?>"><?php echo $truename; ?></label>
376 </th>
377 <?php if ($server_slave_status) { ?><td align="center"><?php echo $ignored ? ' <img class="icon" src="' . $pmaThemeImage . 's_cancel.png" width="16" height="16" alt="REPLICATED" />' : ''. $do ? ' <img class="icon" src="' . $pmaThemeImage . 's_success.png" width="16" height="16" alt="REPLICATED" />' : ''; ?></td><?php } ?>
378 <td align="center"><?php echo $browse_table; ?></td>
379 <td align="center">
380 <a href="tbl_structure.php?<?php echo $tbl_url_query; ?>">
381 <?php echo $titles['Structure']; ?></a></td>
382 <td align="center"><?php echo $search_table; ?></td>
383 <?php if (! $db_is_information_schema) { ?>
384 <td align="center">
385 <a href="tbl_change.php?<?php echo $tbl_url_query; ?>">
386 <?php echo $titles['Insert']; ?></a></td>
387 <td align="center"><?php echo $empty_table; ?></td>
388 <td align="center">
389 <a href="sql.php?<?php echo $tbl_url_query;
390 ?>&amp;reload=1&amp;purge=1&amp;sql_query=<?php
391 echo urlencode($drop_query); ?>&amp;zero_rows=<?php
392 echo urlencode($drop_message); ?>"
393 onclick="return confirmLink(this, '<?php echo PMA_jsFormat($drop_query, false); ?>')">
394 <?php echo $titles['Drop']; ?></a></td>
395 <?php } // end if (! $db_is_information_schema)
397 // there is a null value in the ENGINE
398 // - when the table needs to be repaired, or
399 // - when it's a view
400 // so ensure that we'll display "in use" below for a table
401 // that needs to be repaired
402 if (isset($each_table['TABLE_ROWS']) && ($each_table['ENGINE'] != null || $table_is_view)) {
403 if ($table_is_view) {
404 if ($each_table['TABLE_ROWS'] >= $GLOBALS['cfg']['MaxExactCountViews']){
405 $row_count_pre = '~';
406 $sum_row_count_pre = '~';
407 $show_superscript = PMA_showHint(PMA_sanitize(sprintf($strViewHasAtLeast, '[a@./Documentation.html#cfg_MaxExactCountViews@_blank]', '[/a]')));
409 } elseif($each_table['ENGINE'] == 'InnoDB' && (! $each_table['COUNTED'])) {
410 // InnoDB table: we did not get an accurate row count
411 $row_count_pre = '~';
412 $sum_row_count_pre = '~';
413 $show_superscript = '';
414 } else {
415 $row_count_pre = '';
416 $show_superscript = '';
419 <td class="value"><?php echo $row_count_pre . PMA_formatNumber($each_table['TABLE_ROWS'], 0) . $show_superscript; ?></td>
420 <?php if (!($cfg['PropertiesNumColumns'] > 1)) { ?>
421 <td nowrap="nowrap"><?php echo ($table_is_view ? $strView : $each_table['ENGINE']); ?></td>
422 <?php if (isset($collation)) { ?>
423 <td nowrap="nowrap"><?php echo $collation ?></td>
424 <?php } ?>
425 <?php } ?>
427 <?php if ($is_show_stats) { ?>
428 <td class="value"><a
429 href="tbl_structure.php?<?php echo $tbl_url_query; ?>#showusage"
430 ><?php echo $formatted_size . ' ' . $unit; ?></a></td>
431 <td class="value"><?php echo $overhead; ?></td>
432 <?php } // end if ?>
433 <?php } elseif ($table_is_view) { ?>
434 <td class="value">-</td>
435 <td><?php echo $strView; ?></td>
436 <td>---</td>
437 <?php if ($is_show_stats) { ?>
438 <td class="value">-</td>
439 <td class="value">-</td>
440 <?php } ?>
441 <?php } else { ?>
442 <td colspan="<?php echo ($structure_tbl_col_cnt - ($db_is_information_schema ? 5 : 8)) ?>"
443 align="center">
444 <?php echo $strInUse; ?></td>
445 <?php } // end if (isset($each_table['TABLE_ROWS'])) else ?>
446 </tr>
447 <?php
448 } // end foreach
450 // Show Summary
451 if ($is_show_stats) {
452 list($sum_formatted, $unit) = PMA_formatByteDown($sum_size, 3, 1);
453 list($overhead_formatted, $overhead_unit) =
454 PMA_formatByteDown($overhead_size, 3, 1);
457 </tbody>
458 <tbody>
459 <tr><th></th>
460 <th align="center" nowrap="nowrap">
461 <?php
462 // for blobstreaming - if the number of tables is 0, set tableReductionCount to 0
463 // (we don't want negative numbers here) - rajk
464 if ($num_tables == 0)
465 $tableReductionCount = 0;
467 echo sprintf($strTables, PMA_formatNumber($num_tables - $tableReductionCount, 0));
469 </th>
470 <th colspan="<?php echo ($db_is_information_schema ? 3 : 6) ?>" align="center">
471 <?php echo $strSum; ?></th>
472 <th class="value"><?php echo $sum_row_count_pre . PMA_formatNumber($sum_entries, 0); ?></th>
473 <?php
474 if (!($cfg['PropertiesNumColumns'] > 1)) {
475 $default_engine = PMA_DBI_get_default_engine();
476 echo ' <th align="center">' . "\n"
477 . ' <dfn title="'
478 . sprintf($strDefaultEngine, $default_engine) . '">' .$default_engine . '</dfn></th>' . "\n";
479 // we got a case where $db_collation was empty
480 echo ' <th align="center">' . "\n";
481 if (! empty($db_collation)) {
482 echo ' <dfn title="'
483 . PMA_getCollationDescr($db_collation) . ' (' . $strDefault . ')">' . $db_collation
484 . '</dfn>';
486 echo '</th>';
489 if ($is_show_stats) {
491 <th class="value"><?php echo $sum_formatted . ' ' . $unit; ?></th>
492 <th class="value"><?php echo $overhead_formatted . ' ' . $overhead_unit; ?></th>
493 <?php
496 </tr>
497 </tbody>
498 </table>
500 <div class="clearfloat">
501 <?php
502 // Check all tables url
503 $checkall_url = 'db_structure.php?' . PMA_generate_common_url($db);
505 <img class="selectallarrow" src="<?php echo $pmaThemeImage .'arrow_'.$text_dir.'.png'; ?>"
506 width="38" height="22" alt="<?php echo $strWithChecked; ?>" />
507 <a href="<?php echo $checkall_url; ?>&amp;checkall=1"
508 onclick="if (markAllRows('tablesForm')) return false;">
509 <?php echo $strCheckAll; ?></a>
511 <a href="<?php echo $checkall_url; ?>"
512 onclick="if (unMarkAllRows('tablesForm')) return false;">
513 <?php echo $strUncheckAll; ?></a>
514 <?php if ($overhead_check != '') { ?>
516 <a href="#" onclick="unMarkAllRows('tablesForm');
517 <?php echo $overhead_check; ?> return false;">
518 <?php echo $strCheckOverhead; ?></a>
519 <?php } ?>
521 <select name="submit_mult" onchange="this.form.submit();" style="margin: 0 3em 0 3em;">
522 <?php
523 echo ' <option value="' . $strWithChecked . '" selected="selected">'
524 . $strWithChecked . '</option>' . "\n";
525 echo ' <option value="' . $strEmpty . '" >'
526 . $strEmpty . '</option>' . "\n";
527 echo ' <option value="' . $strDrop . '" >'
528 . $strDrop . '</option>' . "\n";
529 echo ' <option value="' . $strPrintView . '" >'
530 . $strPrintView . '</option>' . "\n";
531 echo ' <option value="' . $strCheckTable . '" >'
532 . $strCheckTable . '</option>' . "\n";
533 echo ' <option value="' . $strOptimizeTable . '" >'
534 . $strOptimizeTable . '</option>' . "\n";
535 echo ' <option value="' . $strRepairTable . '" >'
536 . $strRepairTable . '</option>' . "\n";
537 echo ' <option value="' . $strAnalyzeTable . '" >'
538 . $strAnalyzeTable . '</option>' . "\n";
539 echo ' <option value="' . $strExport . '" >'
540 . $strExport . '</option>' . "\n";
542 </select>
543 <script type="text/javascript">
544 <!--
545 // Fake js to allow the use of the <noscript> tag
546 //-->
547 </script>
548 <noscript>
549 <input type="submit" value="<?php echo $strGo; ?>" />
550 </noscript>
551 <?php echo implode("\n", $hidden_fields) . "\n"; ?>
552 </div>
553 </form>
554 <?php
555 // display again the table list navigator
556 PMA_listNavigator($total_num_tables, $pos, $_url_params, 'db_structure.php', 'frame_content', $GLOBALS['cfg']['MaxTableList']);
558 <hr />
560 <?php
561 // Routines
562 require './libraries/db_routines.inc.php';
564 // Events
565 if (PMA_MYSQL_INT_VERSION > 50100) {
566 require './libraries/db_events.inc.php';
570 * Work on the database
571 * redesigned 2004-05-08 by mkkeck
573 /* DATABASE WORK */
574 /* Printable view of a table */
575 echo '<p>';
576 echo '<a href="db_printview.php?' . $url_query . '">';
577 if ($cfg['PropertiesIconic']) {
578 echo '<img class="icon" src="' . $pmaThemeImage
579 .'b_print.png" width="16" height="16" alt="" />';
581 echo $strPrintView . '</a> ';
583 echo '<a href="./db_datadict.php?' . $url_query . '">';
584 if ($cfg['PropertiesIconic']) {
585 echo '<img class="icon" src="' . $pmaThemeImage
586 .'b_tblanalyse.png" width="16" height="16" alt="" />';
588 echo $strDataDict . '</a>';
589 echo '</p>';
591 if (empty($db_is_information_schema)) {
592 require './libraries/display_create_table.lib.php';
593 } // end if (Create Table dialog)
596 * Displays the footer
598 require_once './libraries/footer.inc.php';