Merge remote branch 'pootle/master'
[phpmyadmin/nijel.git] / db_export.php
blob718a489d831d237d9e8c353e2a8824c4521712f8
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * dumps a database
6 * @version $Id$
7 * @uses libraries/db_common.inc.php
8 * @uses libraries/db_info.inc.php
9 * @uses libraries/display_export.lib.php
10 * @uses $tables from libraries/db_info.inc.php
11 * @package phpMyAdmin
14 /**
15 * Gets some core libraries
17 require_once './libraries/common.inc.php';
19 // $sub_part is also used in db_info.inc.php to see if we are coming from
20 // db_export.php, in which case we don't obey $cfg['MaxTableList']
21 $sub_part = '_export';
22 require_once './libraries/db_common.inc.php';
23 $url_query .= '&amp;goto=db_export.php';
24 require_once './libraries/db_info.inc.php';
26 /**
27 * Displays the form
29 $export_page_title = __('View dump (schema) of database');
31 // exit if no tables in db found
32 if ($num_tables < 1) {
33 PMA_Message::error(__('No tables found in database.'))->display();
34 require './libraries/footer.inc.php';
35 exit;
36 } // end if
38 $checkall_url = 'db_export.php?'
39 . PMA_generate_common_url($db)
40 . '&amp;goto=db_export.php';
42 $multi_values = '<div align="center">';
43 $multi_values .= '<a href="' . $checkall_url . '" onclick="setSelectOptions(\'dump\', \'table_select[]\', true); return false;">' . __('Select All') . '</a>
45 <a href="' . $checkall_url . '&amp;unselectall=1" onclick="setSelectOptions(\'dump\', \'table_select[]\', false); return false;">' . __('Unselect All') . '</a><br />';
47 $multi_values .= '<select name="table_select[]" size="10" multiple="multiple">';
48 $multi_values .= "\n";
50 if (!empty($selected_tbl) && empty($table_select)) {
51 $table_select = $selected_tbl;
54 foreach ($tables as $each_table) {
55 if (! empty($unselectall)
56 || (! empty($table_select) && !in_array($each_table['Name'], $table_select))) {
57 $is_selected = '';
58 } else {
59 $is_selected = ' selected="selected"';
61 $table_html = htmlspecialchars($each_table['Name']);
62 $multi_values .= ' <option value="' . $table_html . '"'
63 . $is_selected . '>'
64 . str_replace(' ', '&nbsp;', $table_html) . '</option>' . "\n";
65 } // end for
67 $multi_values .= "\n";
68 $multi_values .= '</select></div><br />';
70 $export_type = 'database';
71 require_once './libraries/display_export.lib.php';
73 /**
74 * Displays the footer
76 require_once './libraries/footer.inc.php';