minor bugsfixed documentation added
[phpmyadmin/ankitg.git] / tbl_printview.php
blob88c9a6bd99980d9d6c4abad42b96cda69f341d03
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';
14 require './libraries/tbl_common.php';
16 /**
17 * Gets the variables sent or posted to this script, then displays headers
19 $print_view = true;
20 if (! isset($selected_tbl)) {
21 require_once './libraries/header.inc.php';
24 // Check parameters
26 if (! isset($the_tables) || ! is_array($the_tables)) {
27 $the_tables = array();
30 /**
31 * Gets the relations settings
33 require_once './libraries/relation.lib.php';
34 require_once './libraries/transformations.lib.php';
35 require_once './libraries/Index.class.php';
37 $cfgRelation = PMA_getRelationsParam();
39 /**
40 * Defines the url to return to in case of error in a sql statement
42 if (strlen($table)) {
43 $err_url = 'tbl_sql.php?' . PMA_generate_common_url($db, $table);
44 } else {
45 $err_url = 'db_sql.php?' . PMA_generate_common_url($db);
49 /**
50 * Selects the database
52 PMA_DBI_select_db($db);
55 /**
56 * Multi-tables printview thanks to Christophe Gesche from the "MySQL Form
57 * Generator for PHPMyAdmin" (http://sourceforge.net/projects/phpmysqlformgen/)
59 if (isset($selected_tbl) && is_array($selected_tbl)) {
60 $the_tables = $selected_tbl;
61 } elseif (strlen($table)) {
62 $the_tables[] = $table;
64 $multi_tables = (count($the_tables) > 1);
66 if ($multi_tables) {
67 if (empty($GLOBALS['is_header_sent'])) {
68 require_once './libraries/header.inc.php';
70 $tbl_list = '';
71 foreach ($the_tables as $key => $table) {
72 $tbl_list .= (empty($tbl_list) ? '' : ', ')
73 . PMA_backquote($table);
75 echo '<strong>'. __('Show tables') . ': ' . $tbl_list . '</strong>' . "\n";
76 echo '<hr />' . "\n";
77 } // end if
79 $tables_cnt = count($the_tables);
80 $counter = 0;
82 foreach ($the_tables as $key => $table) {
83 if ($counter + 1 >= $tables_cnt) {
84 $breakstyle = '';
85 } else {
86 $breakstyle = ' style="page-break-after: always;"';
88 $counter++;
89 echo '<div' . $breakstyle . '>' . "\n";
90 echo '<h1>' . $table . '</h1>' . "\n";
92 /**
93 * Gets table informations
95 $showtable = PMA_Table::sGetStatusInfo($db, $table);
96 $num_rows = (isset($showtable['Rows']) ? $showtable['Rows'] : 0);
97 $show_comment = (isset($showtable['Comment']) ? $showtable['Comment'] : '');
99 $tbl_is_view = PMA_Table::isView($db, $table);
102 * Gets fields properties
104 $result = PMA_DBI_query(
105 'SHOW FIELDS FROM ' . PMA_backquote($table) . ';', null,
106 PMA_DBI_QUERY_STORE);
107 $fields_cnt = PMA_DBI_num_rows($result);
110 // We need this to correctly learn if a TIMESTAMP is NOT NULL, since
111 // SHOW FULL FIELDS or INFORMATION_SCHEMA incorrectly says NULL
112 // and SHOW CREATE TABLE says NOT NULL (tested
113 // in MySQL 4.0.25 and 5.0.21, http://bugs.mysql.com/20910).
115 $show_create_table = PMA_DBI_fetch_value(
116 'SHOW CREATE TABLE ' . PMA_backquote($db) . '.' . PMA_backquote($table),
117 0, 1);
118 $analyzed_sql = PMA_SQP_analyze(PMA_SQP_parse($show_create_table));
120 // Check if we can use Relations (Mike Beck)
121 // Find which tables are related with the current one and write it in
122 // an array
123 $res_rel = PMA_getForeigners($db, $table);
124 $have_rel = (bool) count($res_rel);
127 * Displays the comments of the table if MySQL >= 3.23
129 if (!empty($show_comment)) {
130 echo __('Table comments') . ': ' . htmlspecialchars($show_comment) . '<br /><br />';
134 * Displays the table structure
138 <!-- TABLE INFORMATIONS -->
139 <table style="width: 100%;">
140 <thead>
141 <tr>
142 <th><?php echo __('Column'); ?></th>
143 <th><?php echo __('Type'); ?></th>
144 <!--<th><?php echo __('Attributes'); ?></th>-->
145 <th><?php echo __('Null'); ?></th>
146 <th><?php echo __('Default'); ?></th>
147 <!--<th><?php echo __('Extra'); ?></th>-->
148 <?php
149 if ($have_rel) {
150 echo '<th>' . __('Links to') . '</th>' . "\n";
152 echo ' <th>' . __('Comments') . '</th>' . "\n";
153 if ($cfgRelation['mimework']) {
154 echo ' <th>MIME</th>' . "\n";
157 </tr>
158 </thead>
159 <tbody>
160 <?php
161 while ($row = PMA_DBI_fetch_assoc($result)) {
162 $type = $row['Type'];
163 // reformat mysql query output
164 // set or enum types: slashes single quotes inside options
165 if (preg_match('@^(set|enum)\((.+)\)$@i', $type, $tmp)) {
166 $tmp[2] = substr(preg_replace('@([^,])\'\'@', '\\1\\\'',
167 ',' . $tmp[2]), 1);
168 $type = $tmp[1] . '(' . str_replace(',', ', ', $tmp[2]) . ')';
170 $binary = 0;
171 $unsigned = 0;
172 $zerofill = 0;
173 } else {
174 $type = preg_replace('@BINARY@i', '', $type);
175 $type = preg_replace('@ZEROFILL@i', '', $type);
176 $type = preg_replace('@UNSIGNED@i', '', $type);
177 if (empty($type)) {
178 $type = '&nbsp;';
181 $binary = stristr($row['Type'], 'binary');
182 $unsigned = stristr($row['Type'], 'unsigned');
183 $zerofill = stristr($row['Type'], 'zerofill');
185 $attribute = '&nbsp;';
186 if ($binary) {
187 $attribute = 'BINARY';
189 if ($unsigned) {
190 $attribute = 'UNSIGNED';
192 if ($zerofill) {
193 $attribute = 'UNSIGNED ZEROFILL';
195 if (!isset($row['Default'])) {
196 if ($row['Null'] != '' && $row['Null'] != 'NO') {
197 $row['Default'] = '<i>NULL</i>';
199 } else {
200 $row['Default'] = htmlspecialchars($row['Default']);
202 $field_name = htmlspecialchars($row['Field']);
204 // here, we have a TIMESTAMP that SHOW FULL FIELDS reports as having the
205 // NULL attribute, but SHOW CREATE TABLE says the contrary. Believe
206 // the latter.
208 * @todo merge this logic with the one in tbl_structure.php
209 * or move it in a function similar to PMA_DBI_get_columns_full()
210 * but based on SHOW CREATE TABLE because information_schema
211 * cannot be trusted in this case (MySQL bug)
213 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']) {
214 $row['Null'] = '';
218 <tr><td>
219 <?php
220 if (isset($pk_array[$row['Field']])) {
221 echo ' <u>' . $field_name . '</u>' . "\n";
222 } else {
223 echo ' ' . $field_name . "\n";
226 </td>
227 <td><?php echo $type; ?><bdo dir="ltr"></bdo></td>
228 <!--<td><?php echo $attribute; ?></td>-->
229 <td><?php echo (($row['Null'] == '' || $row['Null'] == 'NO') ? __('No') : __('Yes')); ?>&nbsp;</td>
230 <td><?php if (isset($row['Default'])) { echo $row['Default']; } ?>&nbsp;</td>
231 <!--<td><?php echo $row['Extra']; ?>&nbsp;</td>-->
232 <?php
233 if ($have_rel) {
234 echo ' <td>';
235 if (isset($res_rel[$field_name])) {
236 echo htmlspecialchars($res_rel[$field_name]['foreign_table'] . ' -> ' . $res_rel[$field_name]['foreign_field']);
238 echo '&nbsp;</td>' . "\n";
240 echo ' <td>';
241 $comments = PMA_getComments($db, $table);
242 if (isset($comments[$field_name])) {
243 echo htmlspecialchars($comments[$field_name]);
245 echo '&nbsp;</td>' . "\n";
246 if ($cfgRelation['mimework']) {
247 $mime_map = PMA_getMIME($db, $table, true);
249 echo ' <td>';
250 if (isset($mime_map[$field_name])) {
251 echo htmlspecialchars(str_replace('_', '/', $mime_map[$field_name]['mimetype']));
253 echo '&nbsp;</td>' . "\n";
256 </tr>
257 <?php
258 } // end while
259 PMA_DBI_free_result($result);
261 </tbody>
262 </table>
263 <?php
264 if (! $tbl_is_view && $db != 'information_schema') {
266 * Displays indexes
268 echo PMA_Index::getView($table, $db, true);
271 * Displays Space usage and row statistics
274 if ($cfg['ShowStats']) {
275 $nonisam = false;
276 if (isset($showtable['Type']) && !preg_match('@ISAM|HEAP@i', $showtable['Type'])) {
277 $nonisam = true;
279 if ($nonisam == false) {
280 // Gets some sizes
282 $mergetable = PMA_Table::isMerge($db, $table);
284 list($data_size, $data_unit) = PMA_formatByteDown($showtable['Data_length']);
285 if ($mergetable == false) {
286 list($index_size, $index_unit) = PMA_formatByteDown($showtable['Index_length']);
288 if (isset($showtable['Data_free']) && $showtable['Data_free'] > 0) {
289 list($free_size, $free_unit) = PMA_formatByteDown($showtable['Data_free']);
290 list($effect_size, $effect_unit) = PMA_formatByteDown($showtable['Data_length'] + $showtable['Index_length'] - $showtable['Data_free']);
291 } else {
292 unset($free_size);
293 unset($free_unit);
294 list($effect_size, $effect_unit) = PMA_formatByteDown($showtable['Data_length'] + $showtable['Index_length']);
296 list($tot_size, $tot_unit) = PMA_formatByteDown($showtable['Data_length'] + $showtable['Index_length']);
297 if ($num_rows > 0) {
298 list($avg_size, $avg_unit) = PMA_formatByteDown(($showtable['Data_length'] + $showtable['Index_length']) / $showtable['Rows'], 6, 1);
301 // Displays them
303 <br /><br />
305 <table border="0" cellspacing="0" cellpadding="0" class="noborder">
306 <tr>
308 <!-- Space usage -->
309 <td valign="top">
310 <big><?php echo __('Space usage') . ':'; ?></big>
311 <table width="100%">
312 <tr>
313 <th><?php echo __('Type'); ?></th>
314 <th colspan="2" align="center"><?php echo __('Usage'); ?></th>
315 </tr>
316 <tr>
317 <td style="padding-right: 10px"><?php echo __('Data'); ?></td>
318 <td align="right"><?php echo $data_size; ?></td>
319 <td><?php echo $data_unit; ?></td>
320 </tr>
321 <?php
322 if (isset($index_size)) {
323 echo "\n";
325 <tr>
326 <td style="padding-right: 10px"><?php echo __('Index'); ?></td>
327 <td align="right"><?php echo $index_size; ?></td>
328 <td><?php echo $index_unit; ?></td>
329 </tr>
330 <?php
332 if (isset($free_size)) {
333 echo "\n";
335 <tr style="color: #bb0000">
336 <td style="padding-right: 10px"><?php echo __('Overhead'); ?></td>
337 <td align="right"><?php echo $free_size; ?></td>
338 <td><?php echo $free_unit; ?></td>
339 </tr>
340 <tr>
341 <td style="padding-right: 10px"><?php echo __('Effective'); ?></td>
342 <td align="right"><?php echo $effect_size; ?></td>
343 <td><?php echo $effect_unit; ?></td>
344 </tr>
345 <?php
347 if (isset($tot_size) && $mergetable == false) {
348 echo "\n";
350 <tr>
351 <td style="padding-right: 10px"><?php echo __('Total'); ?></td>
352 <td align="right"><?php echo $tot_size; ?></td>
353 <td><?php echo $tot_unit; ?></td>
354 </tr>
355 <?php
357 echo "\n";
359 </table>
360 </td>
362 <td width="20">&nbsp;</td>
364 <!-- Rows Statistic -->
365 <td valign="top">
366 <big><?php echo __('Row Statistics') . ':'; ?></big>
367 <table width="100%">
368 <tr>
369 <th><?php echo __('Statements'); ?></th>
370 <th align="center"><?php echo __('Value'); ?></th>
371 </tr>
372 <?php
373 if (isset($showtable['Row_format'])) {
375 <tr>
376 <td><?php echo ucfirst(__('Format')); ?></td>
377 <td align="<?php echo $cell_align_left; ?>">
378 <?php
379 if ($showtable['Row_format'] == 'Fixed') {
380 echo __('static');
381 } elseif ($showtable['Row_format'] == 'Dynamic') {
382 echo __('dynamic');
383 } else {
384 echo $showtable['Row_format'];
387 </td>
388 </tr>
389 <?php
391 if (isset($showtable['Rows'])) {
393 <tr>
394 <td><?php echo ucfirst(__('Rows')); ?></td>
395 <td align="right">
396 <?php echo PMA_formatNumber($showtable['Rows'], 0) . "\n"; ?>
397 </td>
398 </tr>
399 <?php
401 if (isset($showtable['Avg_row_length']) && $showtable['Avg_row_length'] > 0) {
403 <tr>
404 <td><?php echo ucfirst(__('Row length')); ?>&nbsp;&oslash;</td>
405 <td>
406 <?php echo PMA_formatNumber($showtable['Avg_row_length'], 0) . "\n"; ?>
407 </td>
408 </tr>
409 <?php
411 if (isset($showtable['Data_length']) && $showtable['Rows'] > 0 && $mergetable == false) {
413 <tr>
414 <td><?php echo ucfirst(__(' Row size ')); ?>&nbsp;&oslash;</td>
415 <td align="right">
416 <?php echo $avg_size . ' ' . $avg_unit . "\n"; ?>
417 </td>
418 </tr>
419 <?php
421 if (isset($showtable['Auto_increment'])) {
423 <tr>
424 <td><?php echo ucfirst(__('Next')); ?>&nbsp;Autoindex</td>
425 <td align="right">
426 <?php echo PMA_formatNumber($showtable['Auto_increment'], 0) . "\n"; ?>
427 </td>
428 </tr>
429 <?php
431 if (isset($showtable['Create_time'])) {
433 <tr>
434 <td><?php echo __('Creation'); ?></td>
435 <td align="right">
436 <?php echo PMA_localisedDate(strtotime($showtable['Create_time'])) . "\n"; ?>
437 </td>
438 </tr>
439 <?php
441 if (isset($showtable['Update_time'])) {
443 <tr>
444 <td><?php echo __('Last update'); ?></td>
445 <td align="right">
446 <?php echo PMA_localisedDate(strtotime($showtable['Update_time'])) . "\n"; ?>
447 </td>
448 </tr>
449 <?php
451 if (isset($showtable['Check_time'])) {
453 <tr>
454 <td><?php echo __('Last check'); ?></td>
455 <td align="right">
456 <?php echo PMA_localisedDate(strtotime($showtable['Check_time'])) . "\n"; ?>
457 </td>
458 </tr>
459 <?php
463 </table>
464 </td>
465 </tr>
466 </table>
468 <?php
469 } // end if ($nonisam == false)
470 } // end if ($cfg['ShowStats'])
472 if ($multi_tables) {
473 unset($num_rows, $show_comment);
474 echo '<hr />' . "\n";
475 } // end if
476 echo '</div>' . "\n";
478 } // end while
481 * Displays the footer
485 <script type="text/javascript">
486 //<![CDATA[
487 function printPage()
489 // Do print the page
490 if (typeof(window.print) != 'undefined') {
491 window.print();
494 //]]>
495 </script>
497 <p class="print_ignore">
498 <input type="button" id="print" value="<?php echo __('Print'); ?>"
499 onclick="printPage()" /></p>
501 <?php
502 require_once './libraries/footer.inc.php';