bug #2998889 Import button does not work in Catalan
[phpmyadmin/madhuracj.git] / tbl_printview.php
blobc5b17ab2786c012ac5903c8dccaede78fc850457
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>'. $strShowTables . ': ' . $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 $strTableComments . ': ' . 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 $strField; ?></th>
143 <th><?php echo $strType; ?></th>
144 <!--<th><?php echo $strAttr; ?></th>-->
145 <th><?php echo $strNull; ?></th>
146 <th><?php echo $strDefault; ?></th>
147 <!--<th><?php echo $strExtra; ?></th>-->
148 <?php
149 if ($have_rel) {
150 echo '<th>' . $strLinksTo . '</th>' . "\n";
152 echo ' <th>' . $strComments . '</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 - staybyte - 9. June 2001
164 // loic1: 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 $strAttribute = '&nbsp;';
186 if ($binary) {
187 $strAttribute = 'BINARY';
189 if ($unsigned) {
190 $strAttribute = 'UNSIGNED';
192 if ($zerofill) {
193 $strAttribute = '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 $strAttribute; ?></td>-->
229 <td><?php echo (($row['Null'] == '' || $row['Null'] == 'NO') ? $strNo : $strYes); ?>&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
273 * staybyte - 9 June 2001
275 if ($cfg['ShowStats']) {
276 $nonisam = false;
277 if (isset($showtable['Type']) && !preg_match('@ISAM|HEAP@i', $showtable['Type'])) {
278 $nonisam = true;
280 if ($nonisam == false) {
281 // Gets some sizes
283 $mergetable = PMA_Table::isMerge($db, $table);
285 list($data_size, $data_unit) = PMA_formatByteDown($showtable['Data_length']);
286 if ($mergetable == false) {
287 list($index_size, $index_unit) = PMA_formatByteDown($showtable['Index_length']);
289 if (isset($showtable['Data_free']) && $showtable['Data_free'] > 0) {
290 list($free_size, $free_unit) = PMA_formatByteDown($showtable['Data_free']);
291 list($effect_size, $effect_unit) = PMA_formatByteDown($showtable['Data_length'] + $showtable['Index_length'] - $showtable['Data_free']);
292 } else {
293 unset($free_size);
294 unset($free_unit);
295 list($effect_size, $effect_unit) = PMA_formatByteDown($showtable['Data_length'] + $showtable['Index_length']);
297 list($tot_size, $tot_unit) = PMA_formatByteDown($showtable['Data_length'] + $showtable['Index_length']);
298 if ($num_rows > 0) {
299 list($avg_size, $avg_unit) = PMA_formatByteDown(($showtable['Data_length'] + $showtable['Index_length']) / $showtable['Rows'], 6, 1);
302 // Displays them
304 <br /><br />
306 <table border="0" cellspacing="0" cellpadding="0" class="noborder">
307 <tr>
309 <!-- Space usage -->
310 <td valign="top">
311 <big><?php echo $strSpaceUsage . ':'; ?></big>
312 <table width="100%">
313 <tr>
314 <th><?php echo $strType; ?></th>
315 <th colspan="2" align="center"><?php echo $strUsage; ?></th>
316 </tr>
317 <tr>
318 <td style="padding-right: 10px"><?php echo $strData; ?></td>
319 <td align="right"><?php echo $data_size; ?></td>
320 <td><?php echo $data_unit; ?></td>
321 </tr>
322 <?php
323 if (isset($index_size)) {
324 echo "\n";
326 <tr>
327 <td style="padding-right: 10px"><?php echo $strIndex; ?></td>
328 <td align="right"><?php echo $index_size; ?></td>
329 <td><?php echo $index_unit; ?></td>
330 </tr>
331 <?php
333 if (isset($free_size)) {
334 echo "\n";
336 <tr style="color: #bb0000">
337 <td style="padding-right: 10px"><?php echo $strOverhead; ?></td>
338 <td align="right"><?php echo $free_size; ?></td>
339 <td><?php echo $free_unit; ?></td>
340 </tr>
341 <tr>
342 <td style="padding-right: 10px"><?php echo $strEffective; ?></td>
343 <td align="right"><?php echo $effect_size; ?></td>
344 <td><?php echo $effect_unit; ?></td>
345 </tr>
346 <?php
348 if (isset($tot_size) && $mergetable == false) {
349 echo "\n";
351 <tr>
352 <td style="padding-right: 10px"><?php echo $strTotalUC; ?></td>
353 <td align="right"><?php echo $tot_size; ?></td>
354 <td><?php echo $tot_unit; ?></td>
355 </tr>
356 <?php
358 echo "\n";
360 </table>
361 </td>
363 <td width="20">&nbsp;</td>
365 <!-- Rows Statistic -->
366 <td valign="top">
367 <big><?php echo $strRowsStatistic . ':'; ?></big>
368 <table width="100%">
369 <tr>
370 <th><?php echo $strStatement; ?></th>
371 <th align="center"><?php echo $strValue; ?></th>
372 </tr>
373 <?php
374 if (isset($showtable['Row_format'])) {
376 <tr>
377 <td><?php echo ucfirst($strFormat); ?></td>
378 <td align="<?php echo $cell_align_left; ?>">
379 <?php
380 if ($showtable['Row_format'] == 'Fixed') {
381 echo $strStatic;
382 } elseif ($showtable['Row_format'] == 'Dynamic') {
383 echo $strDynamic;
384 } else {
385 echo $showtable['Row_format'];
388 </td>
389 </tr>
390 <?php
392 if (isset($showtable['Rows'])) {
394 <tr>
395 <td><?php echo ucfirst($strRows); ?></td>
396 <td align="right">
397 <?php echo PMA_formatNumber($showtable['Rows'], 0) . "\n"; ?>
398 </td>
399 </tr>
400 <?php
402 if (isset($showtable['Avg_row_length']) && $showtable['Avg_row_length'] > 0) {
404 <tr>
405 <td><?php echo ucfirst($strRowLength); ?>&nbsp;&oslash;</td>
406 <td>
407 <?php echo PMA_formatNumber($showtable['Avg_row_length'], 0) . "\n"; ?>
408 </td>
409 </tr>
410 <?php
412 if (isset($showtable['Data_length']) && $showtable['Rows'] > 0 && $mergetable == false) {
414 <tr>
415 <td><?php echo ucfirst($strRowSize); ?>&nbsp;&oslash;</td>
416 <td align="right">
417 <?php echo $avg_size . ' ' . $avg_unit . "\n"; ?>
418 </td>
419 </tr>
420 <?php
422 if (isset($showtable['Auto_increment'])) {
424 <tr>
425 <td><?php echo ucfirst($strNext); ?>&nbsp;Autoindex</td>
426 <td align="right">
427 <?php echo PMA_formatNumber($showtable['Auto_increment'], 0) . "\n"; ?>
428 </td>
429 </tr>
430 <?php
432 if (isset($showtable['Create_time'])) {
434 <tr>
435 <td><?php echo $strStatCreateTime; ?></td>
436 <td align="right">
437 <?php echo PMA_localisedDate(strtotime($showtable['Create_time'])) . "\n"; ?>
438 </td>
439 </tr>
440 <?php
442 if (isset($showtable['Update_time'])) {
444 <tr>
445 <td><?php echo $strStatUpdateTime; ?></td>
446 <td align="right">
447 <?php echo PMA_localisedDate(strtotime($showtable['Update_time'])) . "\n"; ?>
448 </td>
449 </tr>
450 <?php
452 if (isset($showtable['Check_time'])) {
454 <tr>
455 <td><?php echo $strStatCheckTime; ?></td>
456 <td align="right">
457 <?php echo PMA_localisedDate(strtotime($showtable['Check_time'])) . "\n"; ?>
458 </td>
459 </tr>
460 <?php
464 </table>
465 </td>
466 </tr>
467 </table>
469 <?php
470 } // end if ($nonisam == false)
471 } // end if ($cfg['ShowStats'])
473 if ($multi_tables) {
474 unset($num_rows, $show_comment);
475 echo '<hr />' . "\n";
476 } // end if
477 echo '</div>' . "\n";
479 } // end while
482 * Displays the footer
486 <script type="text/javascript">
487 //<![CDATA[
488 function printPage()
490 // Do print the page
491 if (typeof(window.print) != 'undefined') {
492 window.print();
495 //]]>
496 </script>
498 <p class="print_ignore">
499 <input type="button" id="print" value="<?php echo $strPrint; ?>"
500 onclick="printPage()" /></p>
502 <?php
503 require_once './libraries/footer.inc.php';