home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Servidores / xampp-win32-1.6.7-installer.exe / phpMyAdmin / server_export.php < prev    next >
PHP Script  |  2008-06-23  |  2KB  |  54 lines

  1. <?php
  2. /* vim: set expandtab sw=4 ts=4 sts=4: */
  3. /**
  4.  *
  5.  * @version $Id: server_export.php 10517 2007-07-22 17:07:18Z lem9 $
  6.  */
  7.  
  8. /**
  9.  * Does the common work
  10.  */
  11. require_once './libraries/common.inc.php';
  12.  
  13. $js_to_run = 'functions.js';
  14.  
  15. /**
  16.  * Displays the links
  17.  */
  18. require './libraries/server_links.inc.php';
  19.  
  20. $export_page_title = $strViewDumpDatabases . "\n";
  21. $checkall_url = 'server_export.php?'
  22.               . PMA_generate_common_url()
  23.               . '&goto=db_export.php';
  24.  
  25. $multi_values = '<div align="center">';
  26. $multi_values .= '<a href="' . $checkall_url . '&selectall=1" onclick="setSelectOptions(\'dump\', \'db_select[]\', true); return false;">' . $strSelectAll . '</a>
  27.         /
  28.         <a href="' . $checkall_url . '" onclick="setSelectOptions(\'dump\', \'db_select[]\', false); return false;">' . $strUnselectAll . '</a><br />';
  29.  
  30. $multi_values .= '<select name="db_select[]" size="6" multiple="multiple">';
  31. $multi_values .= "\n";
  32.  
  33. foreach ($GLOBALS['PMA_List_Database']->items as $current_db) {
  34.     if (!empty($selectall) || (isset($tmp_select) && strpos(' ' . $tmp_select, '|' . $current_db . '|'))) {
  35.         $is_selected = ' selected="selected"';
  36.     } else {
  37.         $is_selected = '';
  38.     }
  39.     $current_db   = htmlspecialchars($current_db);
  40.     $multi_values .= '                <option value="' . $current_db . '"' . $is_selected . '>' . $current_db . '</option>' . "\n";
  41. } // end while
  42. $multi_values .= "\n";
  43. $multi_values .= '</select></div><br />';
  44.  
  45. $export_type = 'server';
  46. require_once './libraries/display_export.lib.php';
  47.  
  48.  
  49. /**
  50.  * Displays the footer
  51.  */
  52. require_once './libraries/footer.inc.php';
  53. ?>
  54.