Improve function naming and remove vulgar term

This commit is contained in:
Marc Delisle
2011-01-12 08:53:06 -05:00
parent cc9f99d303
commit b34b104a30
2 changed files with 6 additions and 6 deletions

View File

@@ -40,7 +40,7 @@ class PMA_User_Schema
* @access public * @access public
*/ */
public function processUserPreferences() public function processUserChoice()
{ {
global $action_choose,$db,$cfgRelation,$cfg,$query_default_option; global $action_choose,$db,$cfgRelation,$cfg,$query_default_option;
@@ -65,7 +65,7 @@ class PMA_User_Schema
$this->c_table_rows = $_POST['c_table_rows']; $this->c_table_rows = $_POST['c_table_rows'];
$this->_editCoordinates($db, $cfgRelation,$query_default_option); $this->_editCoordinates($db, $cfgRelation,$query_default_option);
break; break;
case 'deleteCrap': case 'delete_old_references':
$this->_deleteTableRows($delrow,$cfgRelation,$db,$this->chosenPage); $this->_deleteTableRows($delrow,$cfgRelation,$db,$this->chosenPage);
break; break;
case 'process_export': case 'process_export':
@@ -84,7 +84,7 @@ class PMA_User_Schema
* @return void * @return void
* @access public * @access public
*/ */
public function createPage($db) public function showCreatePageDialog($db)
{ {
?> ?>
<form method="post" action="schema_edit.php" name="frm_create_page"> <form method="post" action="schema_edit.php" name="frm_create_page">
@@ -439,7 +439,7 @@ class PMA_User_Schema
if ($shoot) { if ($shoot) {
echo '<form action="schema_edit.php" method="post">' . "\n" echo '<form action="schema_edit.php" method="post">' . "\n"
. PMA_generate_common_hidden_inputs($db, $table) . PMA_generate_common_hidden_inputs($db, $table)
. '<input type="hidden" name="do" value="deleteCrap" />' . "\n" . '<input type="hidden" name="do" value="delete_old_references" />' . "\n"
. '<input type="hidden" name="chpage" value="' . htmlspecialchars($chpage) . '" />' . "\n" . '<input type="hidden" name="chpage" value="' . htmlspecialchars($chpage) . '" />' . "\n"
. __('The current page has references to tables that no longer exist. Would you like to delete those references?') . __('The current page has references to tables that no longer exist. Would you like to delete those references?')
. '<ul>' . "\n" . '<ul>' . "\n"

View File

@@ -85,7 +85,7 @@ if ($cfgRelation['pdfwork']) {
*/ */
if(isset($_REQUEST['do'])){ if(isset($_REQUEST['do'])){
$user_schema->setAction($_REQUEST['do']); $user_schema->setAction($_REQUEST['do']);
$user_schema->processUserPreferences(); $user_schema->processUserChoice();
} }
/** /**
@@ -99,7 +99,7 @@ if ($cfgRelation['pdfwork']) {
* Create a new page where relations will be drawn * Create a new page where relations will be drawn
*/ */
$user_schema->createPage($db); $user_schema->showCreatePageDialog($db);
/** /**
* After selection of page or creating a page * After selection of page or creating a page