image/png: inline
[phpmyadmin/crack.git] / tbl_properties_links.php3
blob35bd2d9a0858aef9c5458a008f2cd375a329649f
1 <?php
2 /* $Id$ */
3 // vim: expandtab sw=4 ts=4 sts=4:
6 /**
7 * Sets error reporting level
8 */
9 error_reporting(E_ALL);
12 /**
13 * Count amount of navigation tabs
15 $db_details_links_count_tabs = 0;
18 /**
19 * Prepares links
21 if ($table_info_num_rows > 0) {
22 $lnk2 = 'sql.php3';
23 $arg2 = $url_query
24 . '&amp;sql_query=' . urlencode('SELECT * FROM ' . PMA_backquote($table))
25 . '&amp;pos=0';
26 $lnk4 = 'tbl_select.php3';
27 $arg4 = $url_query;
28 $ln6_stt = (PMA_MYSQL_INT_VERSION >= 40000)
29 ? 'TRUNCATE TABLE '
30 : 'DELETE FROM ';
31 $lnk6 = 'sql.php3';
32 $arg6 = $url_query . '&amp;sql_query='
33 . urlencode($ln6_stt . PMA_backquote($table))
34 . '&amp;zero_rows='
35 . urlencode(sprintf($strTableHasBeenEmptied, htmlspecialchars($table)));
36 $att6 = 'class="drop" onclick="return confirmLink(this, \'' . $ln6_stt . PMA_jsFormat($table) . '\')"';
37 } else {
38 $lnk2 = '';
39 $arg2 = '';
40 $lnk4 = '';
41 $arg4 = '';
42 $lnk6 = '';
43 $arg6 = '';
44 $att6 = '';
47 // The 'back' is supposed to be set to the current sub-page. This is necessary
48 // when you have js deactivated, you click on Drop, then click cancel, and want
49 // to get back to the same sub-page.
50 $arg7 = ereg_replace('tbl_properties[^.]*.php3$', 'db_details.php3', $url_query) . '&amp;reload=1&amp;purge=1&amp;sql_query=' . urlencode('DROP TABLE ' . PMA_backquote($table) ) . '&amp;zero_rows=' . urlencode(sprintf($strTableHasBeenDropped, htmlspecialchars($table)));
51 $att7 = 'class="drop" onclick="return confirmLink(this, \'DROP TABLE ' . PMA_jsFormat($table) . '\')"';
54 /**
55 * Displays links
58 if ($cfg['LightTabs']) {
59 echo '&nbsp;';
60 } else {
61 echo '<table border="0" cellspacing="0" cellpadding="3" width="100%" class="tabs">
62 <tr>
63 <td width="8">&nbsp;</td>';
66 echo PMA_printTab($strStructure, 'tbl_properties_structure.php3', $url_query);
67 echo PMA_printTab($strBrowse, $lnk2, $arg2);
68 echo PMA_printTab($strSQL, 'tbl_properties.php3', $url_query);
69 echo PMA_printTab($strSelect, $lnk4, $arg4);
70 echo PMA_printTab($strInsert, 'tbl_change.php3', $url_query);
71 echo PMA_printTab($strExport, 'tbl_properties_export.php3', $url_query);
72 echo PMA_printTab($strOperations, 'tbl_properties_operations.php3', $url_query);
73 if (PMA_MYSQL_INT_VERSION >= 32322) {
74 echo PMA_printTab($strOptions, 'tbl_properties_options.php3', $url_query);
76 echo PMA_printTab($strEmpty, $lnk6, $arg6, $att6);
77 echo PMA_printTab($strDrop, 'sql.php3', $arg7, $att7);
78 echo "\n";
80 if (!$cfg['LightTabs']) {
81 echo '</tr></table>';
82 } else {
83 echo '<br />';
86 ?><br />