2 /* vim: set expandtab sw=4 ts=4 sts=4: */
11 require_once './libraries/common.inc.php';
13 PMA_checkParameters(array('db', 'table'));
18 require_once './libraries/bookmark.lib.php';
22 * Set parameters for links
25 ||
(isset($_POST['table']) && isset($_POST['new_name']) && $_POST['table'] != $_POST['new_name'])) {
26 $url_query = PMA_generate_common_url($db, $table);
28 $url_params['db'] = $db;
29 $url_params['table'] = $table;
32 * Defines the urls to return to in case of error in a sql statement
34 $err_url_0 = $cfg['DefaultTabDatabase'] . PMA_generate_common_url(array('db' => $db,));
35 $err_url = $cfg['DefaultTabTable'] . PMA_generate_common_url($url_params);
40 $GLOBALS['js_include'][] = 'functions.js';
41 require_once './libraries/header.inc.php';
48 $tabs['browse']['icon'] = 'b_browse.png';
49 $tabs['browse']['text'] = $strBrowse;
50 $tabs['browse']['link'] = 'sql.php';
51 $tabs['browse']['args']['pos'] = 0;
53 $tabs['structure']['icon'] = 'b_props.png';
54 $tabs['structure']['link'] = 'tbl_structure.php';
55 $tabs['structure']['text'] = $strStructure;
57 $tabs['sql']['icon'] = 'b_sql.png';
58 $tabs['sql']['link'] = 'tbl_sql.php';
59 $tabs['sql']['text'] = $strSQL;
61 $tabs['search']['icon'] = 'b_search.png';
62 $tabs['search']['text'] = $strSearch;
63 $tabs['search']['link'] = 'tbl_select.php';
65 if (! (isset($db_is_information_schema) && $db_is_information_schema)) {
66 $tabs['insert']['icon'] = 'b_insrow.png';
67 $tabs['insert']['link'] = 'tbl_change.php';
68 $tabs['insert']['text'] = $strInsert;
71 $tabs['export']['icon'] = 'b_tblexport.png';
72 $tabs['export']['link'] = 'tbl_export.php';
73 $tabs['export']['args']['single_table'] = 'true';
74 $tabs['export']['text'] = $strExport;
77 * Don't display "Import", "Operations" and "Empty"
78 * for views and information_schema
80 if (! $tbl_is_view && ! (isset($db_is_information_schema) && $db_is_information_schema)) {
81 $tabs['import']['icon'] = 'b_tblimport.png';
82 $tabs['import']['link'] = 'tbl_import.php';
83 $tabs['import']['text'] = $strImport;
85 $tabs['operation']['icon'] = 'b_tblops.png';
86 $tabs['operation']['link'] = 'tbl_operations.php';
87 $tabs['operation']['text'] = $strOperations;
89 $tabs['empty']['link'] = 'sql.php';
90 $tabs['empty']['args']['sql_query'] = 'TRUNCATE TABLE ' . PMA_backquote($table);
91 $tabs['empty']['args']['zero_rows'] = sprintf($strTableHasBeenEmptied, htmlspecialchars($table));
92 $tabs['empty']['attr'] = 'onclick="return confirmLink(this, \'TRUNCATE TABLE ' . PMA_jsFormat($table) . '\')"';
93 $tabs['empty']['args']['goto'] = 'tbl_structure.php';
94 $tabs['empty']['class'] = 'caution';
95 $tabs['empty']['icon'] = 'b_empty.png';
96 $tabs['empty']['text'] = $strEmpty;
97 if ($table_info_num_rows == 0) {
98 $tabs['empty']['warning'] = $strTableIsEmpty;
103 * no drop in information_schema
105 if (! (isset($db_is_information_schema) && $db_is_information_schema)) {
106 $tabs['drop']['icon'] = 'b_deltbl.png';
107 $tabs['drop']['link'] = 'sql.php';
108 $tabs['drop']['text'] = $strDrop;
109 $tabs['drop']['args']['reload'] = 1;
110 $tabs['drop']['args']['purge'] = 1;
111 $drop_command = 'DROP ' . ($tbl_is_view ?
'VIEW' : 'TABLE');
112 $tabs['drop']['args']['sql_query'] = $drop_command . ' ' . PMA_backquote($table);
113 $tabs['drop']['args']['goto'] = 'db_structure.php';
114 $tabs['drop']['args']['zero_rows'] = sprintf(($tbl_is_view ?
$strViewHasBeenDropped : $strTableHasBeenDropped), htmlspecialchars($table));
115 $tabs['drop']['attr'] = 'onclick="return confirmLink(this, \'' . $drop_command . ' ' . PMA_jsFormat($table) . '\')"';
116 unset($drop_command);
117 $tabs['drop']['class'] = 'caution';
120 if ($table_info_num_rows == 0 && !$tbl_is_view) {
121 $tabs['browse']['warning'] = $strTableIsEmpty;
122 $tabs['search']['warning'] = $strTableIsEmpty;
125 echo PMA_getTabs($tabs);
131 if (!empty($message)) {
132 PMA_showMessage($message);