Skip to content

Commit

Permalink
Gui/export: Select All/Unselect All over the choices, thanks to Flori…
Browse files Browse the repository at this point in the history
…an Schmitz
  • Loading branch information
lem9 committed Jul 22, 2007
1 parent 8f01fbd commit 7b47378
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 23 deletions.
2 changes: 2 additions & 0 deletions ChangeLog
Expand Up @@ -86,6 +86,8 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
+ [privileges] Support password hashing on the Edit Privileges interface
- bug #1755339 Warn about rename dataase actually being copy/delete
- bug #1746921 Left frame shrinks on db change, thanks to Juergen Wind
+ [gui] Export: Select All/Unselect All over the choices,
thanks to Florian Schmitz

2.10.3.0 (2007-07-20)

Expand Down
22 changes: 11 additions & 11 deletions db_export.php
Expand Up @@ -32,7 +32,16 @@
exit;
} // end if

$multi_values = '<div align="center"><select name="table_select[]" size="6" multiple="multiple">';
$checkall_url = 'db_export.php?'
. PMA_generate_common_url($db)
. '&amp;goto=db_export.php';

$multi_values = '<div align="center">';
$multi_values .= '<a href="' . $checkall_url . '" onclick="setSelectOptions(\'dump\', \'table_select[]\', true); return false;">' . $strSelectAll . '</a>
/
<a href="' . $checkall_url . '&amp;unselectall=1" onclick="setSelectOptions(\'dump\', \'table_select[]\', false); return false;">' . $strUnselectAll . '</a><br />';

$multi_values .= '<select name="table_select[]" size="6" multiple="multiple">';
$multi_values .= "\n";

foreach ($tables as $each_table) {
Expand All @@ -54,16 +63,7 @@
. str_replace(' ', '&nbsp;', $table_html) . '</option>' . "\n";
} // end for
$multi_values .= "\n";
$multi_values .= '</select></div>';

$checkall_url = 'db_export.php?'
. PMA_generate_common_url($db)
. '&amp;goto=db_export.php';

$multi_values .= '<br />
<a href="' . $checkall_url . '" onclick="setSelectOptions(\'dump\', \'table_select[]\', true); return false;">' . $strSelectAll . '</a>
/
<a href="' . $checkall_url . '&amp;unselectall=1" onclick="setSelectOptions(\'dump\', \'table_select[]\', false); return false;">' . $strUnselectAll . '</a>';
$multi_values .= '</select></div><br />';

$export_type = 'database';
require_once './libraries/display_export.lib.php';
Expand Down
23 changes: 11 additions & 12 deletions server_export.php
Expand Up @@ -18,7 +18,16 @@
require './libraries/server_links.inc.php';

$export_page_title = $strViewDumpDatabases . "\n";
$multi_values = '<div align="center"><select name="db_select[]" size="6" multiple="multiple">';
$checkall_url = 'server_export.php?'
. PMA_generate_common_url()
. '&amp;goto=db_export.php';

$multi_values = '<div align="center">';
$multi_values .= '<a href="' . $checkall_url . '&amp;selectall=1" onclick="setSelectOptions(\'dump\', \'db_select[]\', true); return false;">' . $strSelectAll . '</a>
/
<a href="' . $checkall_url . '" onclick="setSelectOptions(\'dump\', \'db_select[]\', false); return false;">' . $strUnselectAll . '</a><br />';

$multi_values .= '<select name="db_select[]" size="6" multiple="multiple">';
$multi_values .= "\n";

foreach ($GLOBALS['PMA_List_Database']->items as $current_db) {
Expand All @@ -31,17 +40,7 @@
$multi_values .= ' <option value="' . $current_db . '"' . $is_selected . '>' . $current_db . '</option>' . "\n";
} // end while
$multi_values .= "\n";
$multi_values .= '</select></div>';

$checkall_url = 'server_export.php?'
. PMA_generate_common_url()
. '&amp;goto=db_export.php';

$multi_values .= '<br />
<a href="' . $checkall_url . '&amp;selectall=1" onclick="setSelectOptions(\'dump\', \'db_select[]\', true); return false;">' . $strSelectAll . '</a>
/
<a href="' . $checkall_url . '" onclick="setSelectOptions(\'dump\', \'db_select[]\', false); return false;">' . $strUnselectAll . '</a>
<br /><br />';
$multi_values .= '</select></div><br />';

$export_type = 'server';
require_once './libraries/display_export.lib.php';
Expand Down

0 comments on commit 7b47378

Please sign in to comment.