never translated
[phpmyadmin/crack.git] / db_details_export.php3
blob8446d8b3f439de2d2e355065f2e01fab034cce4b
1 <?php
2 /* $Id$ */
3 // vim: expandtab sw=4 ts=4 sts=4:
6 /**
7 * Gets some core libraries
8 */
9 $sub_part = '_export';
10 require('./db_details_common.php3');
11 $url_query .= '&amp;goto=db_details_export.php3';
12 require('./db_details_db_info.php3');
14 /**
15 * Displays the form
18 <h2>
19 <?php echo $strViewDumpDB; ?>
20 </h2>
22 <?php
23 $multi_tables = '';
24 if ($num_tables > 1) {
26 $multi_tables = '<div align="center"><select name="table_select[]" size="6" multiple="multiple">';
27 $multi_tables .= "\n";
29 $i = 0;
30 while ($i < $num_tables) {
31 $table = (PMA_MYSQL_INT_VERSION >= 32303) ? $tables[$i]['Name'] : $tables[$i];
32 if (!empty($selectall) || (isset($tmp_select) && strpos(' ' . $tmp_select, '|' . $table . '|'))) {
33 $is_selected = ' selected="selected"';
34 } else {
35 $is_selected = '';
37 $table = htmlspecialchars($table);
38 $multi_tables .= ' <option value="' . $table . '"' . $is_selected . '>' . $table . '</option>' . "\n";
39 $i++;
40 } // end while
41 $multi_tables .= "\n";
42 $multi_tables .= '</select></div>';
44 $checkall_url = 'db_details_export.php3?'
45 . PMA_generate_common_url($db)
46 . '&amp;goto=db_details_export.php3';
48 $multi_tables .= '<br />
49 <a href="' . $checkall_url . '&amp;selectall=1#dumpdb" onclick="setSelectOptions(\'db_dump\', \'table_select[]\', true); return false;">' . $strSelectAll . '</a>
50 &nbsp;/&nbsp;
51 <a href="' . $checkall_url . '#dumpdb" onclick="setSelectOptions(\'db_dump\', \'table_select[]\', false); return false;">' . $strUnselectAll . '</a>
52 <br /><br />';
53 } // end if
54 echo "\n";
56 $tbl_dump_form_name = 'db_dump';
57 require('./libraries/display_export.lib.php3');
59 /**
60 * Displays the footer
62 require('./footer.inc.php3');