Common strings for descriptions of DATE, TIME, DATETIME and VARCHAR2
[phpmyadmin.git] / tbl_move_copy.php
blob1d966daca972a28fba6faf7c3b2a49fd9c52cbcc
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
5 * @package PhpMyAdmin
6 */
8 /**
9 * Gets some core libraries
11 require_once 'libraries/common.inc.php';
13 // Check parameters
15 PMA_checkParameters(array('db', 'table'));
17 /**
18 * Defines the url to return to in case of error in a sql statement
20 $err_url = 'tbl_sql.php?' . PMA_generate_common_url($db, $table);
23 /**
24 * Selects the database to work with
26 PMA_DBI_select_db($db);
28 $goto = $cfg['DefaultTabTable'];
30 /**
31 * $_REQUEST['target_db'] could be empty in case we came from an input field
32 * (when there are many databases, no drop-down)
34 if (empty($_REQUEST['target_db'])) {
35 $_REQUEST['target_db'] = $db;
38 /**
39 * A target table name has been sent to this script -> do the work
41 if (PMA_isValid($_REQUEST['new_name'])) {
42 if ($db == $_REQUEST['target_db'] && $table == $_REQUEST['new_name']) {
43 if (isset($_REQUEST['submit_move'])) {
44 $message = PMA_Message::error(__('Can\'t move table to same one!'));
45 } else {
46 $message = PMA_Message::error(__('Can\'t copy table to same one!'));
48 $result = false;
49 } else {
50 $result = PMA_Table::moveCopy(
51 $db, $table, $_REQUEST['target_db'], $_REQUEST['new_name'],
52 $_REQUEST['what'], isset($_REQUEST['submit_move']), 'one_table'
55 if (isset($_REQUEST['submit_move'])) {
56 $message = PMA_Message::success(__('Table %s has been moved to %s.'));
57 } else {
58 $message = PMA_Message::success(__('Table %s has been copied to %s.'));
60 $old = PMA_backquote($db) . '.' . PMA_backquote($table);
61 $message->addParam($old);
62 $new = PMA_backquote($_REQUEST['target_db']) . '.' . PMA_backquote($_REQUEST['new_name']);
63 $message->addParam($new);
65 /* Check: Work on new table or on old table? */
66 if (isset($_REQUEST['submit_move']) || PMA_isValid($_REQUEST['switch_to_new'])) {
67 $db = $_REQUEST['target_db'];
68 $table = $_REQUEST['new_name'];
71 if ( $_REQUEST['ajax_request'] == true) {
72 $extra_data['sql_query'] = PMA_showMessage(null, $sql_query);
73 $extra_data['db'] = $GLOBALS['db'];
74 PMA_ajaxResponse($message, $message->isSuccess(), $extra_data);
77 $reload = 1;
79 } else {
80 /**
81 * No new name for the table!
83 $message = PMA_Message::error(__('The table name is empty!'));
84 $result = false;
87 /**
88 * Back to the calling script
90 $_message = $message;
91 unset($message);