Merge branch 'QA_3_4'
[phpmyadmin.git] / db_structure.php
blob3926eaef82f75947ca5e66ace000bdee3bfc7d46
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
5 * @package phpMyAdmin
6 */
8 /**
11 require_once './libraries/common.inc.php';
13 $GLOBALS['js_include'][] = 'jquery/jquery-ui-1.8.custom.js';
14 $GLOBALS['js_include'][] = 'db_structure.js';
15 $GLOBALS['js_include'][] = 'tbl_change.js';
16 $GLOBALS['js_include'][] = 'jquery/timepicker.js';
18 /**
19 * Prepares the tables list if the user where not redirected to this script
20 * because there is no table in the database ($is_info is true)
22 if (empty($is_info)) {
23 // Drops/deletes/etc. multiple tables if required
24 if ((!empty($submit_mult) && isset($selected_tbl))
25 || isset($mult_btn)
26 ) {
27 $action = 'db_structure.php';
28 $err_url = 'db_structure.php?'. PMA_generate_common_url($db);
30 // see bug #2794840; in this case, code path is:
31 // db_structure.php -> libraries/mult_submits.inc.php -> sql.php
32 // -> db_structure.php and if we got an error on the multi submit,
33 // we must display it here and not call again mult_submits.inc.php
34 if (! isset($error) || false === $error) {
35 include './libraries/mult_submits.inc.php';
37 if (empty($message)) {
38 $message = PMA_Message::success();
41 include './libraries/db_common.inc.php';
42 $url_query .= '&amp;goto=db_structure.php';
44 // Gets the database structure
45 $sub_part = '_structure';
46 include './libraries/db_info.inc.php';
48 if (!PMA_DRIZZLE) {
49 include './libraries/replication.inc.php';
50 } else {
51 $server_slave_status = false;
55 require_once './libraries/bookmark.lib.php';
57 require_once './libraries/mysql_charsets.lib.php';
58 $db_collation = PMA_getDbCollation($db);
60 // in a separate file to avoid redeclaration of functions in some code paths
61 require_once './libraries/db_structure.lib.php';
62 $titles = PMA_buildActionTitles();
64 // 1. No tables
66 if ($num_tables == 0) {
67 echo '<p>' . __('No tables found in database') . '</p>' . "\n";
69 if (empty($db_is_information_schema)) {
70 include './libraries/display_create_table.lib.php';
71 } // end if (Create Table dialog)
73 /**
74 * Displays the footer
76 include_once './libraries/footer.inc.php';
77 exit;
80 // else
81 // 2. Shows table informations
83 /**
84 * Displays the tables list
86 echo '<div id="tableslistcontainer">';
87 $_url_params = array(
88 'pos' => $pos,
89 'db' => $db);
91 // Add the sort options if they exists
92 if (isset($_REQUEST['sort'])) {
93 $_url_params['sort'] = $_REQUEST['sort'];
96 if (isset($_REQUEST['sort_order'])) {
97 $_url_params['sort_order'] = $_REQUEST['sort_order'];
100 PMA_listNavigator(
101 $total_num_tables, $pos, $_url_params, 'db_structure.php',
102 'frame_content', $GLOBALS['cfg']['MaxTableList']
106 <form method="post" action="db_structure.php" name="tablesForm" id="tablesForm">
107 <?php
108 echo PMA_generate_common_hidden_inputs($db);
110 PMA_TableHeader($db_is_information_schema, $server_slave_status);
112 $i = $sum_entries = 0;
113 $sum_size = (double) 0;
114 $overhead_size = (double) 0;
115 $overhead_check = '';
116 $checked = !empty($checkall) ? ' checked="checked"' : '';
117 $num_columns = $cfg['PropertiesNumColumns'] > 1
118 ? ceil($num_tables / $cfg['PropertiesNumColumns']) + 1
119 : 0;
120 $row_count = 0;
123 $hidden_fields = array();
124 $odd_row = true;
125 $sum_row_count_pre = '';
127 $tableReductionCount = 0; // the amount to reduce the table count by
129 foreach ($tables as $keyname => $each_table) {
130 if (PMA_BS_IsHiddenTable($keyname)) {
131 $tableReductionCount++;
132 continue;
135 // Get valid statistics whatever is the table type
137 $table_is_view = false;
138 $table_encoded = urlencode($each_table['TABLE_NAME']);
139 // Sets parameters for links
140 $tbl_url_query = $url_query . '&amp;table=' . $table_encoded;
141 // do not list the previous table's size info for a view
142 $formatted_size = '-';
143 $unit = '';
145 switch ( $each_table['ENGINE']) {
146 // MyISAM, ISAM or Heap table: Row count, data size and index size
147 // are accurate; data size is accurate for ARCHIVE
148 case 'MyISAM' :
149 case 'ISAM' :
150 case 'HEAP' :
151 case 'MEMORY' :
152 case 'ARCHIVE' :
153 case 'Aria' :
154 case 'Maria' :
155 if ($db_is_information_schema) {
156 $each_table['Rows'] = PMA_Table::countRecords(
157 $db, $each_table['Name']
161 if ($is_show_stats) {
162 $tblsize = doubleval($each_table['Data_length']) + doubleval($each_table['Index_length']);
163 $sum_size += $tblsize;
164 list($formatted_size, $unit) = PMA_formatByteDown($tblsize, 3, ($tblsize > 0) ? 1 : 0);
165 if (isset($each_table['Data_free']) && $each_table['Data_free'] > 0) {
166 list($formatted_overhead, $overhead_unit) = PMA_formatByteDown($each_table['Data_free'], 3, ($each_table['Data_free'] > 0) ? 1 : 0);
167 $overhead_size += $each_table['Data_free'];
170 break;
171 case 'InnoDB' :
172 case 'PBMS' :
173 // InnoDB table: Row count is not accurate but data and index sizes are.
174 // PBMS table in Drizzle: TABLE_ROWS is taken from table cache, so it may be unavailable
176 if (($each_table['ENGINE'] == 'InnoDB'
177 && $each_table['TABLE_ROWS'] < $GLOBALS['cfg']['MaxExactCount'])
178 || !isset($each_table['TABLE_ROWS'])
180 $each_table['COUNTED'] = true;
181 $each_table['TABLE_ROWS'] = PMA_Table::countRecords(
182 $db, $each_table['TABLE_NAME'],
183 $force_exact = true, $is_view = false
185 } else {
186 $each_table['COUNTED'] = false;
189 // Drizzle doesn't provide data and index length, check for null
190 if ($is_show_stats && $each_table['Data_length'] !== null) {
191 $tblsize = $each_table['Data_length'] + $each_table['Index_length'];
192 $sum_size += $tblsize;
193 list($formatted_size, $unit) = PMA_formatByteDown($tblsize, 3, ($tblsize > 0) ? 1 : 0);
195 //$display_rows = ' - ';
196 break;
197 // Mysql 5.0.x (and lower) uses MRG_MyISAM and MySQL 5.1.x (and higher) uses MRG_MYISAM
198 // Both are aliases for MERGE
199 case 'MRG_MyISAM' :
200 case 'MRG_MYISAM' :
201 case 'MERGE' :
202 case 'BerkeleyDB' :
203 // Merge or BerkleyDB table: Only row count is accurate.
204 if ($is_show_stats) {
205 $formatted_size = ' - ';
206 $unit = '';
208 break;
209 // for a view, the ENGINE is sometimes reported as null,
210 // or on some servers it's reported as "SYSTEM VIEW"
211 case null :
212 case 'SYSTEM VIEW' :
213 case 'FunctionEngine' :
214 // if table is broken, Engine is reported as null, so one more test
215 if ($each_table['TABLE_TYPE'] == 'VIEW') {
216 // countRecords() takes care of $cfg['MaxExactCountViews']
217 $each_table['TABLE_ROWS'] = PMA_Table::countRecords(
218 $db, $each_table['TABLE_NAME'],
219 $force_exact = true, $is_view = true
221 $table_is_view = true;
223 break;
224 default :
225 // Unknown table type.
226 if ($is_show_stats) {
227 $formatted_size = 'unknown';
228 $unit = '';
230 } // end switch
232 if (! PMA_Table::isMerge($db, $each_table['TABLE_NAME'])) {
233 $sum_entries += $each_table['TABLE_ROWS'];
236 if (isset($each_table['Collation'])) {
237 $collation = '<dfn title="'
238 . PMA_getCollationDescr($each_table['Collation']) . '">'
239 . $each_table['Collation'] . '</dfn>';
240 } else {
241 $collation = '---';
244 if ($is_show_stats) {
245 if (isset($formatted_overhead)) {
246 $overhead = '<a href="tbl_structure.php?'
247 . $tbl_url_query . '#showusage">' . $formatted_overhead
248 . ' ' . $overhead_unit . '</a>' . "\n";
249 unset($formatted_overhead);
250 $overhead_check .=
251 "document.getElementById('checkbox_tbl_" . ($i + 1) . "').checked = true;";
252 } else {
253 $overhead = '-';
255 } // end if
257 $alias = (!empty($tooltip_aliasname) && isset($tooltip_aliasname[$each_table['TABLE_NAME']]))
258 ? str_replace(' ', '&nbsp;', htmlspecialchars($tooltip_truename[$each_table['TABLE_NAME']]))
259 : str_replace(' ', '&nbsp;', htmlspecialchars($each_table['TABLE_NAME']));
260 $truename = (!empty($tooltip_truename) && isset($tooltip_truename[$each_table['TABLE_NAME']]))
261 ? str_replace(' ', '&nbsp;', htmlspecialchars($tooltip_truename[$each_table['TABLE_NAME']]))
262 : str_replace(' ', '&nbsp;', htmlspecialchars($each_table['TABLE_NAME']));
264 $i++;
266 $row_count++;
267 if ($table_is_view) {
268 $hidden_fields[] = '<input type="hidden" name="views[]" value="'
269 . htmlspecialchars($each_table['TABLE_NAME']) . '" />';
272 if ($each_table['TABLE_ROWS'] > 0 || $table_is_view) {
273 $browse_table = '<a href="sql.php?' . $tbl_url_query . '&amp;pos=0">' . $titles['Browse'] . '</a>';
274 $search_table = '<a href="tbl_select.php?' . $tbl_url_query . '">' . $titles['Search'] . '</a>';
275 $browse_table_label = '<a href="sql.php?' . $tbl_url_query . '&amp;pos=0">' . $truename . '</a>';
276 } else {
277 $browse_table = $titles['NoBrowse'];
278 $search_table = $titles['NoSearch'];
279 $browse_table_label = '<a href="tbl_structure.php?' . $tbl_url_query . '">' . $truename . '</a>';
282 if (! $db_is_information_schema) {
283 if (! empty($each_table['TABLE_ROWS'])) {
284 $empty_table = '<a ';
285 if ($GLOBALS['cfg']['AjaxEnable']) {
286 $empty_table .= 'class="truncate_table_anchor"';
288 $empty_table .= ' href="sql.php?' . $tbl_url_query
289 . '&amp;sql_query=';
290 $empty_table .= urlencode('TRUNCATE ' . PMA_backquote($each_table['TABLE_NAME']))
291 . '&amp;message_to_show='
292 . urlencode(sprintf(__('Table %s has been emptied'), htmlspecialchars($each_table['TABLE_NAME'])))
293 .'">' . $titles['Empty'] . '</a>';
294 } else {
295 $empty_table = $titles['NoEmpty'];
297 $drop_query = 'DROP '
298 . ($table_is_view ? 'VIEW' : 'TABLE')
299 . ' ' . PMA_backquote($each_table['TABLE_NAME']);
300 $drop_message = sprintf(
301 $table_is_view ? __('View %s has been dropped') : __('Table %s has been dropped'),
302 str_replace(' ', '&nbsp;', htmlspecialchars($each_table['TABLE_NAME']))
306 $tracking_icon = '';
307 if (PMA_Tracker::isActive()) {
308 if (PMA_Tracker::isTracked($GLOBALS["db"], $truename)) {
309 $tracking_icon = '<a href="tbl_tracking.php?' . $url_query
310 . '&amp;table=' . $truename . '"><img class="icon ic_eye" src="themes/dot.gif" alt="'
311 . __('Tracking is active.') . '" title="' . __('Tracking is active.') . '" /></a>';
312 } elseif (PMA_Tracker::getVersion($GLOBALS["db"], $truename) > 0) {
313 $tracking_icon = '<a href="tbl_tracking.php?' . $url_query
314 . '&amp;table=' . $truename . '"><img class="icon ic_eye" src="themes/dot.gif" alt="'
315 . __('Tracking is not active.') . '" title="' . __('Tracking is not active.') . '" /></a>';
319 if ($num_columns > 0
320 && $num_tables > $num_columns
321 && ($row_count % $num_columns) == 0
323 $row_count = 1;
324 $odd_row = true;
326 </tr>
327 </tbody>
328 </table>
329 <?php
330 PMA_TableHeader(false, $server_slave_status);
333 $ignored = false;
334 $do = false;
336 if ($server_slave_status) {
337 ////////////////////////////////////////////////////////////////
339 if ((strlen(array_search($truename, $server_slave_Do_Table)) > 0)
340 || (strlen(array_search($db, $server_slave_Do_DB)) > 0)
341 || (count($server_slave_Do_DB) == 1 && count($server_slave_Ignore_DB) == 1)
343 $do = true;
345 foreach ($server_slave_Wild_Do_Table as $db_table) {
346 $table_part = PMA_extract_db_or_table($db_table, 'table');
347 if (($db == PMA_extract_db_or_table($db_table, 'db'))
348 && (preg_match("@^" . substr($table_part, 0, strlen($table_part) - 1) . "@", $truename))
350 $do = true;
353 ////////////////////////////////////////////////////////////////////
354 if ((strlen(array_search($truename, $server_slave_Ignore_Table)) > 0)
355 || (strlen(array_search($db, $server_slave_Ignore_DB)) > 0)
357 $ignored = true;
359 foreach ($server_slave_Wild_Ignore_Table as $db_table) {
360 $table_part = PMA_extract_db_or_table($db_table, 'table');
361 if (($db == PMA_extract_db_or_table($db_table))
362 && (preg_match("@^" . substr($table_part, 0, strlen($table_part) - 1) . "@", $truename))
364 $ignored = true;
367 unset($table_part);
370 <tr class="<?php echo $odd_row ? 'odd' : 'even'; $odd_row = ! $odd_row; ?>">
371 <td align="center">
372 <input type="checkbox" name="selected_tbl[]"
373 value="<?php echo htmlspecialchars($each_table['TABLE_NAME']); ?>"
374 id="checkbox_tbl_<?php echo $i; ?>"<?php echo $checked; ?> /></td>
375 <th><?php echo $browse_table_label; ?>
376 <?php echo (! empty($tracking_icon) ? $tracking_icon : ''); ?>
377 </th>
378 <?php if ($server_slave_status) { ?><td align="center"><?php
379 echo $ignored
380 ? ' <img class="icon ic_s_cancel" src="themes/dot.gif" alt="NOT REPLICATED" />'
381 : ''.
383 ? ' <img class="icon ic_s_success" src="themes/dot.gif" alt="REPLICATED" />'
384 : ''; ?></td><?php } ?>
385 <td align="center"><?php echo $browse_table; ?></td>
386 <td align="center">
387 <a href="tbl_structure.php?<?php echo $tbl_url_query; ?>">
388 <?php echo $titles['Structure']; ?></a></td>
389 <td align="center"><?php echo $search_table; ?></td>
390 <?php if (! $db_is_information_schema) { ?>
391 <td align="center" class="insert_table">
392 <a <?php echo ($GLOBALS['cfg']['AjaxEnable'] ? 'class="ajax"' : ''); ?> href="tbl_change.php?<?php echo $tbl_url_query; ?>">
393 <?php echo $titles['Insert']; ?></a></td>
394 <td align="center"><?php echo $empty_table; ?></td>
395 <td align="center">
396 <a <?php echo ($GLOBALS['cfg']['AjaxEnable'] ? 'class="drop_table_anchor"' : ''); ?> href="sql.php?<?php echo $tbl_url_query;
397 ?>&amp;reload=1&amp;purge=1&amp;sql_query=<?php
398 echo urlencode($drop_query); ?>&amp;message_to_show=<?php
399 echo urlencode($drop_message); ?>" >
400 <?php echo $titles['Drop']; ?></a></td>
401 <?php } // end if (! $db_is_information_schema)
403 // there is a null value in the ENGINE
404 // - when the table needs to be repaired, or
405 // - when it's a view
406 // so ensure that we'll display "in use" below for a table
407 // that needs to be repaired
408 if (isset($each_table['TABLE_ROWS']) && ($each_table['ENGINE'] != null || $table_is_view)) {
409 $row_count_pre = '';
410 $show_superscript = '';
411 if ($table_is_view) {
412 // Drizzle views use FunctionEngine, and the only place where they are available are I_S and D_D
413 // schemas, where we do exact counting
414 if ($each_table['TABLE_ROWS'] >= $GLOBALS['cfg']['MaxExactCountViews']
415 && $each_table['ENGINE'] != 'FunctionEngine'
417 $row_count_pre = '~';
418 $sum_row_count_pre = '~';
419 $show_superscript = PMA_showHint(
420 PMA_sanitize(
421 sprintf(
422 __('This view has at least this number of rows. Please refer to %sdocumentation%s.'),
423 '[a@./Documentation.html#cfg_MaxExactCountViews@_blank]',
424 '[/a]'
429 } elseif ($each_table['ENGINE'] == 'InnoDB' && (! $each_table['COUNTED'])) {
430 // InnoDB table: we did not get an accurate row count
431 $row_count_pre = '~';
432 $sum_row_count_pre = '~';
433 $show_superscript = '';
436 <td class="value tbl_rows"><?php echo $row_count_pre . PMA_formatNumber($each_table['TABLE_ROWS'], 0) . $show_superscript; ?></td>
437 <?php if (!($cfg['PropertiesNumColumns'] > 1)) { ?>
438 <td nowrap="nowrap"><?php echo ($table_is_view ? __('View') : $each_table['ENGINE']); ?></td>
439 <?php if (isset($collation)) { ?>
440 <td nowrap="nowrap"><?php echo $collation ?></td>
441 <?php } ?>
442 <?php } ?>
444 <?php if ($is_show_stats) { ?>
445 <td class="value tbl_size"><a
446 href="tbl_structure.php?<?php echo $tbl_url_query; ?>#showusage"
447 ><?php echo $formatted_size . ' ' . $unit; ?></a></td>
448 <td class="value"><?php echo $overhead; ?></td>
449 <?php } // end if ?>
450 <?php } elseif ($table_is_view) { ?>
451 <td class="value">-</td>
452 <td><?php echo __('View'); ?></td>
453 <td>---</td>
454 <?php if ($is_show_stats) { ?>
455 <td class="value">-</td>
456 <td class="value">-</td>
457 <?php } ?>
458 <?php } else { ?>
459 <td colspan="<?php echo ($colspan_for_structure - ($db_is_information_schema ? 5 : 8)) ?>"
460 align="center">
461 <?php echo __('in use'); ?></td>
462 <?php } // end if (isset($each_table['TABLE_ROWS'])) else ?>
463 </tr>
464 <?php
465 } // end foreach
467 // Show Summary
468 if ($is_show_stats) {
469 list($sum_formatted, $unit) = PMA_formatByteDown($sum_size, 3, 1);
470 list($overhead_formatted, $overhead_unit) =
471 PMA_formatByteDown($overhead_size, 3, 1);
474 </tbody>
475 <tbody id="tbl_summary_row">
476 <tr><th></th>
477 <th align="center" nowrap="nowrap">
478 <?php
479 // for blobstreaming - if the number of tables is 0, set tableReductionCount to 0
480 // (we don't want negative numbers here)
481 if ($num_tables == 0) {
482 $tableReductionCount = 0;
484 echo sprintf(
485 _ngettext('%s table', '%s tables', $num_tables - $tableReductionCount),
486 PMA_formatNumber($num_tables - $tableReductionCount, 0)
489 </th>
490 <?php
491 if ($server_slave_status) {
492 echo ' <th>' . __('Replication') . '</th>' . "\n";
495 <th colspan="<?php echo ($db_is_information_schema ? 3 : 6) ?>" align="center">
496 <?php echo __('Sum'); ?></th>
497 <th class="value tbl_rows"><?php echo $sum_row_count_pre . PMA_formatNumber($sum_entries, 0); ?></th>
498 <?php
499 if (!($cfg['PropertiesNumColumns'] > 1)) {
500 $default_engine = PMA_DBI_fetch_value('SHOW VARIABLES LIKE \'storage_engine\';', 0, 1);
501 echo ' <th align="center">' . "\n"
502 . ' <dfn title="'
503 . sprintf(__('%s is the default storage engine on this MySQL server.'), $default_engine)
504 . '">' .$default_engine . '</dfn></th>' . "\n";
505 // we got a case where $db_collation was empty
506 echo ' <th align="center">' . "\n";
507 if (! empty($db_collation)) {
508 echo ' <dfn title="'
509 . PMA_getCollationDescr($db_collation) . ' (' . __('Default') . ')">' . $db_collation
510 . '</dfn>';
512 echo '</th>';
515 if ($is_show_stats) {
517 <th class="value tbl_size"><?php echo $sum_formatted . ' ' . $unit; ?></th>
518 <th class="value"><?php echo $overhead_formatted . ' ' . $overhead_unit; ?></th>
519 <?php
522 </tr>
523 </tbody>
524 </table>
526 <div class="clearfloat">
527 <?php
528 // Check all tables url
529 $checkall_url = 'db_structure.php?' . PMA_generate_common_url($db);
531 <img class="selectallarrow" src="<?php echo $pmaThemeImage .'arrow_'.$text_dir.'.png'; ?>"
532 width="38" height="22" alt="<?php echo __('With selected:'); ?>" />
533 <a href="<?php echo $checkall_url; ?>&amp;checkall=1"
534 onclick="if (markAllRows('tablesForm')) return false;">
535 <?php echo __('Check All'); ?></a>
537 <a href="<?php echo $checkall_url; ?>"
538 onclick="if (unMarkAllRows('tablesForm')) return false;">
539 <?php echo __('Uncheck All'); ?></a>
540 <?php if ($overhead_check != '') { ?>
542 <a href="#" onclick="unMarkAllRows('tablesForm');
543 <?php echo $overhead_check; ?> return false;">
544 <?php echo __('Check tables having overhead'); ?></a>
545 <?php } ?>
547 <select name="submit_mult" class="autosubmit" style="margin: 0 3em 0 3em;">
548 <?php
549 echo ' <option value="' . __('With selected:') . '" selected="selected">'
550 . __('With selected:') . '</option>' . "\n";
551 echo ' <option value="export" >'
552 . __('Export') . '</option>' . "\n";
553 echo ' <option value="print" >'
554 . __('Print view') . '</option>' . "\n";
556 if (!$db_is_information_schema && !$cfg['DisableMultiTableMaintenance']) {
557 echo ' <option value="empty_tbl" >'
558 . __('Empty') . '</option>' . "\n";
559 echo ' <option value="drop_tbl" >'
560 . __('Drop') . '</option>' . "\n";
561 echo ' <option value="check_tbl" >'
562 . __('Check table') . '</option>' . "\n";
563 if (!PMA_DRIZZLE) {
564 echo ' <option value="optimize_tbl" >'
565 . __('Optimize table') . '</option>' . "\n";
566 echo ' <option value="repair_tbl" >'
567 . __('Repair table') . '</option>' . "\n";
569 echo ' <option value="analyze_tbl" >'
570 . __('Analyze table') . '</option>' . "\n";
571 echo ' <option value="add_prefix_tbl" >'
572 . __('Add prefix to table') . '</option>' . "\n";
573 echo ' <option value="replace_prefix_tbl" >'
574 . __('Replace table prefix') . '</option>' . "\n";
575 echo ' <option value="copy_tbl_change_prefix" >'
576 . __('Copy table with prefix') . '</option>' . "\n";
579 </select>
580 <script type="text/javascript">
581 <!--
582 // Fake js to allow the use of the <noscript> tag
583 //-->
584 </script>
585 <noscript>
586 <input type="submit" value="<?php echo __('Go'); ?>" />
587 </noscript>
588 <?php echo implode("\n", $hidden_fields) . "\n"; ?>
589 </div>
590 </form>
591 <?php
592 // display again the table list navigator
593 PMA_listNavigator(
594 $total_num_tables, $pos, $_url_params, 'db_structure.php',
595 'frame_content', $GLOBALS['cfg']['MaxTableList']
598 </div>
599 <hr />
601 <?php
604 * Work on the database
606 /* DATABASE WORK */
607 /* Printable view of a table */
608 echo '<p>';
609 echo '<a href="db_printview.php?' . $url_query . '">';
610 echo PMA_getIcon('b_print.png', __('Print view'), true) . '</a>';
612 echo '<a href="./db_datadict.php?' . $url_query . '">';
613 echo PMA_getIcon('b_tblanalyse.png', __('Data Dictionary'), true) . '</a>';
614 echo '</p>';
616 if (empty($db_is_information_schema)) {
617 include './libraries/display_create_table.lib.php';
618 } // end if (Create Table dialog)
621 * Displays the footer
623 require './libraries/footer.inc.php';