2 /* vim: set expandtab sw=4 ts=4 sts=4: */
11 require_once './libraries/common.inc.php';
13 $pma_table = new PMA_Table($GLOBALS['table'], $GLOBALS['db']);
18 require './libraries/tbl_common.inc.php';
19 $url_query .= '&goto=view_operations.php&back=view_operations.php';
20 $url_params['goto'] = $url_params['back'] = 'view_operations.php';
23 * Gets tables informations
26 require './libraries/tbl_info.inc.php';
32 if (isset($_REQUEST['submitoptions'])) {
34 $warning_messages = array();
36 if (isset($_REQUEST['new_name'])) {
37 if ($pma_table->rename($_REQUEST['new_name'])) {
38 $_message .= $pma_table->getLastMessage();
40 $GLOBALS['table'] = $pma_table->getName();
44 $_message .= $pma_table->getLastError();
51 // set to success by default, because result set could be empty
52 // (for example, a table rename)
54 if (empty($_message)) {
56 ?
__('Your SQL query has been executed successfully')
58 // $result should exist, regardless of $_message
59 $_type = $result ?
'success' : 'error';
61 if (! empty($warning_messages)) {
62 $_message = new PMA_Message
;
63 $_message->addMessages($warning_messages);
64 $_message->isError(true);
65 unset($warning_messages);
67 echo PMA_Util
::getMessage(
68 $_message, $sql_query, $_type, $is_view = true
70 unset($_message, $_type);
73 $url_params['goto'] = 'view_operations.php';
74 $url_params['back'] = 'view_operations.php';
80 <!-- Table operations
-->
81 <div
class="operations_half_width">
82 <form method
="post" action
="view_operations.php">
83 <?php
echo PMA_generate_common_hidden_inputs($GLOBALS['db'], $GLOBALS['table']); ?
>
84 <input type
="hidden" name
="reload" value
="1" />
86 <legend
><?php
echo __('Operations'); ?
></legend
>
89 <!-- Change view name
-->
90 <tr
><td
><?php
echo __('Rename view to'); ?
></td
>
91 <td
><input type
="text" size
="20" name
="new_name" onfocus
="this.select()"
92 value
="<?php echo htmlspecialchars($GLOBALS['table']); ?>" />
97 <fieldset
class="tblFooters">
98 <input type
="submit" name
="submitoptions" value
="<?php echo __('Go'); ?>" />