Merge branch 'QA_3_4'
[phpmyadmin/last10db.git] / tbl_printview.php
blobf2b80abfc6d52555d099463ee6b3144643e6511b
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 require './libraries/tbl_common.php';
15 /**
16 * Gets the variables sent or posted to this script, then displays headers
18 $print_view = true;
19 if (! isset($selected_tbl)) {
20 require_once './libraries/header.inc.php';
23 // Check parameters
25 if (! isset($the_tables) || ! is_array($the_tables)) {
26 $the_tables = array();
29 /**
30 * Gets the relations settings
32 require_once './libraries/transformations.lib.php';
33 require_once './libraries/Index.class.php';
35 $cfgRelation = PMA_getRelationsParam();
37 /**
38 * Defines the url to return to in case of error in a sql statement
40 if (strlen($table)) {
41 $err_url = 'tbl_sql.php?' . PMA_generate_common_url($db, $table);
42 } else {
43 $err_url = 'db_sql.php?' . PMA_generate_common_url($db);
47 /**
48 * Selects the database
50 PMA_DBI_select_db($db);
53 /**
54 * Multi-tables printview
56 if (isset($selected_tbl) && is_array($selected_tbl)) {
57 $the_tables = $selected_tbl;
58 } elseif (strlen($table)) {
59 $the_tables[] = $table;
61 $multi_tables = (count($the_tables) > 1);
63 if ($multi_tables) {
64 if (empty($GLOBALS['is_header_sent'])) {
65 require_once './libraries/header.inc.php';
67 $tbl_list = '';
68 foreach ($the_tables as $key => $table) {
69 $tbl_list .= (empty($tbl_list) ? '' : ', ')
70 . PMA_backquote($table);
72 echo '<strong>'. __('Show tables') . ': ' . $tbl_list . '</strong>' . "\n";
73 echo '<hr />' . "\n";
74 } // end if
76 $tables_cnt = count($the_tables);
77 $counter = 0;
79 foreach ($the_tables as $key => $table) {
80 if ($counter + 1 >= $tables_cnt) {
81 $breakstyle = '';
82 } else {
83 $breakstyle = ' style="page-break-after: always;"';
85 $counter++;
86 echo '<div' . $breakstyle . '>' . "\n";
87 echo '<h1>' . $table . '</h1>' . "\n";
89 /**
90 * Gets table informations
92 $showtable = PMA_Table::sGetStatusInfo($db, $table);
93 $num_rows = (isset($showtable['Rows']) ? $showtable['Rows'] : 0);
94 $show_comment = (isset($showtable['Comment']) ? $showtable['Comment'] : '');
96 $tbl_is_view = PMA_Table::isView($db, $table);
98 /**
99 * Gets fields properties
101 $result = PMA_DBI_query(
102 'SHOW FIELDS FROM ' . PMA_backquote($table) . ';', null,
103 PMA_DBI_QUERY_STORE);
104 $fields_cnt = PMA_DBI_num_rows($result);
107 // We need this to correctly learn if a TIMESTAMP is NOT NULL, since
108 // SHOW FULL FIELDS or INFORMATION_SCHEMA incorrectly says NULL
109 // and SHOW CREATE TABLE says NOT NULL (tested
110 // in MySQL 4.0.25 and 5.0.21, http://bugs.mysql.com/20910).
112 $show_create_table = PMA_DBI_fetch_value(
113 'SHOW CREATE TABLE ' . PMA_backquote($db) . '.' . PMA_backquote($table),
114 0, 1);
115 $analyzed_sql = PMA_SQP_analyze(PMA_SQP_parse($show_create_table));
117 // Check if we can use Relations (Mike Beck)
118 // Find which tables are related with the current one and write it in
119 // an array
120 $res_rel = PMA_getForeigners($db, $table);
121 $have_rel = (bool) count($res_rel);
124 * Displays the comments of the table if MySQL >= 3.23
126 if (!empty($show_comment)) {
127 echo __('Table comments') . ': ' . htmlspecialchars($show_comment) . '<br /><br />';
131 * Displays the table structure
135 <!-- TABLE INFORMATIONS -->
136 <table style="width: 100%;">
137 <thead>
138 <tr>
139 <th><?php echo __('Column'); ?></th>
140 <th><?php echo __('Type'); ?></th>
141 <!--<th><?php echo __('Attributes'); ?></th>-->
142 <th><?php echo __('Null'); ?></th>
143 <th><?php echo __('Default'); ?></th>
144 <!--<th><?php echo __('Extra'); ?></th>-->
145 <?php
146 if ($have_rel) {
147 echo '<th>' . __('Links to') . '</th>' . "\n";
149 echo ' <th>' . __('Comments') . '</th>' . "\n";
150 if ($cfgRelation['mimework']) {
151 echo ' <th>MIME</th>' . "\n";
154 </tr>
155 </thead>
156 <tbody>
157 <?php
158 while ($row = PMA_DBI_fetch_assoc($result)) {
159 $type = $row['Type'];
160 // reformat mysql query output
161 // set or enum types: slashes single quotes inside options
162 if (preg_match('@^(set|enum)\((.+)\)$@i', $type, $tmp)) {
163 $tmp[2] = substr(preg_replace('@([^,])\'\'@', '\\1\\\'',
164 ',' . $tmp[2]), 1);
165 $type = $tmp[1] . '(' . str_replace(',', ', ', $tmp[2]) . ')';
167 $binary = 0;
168 $unsigned = 0;
169 $zerofill = 0;
170 } else {
171 $type = preg_replace('@BINARY@i', '', $type);
172 $type = preg_replace('@ZEROFILL@i', '', $type);
173 $type = preg_replace('@UNSIGNED@i', '', $type);
174 if (empty($type)) {
175 $type = '&nbsp;';
178 $binary = stristr($row['Type'], 'binary');
179 $unsigned = stristr($row['Type'], 'unsigned');
180 $zerofill = stristr($row['Type'], 'zerofill');
182 $attribute = '&nbsp;';
183 if ($binary) {
184 $attribute = 'BINARY';
186 if ($unsigned) {
187 $attribute = 'UNSIGNED';
189 if ($zerofill) {
190 $attribute = 'UNSIGNED ZEROFILL';
192 if (! isset($row['Default'])) {
193 if ($row['Null'] != '' && $row['Null'] != 'NO') {
194 $row['Default'] = '<i>NULL</i>';
196 } else {
197 $row['Default'] = htmlspecialchars($row['Default']);
199 $field_name = htmlspecialchars($row['Field']);
201 // here, we have a TIMESTAMP that SHOW FULL FIELDS reports as having the
202 // NULL attribute, but SHOW CREATE TABLE says the contrary. Believe
203 // the latter.
205 * @todo merge this logic with the one in tbl_structure.php
206 * or move it in a function similar to PMA_DBI_get_columns_full()
207 * but based on SHOW CREATE TABLE because information_schema
208 * cannot be trusted in this case (MySQL bug)
210 if (!empty($analyzed_sql[0]['create_table_fields'][$field_name]['type']) && $analyzed_sql[0]['create_table_fields'][$field_name]['type'] == 'TIMESTAMP' && $analyzed_sql[0]['create_table_fields'][$field_name]['timestamp_not_null']) {
211 $row['Null'] = '';
215 <tr><td>
216 <?php
217 if (isset($pk_array[$row['Field']])) {
218 echo ' <u>' . $field_name . '</u>' . "\n";
219 } else {
220 echo ' ' . $field_name . "\n";
223 </td>
224 <td><?php echo $type; ?><bdo dir="ltr"></bdo></td>
225 <!--<td><?php echo $attribute; ?></td>-->
226 <td><?php echo (($row['Null'] == '' || $row['Null'] == 'NO') ? __('No') : __('Yes')); ?>&nbsp;</td>
227 <td><?php if (isset($row['Default'])) { echo $row['Default']; } ?>&nbsp;</td>
228 <!--<td><?php echo $row['Extra']; ?>&nbsp;</td>-->
229 <?php
230 if ($have_rel) {
231 echo ' <td>';
232 if (isset($res_rel[$field_name])) {
233 echo htmlspecialchars($res_rel[$field_name]['foreign_table'] . ' -> ' . $res_rel[$field_name]['foreign_field']);
235 echo '&nbsp;</td>' . "\n";
237 echo ' <td>';
238 $comments = PMA_getComments($db, $table);
239 if (isset($comments[$field_name])) {
240 echo htmlspecialchars($comments[$field_name]);
242 echo '&nbsp;</td>' . "\n";
243 if ($cfgRelation['mimework']) {
244 $mime_map = PMA_getMIME($db, $table, true);
246 echo ' <td>';
247 if (isset($mime_map[$field_name])) {
248 echo htmlspecialchars(str_replace('_', '/', $mime_map[$field_name]['mimetype']));
250 echo '&nbsp;</td>' . "\n";
253 </tr>
254 <?php
255 } // end while
256 PMA_DBI_free_result($result);
258 </tbody>
259 </table>
260 <?php
261 if (! $tbl_is_view && $db != 'information_schema') {
263 * Displays indexes
265 echo PMA_Index::getView($table, $db, true);
268 * Displays Space usage and row statistics
271 if ($cfg['ShowStats']) {
272 $nonisam = false;
273 if (isset($showtable['Type']) && !preg_match('@ISAM|HEAP@i', $showtable['Type'])) {
274 $nonisam = true;
276 if ($nonisam == false) {
277 // Gets some sizes
279 $mergetable = PMA_Table::isMerge($db, $table);
281 list($data_size, $data_unit) = PMA_formatByteDown($showtable['Data_length']);
282 if ($mergetable == false) {
283 list($index_size, $index_unit) = PMA_formatByteDown($showtable['Index_length']);
285 if (isset($showtable['Data_free']) && $showtable['Data_free'] > 0) {
286 list($free_size, $free_unit) = PMA_formatByteDown($showtable['Data_free']);
287 list($effect_size, $effect_unit) = PMA_formatByteDown($showtable['Data_length'] + $showtable['Index_length'] - $showtable['Data_free']);
288 } else {
289 unset($free_size);
290 unset($free_unit);
291 list($effect_size, $effect_unit) = PMA_formatByteDown($showtable['Data_length'] + $showtable['Index_length']);
293 list($tot_size, $tot_unit) = PMA_formatByteDown($showtable['Data_length'] + $showtable['Index_length']);
294 if ($num_rows > 0) {
295 list($avg_size, $avg_unit) = PMA_formatByteDown(($showtable['Data_length'] + $showtable['Index_length']) / $showtable['Rows'], 6, 1);
298 // Displays them
300 <br /><br />
302 <table border="0" cellspacing="0" cellpadding="0" class="noborder">
303 <tr>
305 <!-- Space usage -->
306 <td valign="top">
307 <big><?php echo __('Space usage') . ':'; ?></big>
308 <table width="100%">
309 <tr>
310 <th><?php echo __('Type'); ?></th>
311 <th colspan="2" align="center"><?php echo __('Usage'); ?></th>
312 </tr>
313 <tr>
314 <td style="padding-right: 10px"><?php echo __('Data'); ?></td>
315 <td align="right"><?php echo $data_size; ?></td>
316 <td><?php echo $data_unit; ?></td>
317 </tr>
318 <?php
319 if (isset($index_size)) {
320 echo "\n";
322 <tr>
323 <td style="padding-right: 10px"><?php echo __('Index'); ?></td>
324 <td align="right"><?php echo $index_size; ?></td>
325 <td><?php echo $index_unit; ?></td>
326 </tr>
327 <?php
329 if (isset($free_size)) {
330 echo "\n";
332 <tr style="color: #bb0000">
333 <td style="padding-right: 10px"><?php echo __('Overhead'); ?></td>
334 <td align="right"><?php echo $free_size; ?></td>
335 <td><?php echo $free_unit; ?></td>
336 </tr>
337 <tr>
338 <td style="padding-right: 10px"><?php echo __('Effective'); ?></td>
339 <td align="right"><?php echo $effect_size; ?></td>
340 <td><?php echo $effect_unit; ?></td>
341 </tr>
342 <?php
344 if (isset($tot_size) && $mergetable == false) {
345 echo "\n";
347 <tr>
348 <td style="padding-right: 10px"><?php echo __('Total'); ?></td>
349 <td align="right"><?php echo $tot_size; ?></td>
350 <td><?php echo $tot_unit; ?></td>
351 </tr>
352 <?php
354 echo "\n";
356 </table>
357 </td>
359 <td width="20">&nbsp;</td>
361 <!-- Rows Statistic -->
362 <td valign="top">
363 <big><?php echo __('Row Statistics') . ':'; ?></big>
364 <table width="100%">
365 <tr>
366 <th><?php echo __('Statements'); ?></th>
367 <th align="center"><?php echo __('Value'); ?></th>
368 </tr>
369 <?php
370 if (isset($showtable['Row_format'])) {
372 <tr>
373 <td><?php echo ucfirst(__('Format')); ?></td>
374 <td align="<?php echo $cell_align_left; ?>">
375 <?php
376 if ($showtable['Row_format'] == 'Fixed') {
377 echo __('static');
378 } elseif ($showtable['Row_format'] == 'Dynamic') {
379 echo __('dynamic');
380 } else {
381 echo $showtable['Row_format'];
384 </td>
385 </tr>
386 <?php
388 if (isset($showtable['Rows'])) {
390 <tr>
391 <td><?php echo ucfirst(__('Rows')); ?></td>
392 <td align="right">
393 <?php echo PMA_formatNumber($showtable['Rows'], 0) . "\n"; ?>
394 </td>
395 </tr>
396 <?php
398 if (isset($showtable['Avg_row_length']) && $showtable['Avg_row_length'] > 0) {
400 <tr>
401 <td><?php echo ucfirst(__('Row length')); ?>&nbsp;&oslash;</td>
402 <td>
403 <?php echo PMA_formatNumber($showtable['Avg_row_length'], 0) . "\n"; ?>
404 </td>
405 </tr>
406 <?php
408 if (isset($showtable['Data_length']) && $showtable['Rows'] > 0 && $mergetable == false) {
410 <tr>
411 <td><?php echo ucfirst(__(' Row size ')); ?>&nbsp;&oslash;</td>
412 <td align="right">
413 <?php echo $avg_size . ' ' . $avg_unit . "\n"; ?>
414 </td>
415 </tr>
416 <?php
418 if (isset($showtable['Auto_increment'])) {
420 <tr>
421 <td><?php echo ucfirst(__('Next')); ?>&nbsp;Autoindex</td>
422 <td align="right">
423 <?php echo PMA_formatNumber($showtable['Auto_increment'], 0) . "\n"; ?>
424 </td>
425 </tr>
426 <?php
428 if (isset($showtable['Create_time'])) {
430 <tr>
431 <td><?php echo __('Creation'); ?></td>
432 <td align="right">
433 <?php echo PMA_localisedDate(strtotime($showtable['Create_time'])) . "\n"; ?>
434 </td>
435 </tr>
436 <?php
438 if (isset($showtable['Update_time'])) {
440 <tr>
441 <td><?php echo __('Last update'); ?></td>
442 <td align="right">
443 <?php echo PMA_localisedDate(strtotime($showtable['Update_time'])) . "\n"; ?>
444 </td>
445 </tr>
446 <?php
448 if (isset($showtable['Check_time'])) {
450 <tr>
451 <td><?php echo __('Last check'); ?></td>
452 <td align="right">
453 <?php echo PMA_localisedDate(strtotime($showtable['Check_time'])) . "\n"; ?>
454 </td>
455 </tr>
456 <?php
460 </table>
461 </td>
462 </tr>
463 </table>
465 <?php
466 } // end if ($nonisam == false)
467 } // end if ($cfg['ShowStats'])
469 if ($multi_tables) {
470 unset($num_rows, $show_comment);
471 echo '<hr />' . "\n";
472 } // end if
473 echo '</div>' . "\n";
475 } // end while
478 * Displays the footer
482 <script type="text/javascript">
483 //<![CDATA[
484 function printPage()
486 // Do print the page
487 if (typeof(window.print) != 'undefined') {
488 window.print();
491 //]]>
492 </script>
494 <p class="print_ignore">
495 <input type="button" id="print" value="<?php echo __('Print'); ?>"
496 onclick="printPage()" /></p>
498 <?php
499 require './libraries/footer.inc.php';