Drizzle: Respect MaxCharactersInDisplayedSQL in process list on Server Status page
[phpmyadmin.git] / db_structure.php
blob160e9da8dfa8cf79c18432c24f77877fa8205e0c
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 $action = 'db_structure.php';
27 $err_url = 'db_structure.php?'. PMA_generate_common_url($db);
29 // see bug #2794840; in this case, code path is:
30 // db_structure.php -> libraries/mult_submits.inc.php -> sql.php
31 // -> db_structure.php and if we got an error on the multi submit,
32 // we must display it here and not call again mult_submits.inc.php
33 if (! isset($error) || false === $error) {
34 require './libraries/mult_submits.inc.php';
36 if (empty($message)) {
37 $message = PMA_Message::success();
40 require './libraries/db_common.inc.php';
41 $url_query .= '&amp;goto=db_structure.php';
43 // Gets the database structure
44 $sub_part = '_structure';
45 require './libraries/db_info.inc.php';
47 if (!PMA_DRIZZLE) {
48 require './libraries/replication.inc.php';
49 } else {
50 $server_slave_status = false;
54 require_once './libraries/bookmark.lib.php';
56 require_once './libraries/mysql_charsets.lib.php';
57 $db_collation = PMA_getDbCollation($db);
59 // in a separate file to avoid redeclaration of functions in some code paths
60 require_once './libraries/db_structure.lib.php';
61 $titles = PMA_buildActionTitles();
63 // 1. No tables
64 if ($num_tables == 0) {
65 echo '<p>' . __('No tables found in database') . '</p>' . "\n";
67 if (empty($db_is_information_schema)) {
68 require './libraries/display_create_table.lib.php';
69 } // end if (Create Table dialog)
71 /**
72 * Displays the footer
74 require_once './libraries/footer.inc.php';
75 exit;
78 // else
79 // 2. Shows table informations
81 /**
82 * Displays the tables list
84 echo '<div id="tableslistcontainer">';
85 $_url_params = array(
86 'pos' => $pos,
87 'db' => $db);
89 // Add the sort options if they exists
90 if (isset($_REQUEST['sort'])) {
91 $_url_params['sort'] = $_REQUEST['sort'];
94 if (isset($_REQUEST['sort_order'])) {
95 $_url_params['sort_order'] = $_REQUEST['sort_order'];
98 PMA_listNavigator($total_num_tables, $pos, $_url_params, 'db_structure.php', 'frame_content', $GLOBALS['cfg']['MaxTableList']);
101 <form method="post" action="db_structure.php" name="tablesForm" id="tablesForm">
102 <?php
103 echo PMA_generate_common_hidden_inputs($db);
105 PMA_TableHeader($db_is_information_schema, $server_slave_status);
107 $i = $sum_entries = 0;
108 $sum_size = (double) 0;
109 $overhead_size = (double) 0;
110 $overhead_check = '';
111 $checked = !empty($checkall) ? ' checked="checked"' : '';
112 $num_columns = $cfg['PropertiesNumColumns'] > 1 ? ceil($num_tables / $cfg['PropertiesNumColumns']) + 1 : 0;
113 $row_count = 0;
116 $hidden_fields = array();
117 $odd_row = true;
118 $sum_row_count_pre = '';
120 $tableReductionCount = 0; // the amount to reduce the table count by
122 foreach ($tables as $keyname => $each_table) {
123 if (PMA_BS_IsHiddenTable($keyname)) {
124 $tableReductionCount++;
125 continue;
128 // Get valid statistics whatever is the table type
130 $table_is_view = false;
131 $table_encoded = urlencode($each_table['TABLE_NAME']);
132 // Sets parameters for links
133 $tbl_url_query = $url_query . '&amp;table=' . $table_encoded;
134 // do not list the previous table's size info for a view
135 $formatted_size = '-';
136 $unit = '';
138 switch ( $each_table['ENGINE']) {
139 // MyISAM, ISAM or Heap table: Row count, data size and index size
140 // are accurate; data size is accurate for ARCHIVE
141 case 'MyISAM' :
142 case 'ISAM' :
143 case 'HEAP' :
144 case 'MEMORY' :
145 case 'ARCHIVE' :
146 case 'Aria' :
147 case 'Maria' :
148 if ($db_is_information_schema) {
149 $each_table['Rows'] = PMA_Table::countRecords($db,
150 $each_table['Name']);
153 if ($is_show_stats) {
154 $tblsize = doubleval($each_table['Data_length']) + doubleval($each_table['Index_length']);
155 $sum_size += $tblsize;
156 list($formatted_size, $unit) = PMA_formatByteDown($tblsize, 3, ($tblsize > 0) ? 1 : 0);
157 if (isset($each_table['Data_free']) && $each_table['Data_free'] > 0) {
158 list($formatted_overhead, $overhead_unit) = PMA_formatByteDown($each_table['Data_free'], 3, ($each_table['Data_free'] > 0) ? 1 : 0);
159 $overhead_size += $each_table['Data_free'];
162 break;
163 case 'InnoDB' :
164 case 'PBMS' :
165 // InnoDB table: Row count is not accurate but data and index sizes are.
166 // PBMS table in Drizzle: TABLE_ROWS is taken from table cache, so it may be unavailable
168 if (($each_table['ENGINE'] == 'InnoDB' && $each_table['TABLE_ROWS'] < $GLOBALS['cfg']['MaxExactCount'])
169 || !isset($each_table['TABLE_ROWS'])) {
170 $each_table['COUNTED'] = true;
171 $each_table['TABLE_ROWS'] = PMA_Table::countRecords($db,
172 $each_table['TABLE_NAME'], $force_exact = true,
173 $is_view = false);
174 } else {
175 $each_table['COUNTED'] = false;
178 // Drizzle doesn't provide data and index length, check for null
179 if ($is_show_stats && $each_table['Data_length'] !== null) {
180 $tblsize = $each_table['Data_length'] + $each_table['Index_length'];
181 $sum_size += $tblsize;
182 list($formatted_size, $unit) = PMA_formatByteDown($tblsize, 3, ($tblsize > 0) ? 1 : 0);
184 //$display_rows = ' - ';
185 break;
186 // Mysql 5.0.x (and lower) uses MRG_MyISAM and MySQL 5.1.x (and higher) uses MRG_MYISAM
187 // Both are aliases for MERGE
188 case 'MRG_MyISAM' :
189 case 'MRG_MYISAM' :
190 case 'MERGE' :
191 case 'BerkeleyDB' :
192 // Merge or BerkleyDB table: Only row count is accurate.
193 if ($is_show_stats) {
194 $formatted_size = ' - ';
195 $unit = '';
197 break;
198 // for a view, the ENGINE is sometimes reported as null,
199 // or on some servers it's reported as "SYSTEM VIEW"
200 case null :
201 case 'SYSTEM VIEW' :
202 case 'FunctionEngine' :
203 // if table is broken, Engine is reported as null, so one more test
204 if ($each_table['TABLE_TYPE'] == 'VIEW') {
205 // countRecords() takes care of $cfg['MaxExactCountViews']
206 $each_table['TABLE_ROWS'] = PMA_Table::countRecords($db,
207 $each_table['TABLE_NAME'], $force_exact = true,
208 $is_view = true);
209 $table_is_view = true;
211 break;
212 default :
213 // Unknown table type.
214 if ($is_show_stats) {
215 $formatted_size = 'unknown';
216 $unit = '';
218 } // end switch
220 if (! PMA_Table::isMerge($db, $each_table['TABLE_NAME'])) {
221 $sum_entries += $each_table['TABLE_ROWS'];
224 if (isset($each_table['Collation'])) {
225 $collation = '<dfn title="'
226 . PMA_getCollationDescr($each_table['Collation']) . '">'
227 . $each_table['Collation'] . '</dfn>';
228 } else {
229 $collation = '---';
232 if ($is_show_stats) {
233 if (isset($formatted_overhead)) {
234 $overhead = '<a href="tbl_structure.php?'
235 . $tbl_url_query . '#showusage">' . $formatted_overhead
236 . ' ' . $overhead_unit . '</a>' . "\n";
237 unset($formatted_overhead);
238 $overhead_check .=
239 "document.getElementById('checkbox_tbl_" . ($i + 1) . "').checked = true;";
240 } else {
241 $overhead = '-';
243 } // end if
245 $alias = (!empty($tooltip_aliasname) && isset($tooltip_aliasname[$each_table['TABLE_NAME']]))
246 ? str_replace(' ', '&nbsp;', htmlspecialchars($tooltip_truename[$each_table['TABLE_NAME']]))
247 : str_replace(' ', '&nbsp;', htmlspecialchars($each_table['TABLE_NAME']));
248 $truename = (!empty($tooltip_truename) && isset($tooltip_truename[$each_table['TABLE_NAME']]))
249 ? str_replace(' ', '&nbsp;', htmlspecialchars($tooltip_truename[$each_table['TABLE_NAME']]))
250 : str_replace(' ', '&nbsp;', htmlspecialchars($each_table['TABLE_NAME']));
252 $i++;
254 $row_count++;
255 if ($table_is_view) {
256 $hidden_fields[] = '<input type="hidden" name="views[]" value="' . htmlspecialchars($each_table['TABLE_NAME']) . '" />';
259 if ($each_table['TABLE_ROWS'] > 0 || $table_is_view) {
260 $browse_table = '<a href="sql.php?' . $tbl_url_query . '&amp;pos=0">' . $titles['Browse'] . '</a>';
261 $search_table = '<a href="tbl_select.php?' . $tbl_url_query . '">' . $titles['Search'] . '</a>';
262 $browse_table_label = '<a href="sql.php?' . $tbl_url_query . '&amp;pos=0">' . $truename . '</a>';
263 } else {
264 $browse_table = $titles['NoBrowse'];
265 $search_table = $titles['NoSearch'];
266 $browse_table_label = '<a href="tbl_structure.php?' . $tbl_url_query . '">' . $truename . '</a>';
269 if (! $db_is_information_schema) {
270 if (! empty($each_table['TABLE_ROWS'])) {
271 $empty_table = '<a ';
272 if ($GLOBALS['cfg']['AjaxEnable']) {
273 $empty_table .= 'class="truncate_table_anchor"';
275 $empty_table .= ' href="sql.php?' . $tbl_url_query
276 . '&amp;sql_query=';
277 $empty_table .= urlencode('TRUNCATE ' . PMA_backquote($each_table['TABLE_NAME']))
278 . '&amp;message_to_show='
279 . urlencode(sprintf(__('Table %s has been emptied'), htmlspecialchars($each_table['TABLE_NAME'])))
280 .'">' . $titles['Empty'] . '</a>';
281 } else {
282 $empty_table = $titles['NoEmpty'];
284 $drop_query = 'DROP '
285 . ($table_is_view ? 'VIEW' : 'TABLE')
286 . ' ' . PMA_backquote($each_table['TABLE_NAME']);
287 $drop_message = sprintf(
288 $table_is_view ? __('View %s has been dropped') : __('Table %s has been dropped'),
289 str_replace(' ', '&nbsp;', htmlspecialchars($each_table['TABLE_NAME'])));
292 $tracking_icon = '';
293 if (PMA_Tracker::isActive()) {
294 if (PMA_Tracker::isTracked($GLOBALS["db"], $truename)) {
295 $tracking_icon = '<a href="tbl_tracking.php?' . $url_query.'&amp;table=' . $truename . '"><img class="icon ic_eye" src="themes/dot.gif" alt="' . __('Tracking is active.') . '" title="' . __('Tracking is active.') . '" /></a>';
296 } elseif (PMA_Tracker::getVersion($GLOBALS["db"], $truename) > 0) {
297 $tracking_icon = '<a href="tbl_tracking.php?' . $url_query . '&amp;table=' . $truename . '"><img class="icon ic_eye" src="themes/dot.gif" alt="' . __('Tracking is not active.') . '" title="' . __('Tracking is not active.') . '" /></a>';
301 if ($num_columns > 0 && $num_tables > $num_columns
302 && (($row_count % $num_columns) == 0)) {
303 $row_count = 1;
304 $odd_row = true;
306 </tr>
307 </tbody>
308 </table>
309 <?php
310 PMA_TableHeader(false, $server_slave_status);
313 $ignored = false;
314 $do = false;
316 if ($server_slave_status) {
317 ////////////////////////////////////////////////////////////////
319 if ((strlen(array_search($truename, $server_slave_Do_Table)) > 0)
320 || (strlen(array_search($db, $server_slave_Do_DB)) > 0)
321 || (count($server_slave_Do_DB) == 1 && count($server_slave_Ignore_DB) == 1)
323 $do = true;
325 foreach ($server_slave_Wild_Do_Table as $db_table) {
326 $table_part = PMA_extract_db_or_table($db_table, 'table');
327 if (($db == PMA_extract_db_or_table($db_table, 'db')) && (preg_match("@^" . substr($table_part, 0, strlen($table_part) - 1) . "@", $truename))) {
328 $do = true;
331 ////////////////////////////////////////////////////////////////////
332 if ((strlen(array_search($truename, $server_slave_Ignore_Table)) > 0) || (strlen(array_search($db, $server_slave_Ignore_DB)) > 0)) {
333 $ignored = true;
335 foreach ($server_slave_Wild_Ignore_Table as $db_table) {
336 $table_part = PMA_extract_db_or_table($db_table, 'table');
337 if (($db == PMA_extract_db_or_table($db_table)) && (preg_match("@^" . substr($table_part, 0, strlen($table_part) - 1) . "@", $truename))) {
338 $ignored = true;
341 unset($table_part);
344 <tr class="<?php echo $odd_row ? 'odd' : 'even'; $odd_row = ! $odd_row; ?>">
345 <td align="center">
346 <input type="checkbox" name="selected_tbl[]"
347 value="<?php echo htmlspecialchars($each_table['TABLE_NAME']); ?>"
348 id="checkbox_tbl_<?php echo $i; ?>"<?php echo $checked; ?> /></td>
349 <th><?php echo $browse_table_label; ?>
350 <?php echo (! empty($tracking_icon) ? $tracking_icon : ''); ?>
351 </th>
352 <?php if ($server_slave_status) { ?><td align="center"><?php echo $ignored ? ' <img class="icon ic_s_cancel" src="themes/dot.gif" alt="NOT REPLICATED" />' : ''. $do ? ' <img class="icon ic_s_success" src="themes/dot.gif" alt="REPLICATED" />' : ''; ?></td><?php } ?>
353 <td align="center"><?php echo $browse_table; ?></td>
354 <td align="center">
355 <a href="tbl_structure.php?<?php echo $tbl_url_query; ?>">
356 <?php echo $titles['Structure']; ?></a></td>
357 <td align="center"><?php echo $search_table; ?></td>
358 <?php if (! $db_is_information_schema) { ?>
359 <td align="center" class="insert_table">
360 <a <?php echo ($GLOBALS['cfg']['AjaxEnable'] ? 'class="ajax"' : ''); ?> href="tbl_change.php?<?php echo $tbl_url_query; ?>">
361 <?php echo $titles['Insert']; ?></a></td>
362 <td align="center"><?php echo $empty_table; ?></td>
363 <td align="center">
364 <a <?php echo ($GLOBALS['cfg']['AjaxEnable'] ? 'class="drop_table_anchor"' : ''); ?> href="sql.php?<?php echo $tbl_url_query;
365 ?>&amp;reload=1&amp;purge=1&amp;sql_query=<?php
366 echo urlencode($drop_query); ?>&amp;message_to_show=<?php
367 echo urlencode($drop_message); ?>" >
368 <?php echo $titles['Drop']; ?></a></td>
369 <?php } // end if (! $db_is_information_schema)
371 // there is a null value in the ENGINE
372 // - when the table needs to be repaired, or
373 // - when it's a view
374 // so ensure that we'll display "in use" below for a table
375 // that needs to be repaired
376 if (isset($each_table['TABLE_ROWS']) && ($each_table['ENGINE'] != null || $table_is_view)) {
377 $row_count_pre = '';
378 $show_superscript = '';
379 if ($table_is_view) {
380 // Drizzle views use FunctionEngine, and the only place where they are available are I_S and D_D
381 // schemas, where we do exact counting
382 if ($each_table['TABLE_ROWS'] >= $GLOBALS['cfg']['MaxExactCountViews'] && $each_table['ENGINE'] != 'FunctionEngine') {
383 $row_count_pre = '~';
384 $sum_row_count_pre = '~';
385 $show_superscript = PMA_showHint(PMA_sanitize(sprintf(__('This view has at least this number of rows. Please refer to %sdocumentation%s.'), '[a@./Documentation.html#cfg_MaxExactCountViews@_blank]', '[/a]')));
387 } elseif ($each_table['ENGINE'] == 'InnoDB' && (! $each_table['COUNTED'])) {
388 // InnoDB table: we did not get an accurate row count
389 $row_count_pre = '~';
390 $sum_row_count_pre = '~';
391 $show_superscript = '';
394 <td class="value tbl_rows"><?php echo $row_count_pre . PMA_formatNumber($each_table['TABLE_ROWS'], 0) . $show_superscript; ?></td>
395 <?php if (!($cfg['PropertiesNumColumns'] > 1)) { ?>
396 <td nowrap="nowrap"><?php echo ($table_is_view ? __('View') : $each_table['ENGINE']); ?></td>
397 <?php if (isset($collation)) { ?>
398 <td nowrap="nowrap"><?php echo $collation ?></td>
399 <?php } ?>
400 <?php } ?>
402 <?php if ($is_show_stats) { ?>
403 <td class="value tbl_size"><a
404 href="tbl_structure.php?<?php echo $tbl_url_query; ?>#showusage"
405 ><?php echo $formatted_size . ' ' . $unit; ?></a></td>
406 <td class="value"><?php echo $overhead; ?></td>
407 <?php } // end if ?>
408 <?php } elseif ($table_is_view) { ?>
409 <td class="value">-</td>
410 <td><?php echo __('View'); ?></td>
411 <td>---</td>
412 <?php if ($is_show_stats) { ?>
413 <td class="value">-</td>
414 <td class="value">-</td>
415 <?php } ?>
416 <?php } else { ?>
417 <td colspan="<?php echo ($colspan_for_structure - ($db_is_information_schema ? 5 : 8)) ?>"
418 align="center">
419 <?php echo __('in use'); ?></td>
420 <?php } // end if (isset($each_table['TABLE_ROWS'])) else ?>
421 </tr>
422 <?php
423 } // end foreach
425 // Show Summary
426 if ($is_show_stats) {
427 list($sum_formatted, $unit) = PMA_formatByteDown($sum_size, 3, 1);
428 list($overhead_formatted, $overhead_unit) =
429 PMA_formatByteDown($overhead_size, 3, 1);
432 </tbody>
433 <tbody id="tbl_summary_row">
434 <tr><th></th>
435 <th align="center" nowrap="nowrap">
436 <?php
437 // for blobstreaming - if the number of tables is 0, set tableReductionCount to 0
438 // (we don't want negative numbers here)
439 if ($num_tables == 0)
440 $tableReductionCount = 0;
442 echo sprintf(_ngettext('%s table', '%s tables', $num_tables - $tableReductionCount), PMA_formatNumber($num_tables - $tableReductionCount, 0));
444 </th>
445 <?php
446 if ($server_slave_status) {
447 echo ' <th>' . __('Replication') . '</th>' . "\n";
450 <th colspan="<?php echo ($db_is_information_schema ? 3 : 6) ?>" align="center">
451 <?php echo __('Sum'); ?></th>
452 <th class="value tbl_rows"><?php echo $sum_row_count_pre . PMA_formatNumber($sum_entries, 0); ?></th>
453 <?php
454 if (!($cfg['PropertiesNumColumns'] > 1)) {
455 $default_engine = PMA_DBI_get_default_engine();
456 echo ' <th align="center">' . "\n"
457 . ' <dfn title="'
458 . sprintf(__('%s is the default storage engine on this MySQL server.'), $default_engine) . '">' .$default_engine . '</dfn></th>' . "\n";
459 // we got a case where $db_collation was empty
460 echo ' <th align="center">' . "\n";
461 if (! empty($db_collation)) {
462 echo ' <dfn title="'
463 . PMA_getCollationDescr($db_collation) . ' (' . __('Default') . ')">' . $db_collation
464 . '</dfn>';
466 echo '</th>';
469 if ($is_show_stats) {
471 <th class="value tbl_size"><?php echo $sum_formatted . ' ' . $unit; ?></th>
472 <th class="value"><?php echo $overhead_formatted . ' ' . $overhead_unit; ?></th>
473 <?php
476 </tr>
477 </tbody>
478 </table>
480 <div class="clearfloat">
481 <?php
482 // Check all tables url
483 $checkall_url = 'db_structure.php?' . PMA_generate_common_url($db);
485 <img class="selectallarrow" src="<?php echo $pmaThemeImage .'arrow_'.$text_dir.'.png'; ?>"
486 width="38" height="22" alt="<?php echo __('With selected:'); ?>" />
487 <a href="<?php echo $checkall_url; ?>&amp;checkall=1"
488 onclick="if (markAllRows('tablesForm')) return false;">
489 <?php echo __('Check All'); ?></a>
491 <a href="<?php echo $checkall_url; ?>"
492 onclick="if (unMarkAllRows('tablesForm')) return false;">
493 <?php echo __('Uncheck All'); ?></a>
494 <?php if ($overhead_check != '') { ?>
496 <a href="#" onclick="unMarkAllRows('tablesForm');
497 <?php echo $overhead_check; ?> return false;">
498 <?php echo __('Check tables having overhead'); ?></a>
499 <?php } ?>
501 <select name="submit_mult" onchange="this.form.submit();" style="margin: 0 3em 0 3em;">
502 <?php
503 echo ' <option value="' . __('With selected:') . '" selected="selected">'
504 . __('With selected:') . '</option>' . "\n";
505 echo ' <option value="export" >'
506 . __('Export') . '</option>' . "\n";
507 echo ' <option value="print" >'
508 . __('Print view') . '</option>' . "\n";
510 if (!$db_is_information_schema && !$cfg['DisableMultiTableMaintenance']) {
511 echo ' <option value="empty_tbl" >'
512 . __('Empty') . '</option>' . "\n";
513 echo ' <option value="drop_tbl" >'
514 . __('Drop') . '</option>' . "\n";
515 echo ' <option value="check_tbl" >'
516 . __('Check table') . '</option>' . "\n";
517 if (!PMA_DRIZZLE) {
518 echo ' <option value="optimize_tbl" >'
519 . __('Optimize table') . '</option>' . "\n";
520 echo ' <option value="repair_tbl" >'
521 . __('Repair table') . '</option>' . "\n";
523 echo ' <option value="analyze_tbl" >'
524 . __('Analyze table') . '</option>' . "\n";
525 echo ' <option value="add_prefix_tbl" >'
526 . __('Add prefix to table') . '</option>' . "\n";
527 echo ' <option value="replace_prefix_tbl" >'
528 . __('Replace table prefix') . '</option>' . "\n";
529 echo ' <option value="copy_tbl_change_prefix" >'
530 . __('Copy table with prefix') . '</option>' . "\n";
533 </select>
534 <script type="text/javascript">
535 <!--
536 // Fake js to allow the use of the <noscript> tag
537 //-->
538 </script>
539 <noscript>
540 <input type="submit" value="<?php echo __('Go'); ?>" />
541 </noscript>
542 <?php echo implode("\n", $hidden_fields) . "\n"; ?>
543 </div>
544 </form>
545 <?php
546 // display again the table list navigator
547 PMA_listNavigator($total_num_tables, $pos, $_url_params, 'db_structure.php', 'frame_content', $GLOBALS['cfg']['MaxTableList']);
549 </div>
550 <hr />
552 <?php
555 * Work on the database
557 /* DATABASE WORK */
558 /* Printable view of a table */
559 echo '<p>';
560 echo '<a href="db_printview.php?' . $url_query . '">';
561 if ($cfg['PropertiesIconic']) {
562 echo '<img class="icon ic_b_print" src="themes/dot.gif" alt="" />';
564 echo __('Print view') . '</a> ';
566 echo '<a href="./db_datadict.php?' . $url_query . '">';
567 if ($cfg['PropertiesIconic']) {
568 echo '<img class="icon ic_b_tblanalyse" src="themes/dot.gif" alt="" />';
570 echo __('Data Dictionary') . '</a>';
571 echo '</p>';
573 if (empty($db_is_information_schema)) {
574 require './libraries/display_create_table.lib.php';
575 } // end if (Create Table dialog)
578 * Displays the footer
580 require './libraries/footer.inc.php';