2 /* vim: set expandtab sw=4 ts=4 sts=4: */
11 require_once './libraries/common.inc.php';
12 require_once './libraries/mysql_charsets.lib.php';
15 * No rows were selected => show again the query and tell that user.
17 if ((!isset($rows_to_delete) ||
!is_array($rows_to_delete)) && !isset($mult_btn)) {
18 $disp_message = $strNoRowsSelected;
21 require_once './libraries/footer.inc.php';
25 * Drop multiple rows if required
28 // workaround for IE problem:
29 if (isset($submit_mult_delete_x)) {
30 $submit_mult = 'row_delete';
31 } elseif (isset($submit_mult_change_x)) {
32 $submit_mult = 'row_edit';
33 } elseif (isset($submit_mult_export_x)) {
34 $submit_mult = 'row_export';
37 // garvin: If the 'Ask for confirmation' button was pressed, this can only come from 'delete' mode,
38 // so we set it straight away.
39 if (isset($mult_btn)) {
40 $submit_mult = 'row_delete';
43 switch($submit_mult) {
50 case $GLOBALS['strExport']:
51 $submit_mult = 'row_export';
54 case $GLOBALS['strDelete']:
55 case $GLOBALS['strKill']:
56 $submit_mult = 'row_delete';
60 case $GLOBALS['strEdit']:
61 $submit_mult = 'row_edit';
65 if ($submit_mult == 'row_edit') {
66 $js_to_run = 'tbl_change.js';
69 if ($submit_mult == 'row_delete' ||
$submit_mult == 'row_export') {
70 $js_to_run = 'functions.js';
73 require_once './libraries/header.inc.php';
75 if (!empty($submit_mult)) {
76 switch($submit_mult) {
78 $primary_key = array();
79 // garvin: As we got the fields to be edited from the 'rows_to_delete' checkbox, we use the index of it as the
80 // indicating primary key. Then we built the array which is used for the tbl_change.php script.
81 foreach ($rows_to_delete AS $i_primary_key => $del_query) {
82 $primary_key[] = urldecode($i_primary_key);
85 $active_page = 'tbl_change.php';
86 include './tbl_change.php';
90 // Needed to allow SQL export
93 $primary_key = array();
94 //$sql_query = urldecode($sql_query);
95 // garvin: As we got the fields to be edited from the 'rows_to_delete' checkbox, we use the index of it as the
96 // indicating primary key. Then we built the array which is used for the tbl_change.php script.
97 foreach ($rows_to_delete AS $i_primary_key => $del_query) {
98 $primary_key[] = urldecode($i_primary_key);
101 $active_page = 'tbl_export.php';
102 include './tbl_export.php';
107 $action = 'tbl_row_action.php';
108 $err_url = 'tbl_row_action.php?' . PMA_generate_common_url($db, $table);
109 if (! isset($mult_btn)) {
110 $original_sql_query = $sql_query;
111 $original_url_query = $url_query;
113 require './libraries/mult_submits.inc.php';
114 $url_query = PMA_generate_common_url($db, $table)
115 . '&goto=tbl_sql.php';
119 * Show result of multi submit operation
121 // sql_query is not set when user does not confirm multi-delete
122 if ((!empty($submit_mult) ||
isset($mult_btn)) && ! empty($sql_query)) {
123 $disp_message = $strSuccess;
124 $disp_query = $sql_query;
127 if (isset($original_sql_query)) {
128 $sql_query = $original_sql_query;
131 if (isset($original_url_query)) {
132 $url_query = $original_url_query;
135 // this is because sql.php could call tbl_structure
136 // which would think it needs to call mult_submits.inc.php:
140 $active_page = 'sql.php';
144 * Displays the footer
146 require_once './libraries/footer.inc.php';