3 // vim: expandtab sw=4 ts=4 sts=4:
6 * Gets some core libraries
8 require_once('./libraries/common.lib.php');
12 PMA_checkParameters(array('db', 'table'));
14 require_once('./libraries/tbl_move_copy.php');
17 * Defines the url to return to in case of error in a sql statement
19 $err_url = 'tbl_properties.php?' . PMA_generate_common_url($db, $table);
23 * Selects the database to work with
25 PMA_DBI_select_db($db);
28 * A target table name has been sent to this script -> do the work
30 if (isset($new_name) && trim($new_name) != '') {
31 if ($db == $target_db && $table == $new_name) {
32 $message = (isset($submit_move) ?
$strMoveTableSameNames : $strCopyTableSameNames);
34 PMA_table_move_copy($db, $table, $target_db, $new_name, $what, isset($submit_move));
35 $js_to_run = 'functions.js';
36 $message = (isset($submit_move) ?
$strMoveTableOK : $strCopyTableOK);
37 $message = sprintf($message, htmlspecialchars($table), htmlspecialchars($new_name));
39 /* Check: Work on new table or on old table? */
40 if (isset($submit_move)) {
44 $pma_uri_parts = parse_url($cfg['PmaAbsoluteUri']);
45 if (isset($switch_to_new) && $switch_to_new == 'true') {
46 setcookie('pma_switch_to_new', 'true', 0, $GLOBALS['cookie_path'], '' , $GLOBALS['is_https']);
50 setcookie('pma_switch_to_new', '', 0, $GLOBALS['cookie_path'], '' , $GLOBALS['is_https']);
54 require_once('./header.inc.php');
55 } // end is target table name
59 * No new name for the table!
62 require_once('./header.inc.php');
63 PMA_mysqlDie($strTableEmpty, '', '', $err_url);
68 * Back to the calling script
71 require('./tbl_properties.php');