3 // vim: expandtab sw=4 ts=4 sts=4:
7 * Sets error reporting level
9 // (removed to avoid path disclosure, not sure about why this was here)
10 // error_reporting(E_ALL);
15 require_once('./libraries/common.lib.php');
17 PMA_checkParameters(array('db'));
20 * Count amount of navigation tabs
22 $db_details_links_count_tabs = 0;
28 require_once('./libraries/bookmark.lib.php');
29 $book_sql_query = PMA_queryBookmarks($db, $cfg['Bookmark'], '\'' . PMA_sqlAddslashes($table) . '\'', 'label');
31 if ($table_info_num_rows > 0) {
34 . '&sql_query=' . (isset($book_sql_query) && $book_sql_query != FALSE ?
urlencode($book_sql_query) : urlencode('SELECT * FROM ' . PMA_backquote($table)))
36 $lnk4 = 'tbl_select.php';
38 $ln6_stt = (PMA_MYSQL_INT_VERSION
>= 40000)
42 $arg6 = $url_query . '&sql_query='
43 . urlencode($ln6_stt . PMA_backquote($table))
45 . urlencode(sprintf($strTableHasBeenEmptied, htmlspecialchars($table)));
46 $att6 = 'class="drop" onclick="return confirmLink(this, \'' . $ln6_stt . PMA_jsFormat($table) . '\')"';
57 $arg7 = $url_query . '&reload=1&purge=1&sql_query=' . urlencode('DROP TABLE ' . PMA_backquote($table) ) . '&zero_rows=' . urlencode(sprintf($strTableHasBeenDropped, htmlspecialchars($table)));
58 $att7 = 'class="drop" onclick="return confirmLink(this, \'DROP TABLE ' . PMA_jsFormat($table) . '\')"';
65 if ($cfg['LightTabs']) {
68 echo '<table border="0" cellspacing="0" cellpadding="3" width="100%" class="tabs">' . "\n"
70 . ' <td width="8"> </td>';
73 echo PMA_printTab($strStructure, 'tbl_properties_structure.php', $url_query)
74 . PMA_printTab($strBrowse, $lnk2, $arg2)
75 . PMA_printTab($strSQL, 'tbl_properties.php', $url_query)
76 . PMA_printTab($strSearch, $lnk4, $arg4)
77 . PMA_printTab($strInsert, 'tbl_change.php', $url_query)
78 . PMA_printTab($strExport, 'tbl_properties_export.php', $url_query . '&single_table=true')
79 . PMA_printTab($strOperations, 'tbl_properties_operations.php', $url_query)
80 . PMA_printTab($strEmpty, $lnk6, $arg6, $att6)
81 . PMA_printTab($strDrop, 'sql.php', $arg7, $att7)
84 if (!$cfg['LightTabs']) {