88 lines
2.7 KiB
PHP
Executable File
88 lines
2.7 KiB
PHP
Executable File
<?php
|
|
/* $Id$ */
|
|
// vim: expandtab sw=4 ts=4 sts=4:
|
|
|
|
|
|
/**
|
|
* Sets error reporting level
|
|
*/
|
|
error_reporting(E_ALL);
|
|
|
|
|
|
/**
|
|
* Count amount of navigation tabs
|
|
*/
|
|
$db_details_links_count_tabs = 0;
|
|
|
|
|
|
/**
|
|
* Prepares links
|
|
*/
|
|
include('./libraries/bookmark.lib.php3');
|
|
$book_sql_query = PMA_queryBookmarks($db, $cfg['Bookmark'], '\'' . PMA_sqlAddslashes($table) . '\'', 'label');
|
|
|
|
if ($table_info_num_rows > 0) {
|
|
$lnk2 = 'sql.php3';
|
|
$arg2 = $url_query
|
|
. '&sql_query=' . (isset($book_sql_query) && $book_sql_query != FALSE ? urlencode($book_sql_query) : urlencode('SELECT * FROM ' . PMA_backquote($table)))
|
|
. '&pos=0';
|
|
$lnk4 = 'tbl_select.php3';
|
|
$arg4 = $url_query;
|
|
$ln6_stt = (PMA_MYSQL_INT_VERSION >= 40000)
|
|
? 'TRUNCATE TABLE '
|
|
: 'DELETE FROM ';
|
|
$lnk6 = 'sql.php3';
|
|
$arg6 = $url_query . '&sql_query='
|
|
. urlencode($ln6_stt . PMA_backquote($table))
|
|
. '&zero_rows='
|
|
. urlencode(sprintf($strTableHasBeenEmptied, htmlspecialchars($table)));
|
|
$att6 = 'class="drop" onclick="return confirmLink(this, \'' . $ln6_stt . PMA_jsFormat($table) . '\')"';
|
|
} else {
|
|
$lnk2 = '';
|
|
$arg2 = '';
|
|
$lnk4 = '';
|
|
$arg4 = '';
|
|
$lnk6 = '';
|
|
$arg6 = '';
|
|
$att6 = '';
|
|
}
|
|
|
|
// The 'back' is supposed to be set to the current sub-page. This is necessary
|
|
// when you have js deactivated, you click on Drop, then click cancel, and want
|
|
// to get back to the same sub-page.
|
|
$arg7 = ereg_replace('tbl_properties[^.]*.php3$', 'db_details.php3', $url_query) . '&reload=1&purge=1&sql_query=' . urlencode('DROP TABLE ' . PMA_backquote($table) ) . '&zero_rows=' . urlencode(sprintf($strTableHasBeenDropped, htmlspecialchars($table)));
|
|
$att7 = 'class="drop" onclick="return confirmLink(this, \'DROP TABLE ' . PMA_jsFormat($table) . '\')"';
|
|
|
|
|
|
/**
|
|
* Displays links
|
|
*/
|
|
|
|
if ($cfg['LightTabs']) {
|
|
echo ' ';
|
|
} else {
|
|
echo '<table border="0" cellspacing="0" cellpadding="3" width="100%" class="tabs">
|
|
<tr>
|
|
<td width="8"> </td>';
|
|
}
|
|
|
|
echo PMA_printTab($strStructure, 'tbl_properties_structure.php3', $url_query);
|
|
echo PMA_printTab($strBrowse, $lnk2, $arg2);
|
|
echo PMA_printTab($strSQL, 'tbl_properties.php3', $url_query);
|
|
echo PMA_printTab($strSelect, $lnk4, $arg4);
|
|
echo PMA_printTab($strInsert, 'tbl_change.php3', $url_query);
|
|
echo PMA_printTab($strExport, 'tbl_properties_export.php3', $url_query);
|
|
echo PMA_printTab($strOperations, 'tbl_properties_operations.php3', $url_query);
|
|
echo PMA_printTab($strEmpty, $lnk6, $arg6, $att6);
|
|
echo PMA_printTab($strDrop, 'sql.php3', $arg7, $att7);
|
|
echo "\n";
|
|
|
|
if (!$cfg['LightTabs']) {
|
|
echo '</tr></table>';
|
|
} else {
|
|
echo '<br />';
|
|
}
|
|
|
|
?><br />
|
|
|