home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Servidores / xampp-win32-1.6.7-installer.exe / phpMyAdmin / libraries / navigation_header.inc.php < prev    next >
Encoding:
PHP Script  |  2008-06-23  |  4.1 KB  |  110 lines

  1. <?php
  2. /* vim: set expandtab sw=4 ts=4 sts=4: */
  3. /**
  4.  * displays the pma logo, links and db and server selection in left frame
  5.  *
  6.  * @version $Id: navigation_header.inc.php 11326 2008-06-17 21:32:48Z lem9 $
  7.  */
  8.  
  9. if (! defined('PHPMYADMIN')) {
  10.     exit;
  11. }
  12.  
  13. /**
  14.  *
  15.  */
  16. if (empty($query_url)) {
  17.     // avoid putting here $db because it could display a db name
  18.     // to which the next user does not have access
  19.     $query_url = PMA_generate_common_url();
  20. }
  21.  
  22. // display Logo, depending on $GLOBALS['cfg']['LeftDisplayLogo']
  23. if ($GLOBALS['cfg']['LeftDisplayLogo']) {
  24.     $logo = 'phpMyAdmin';
  25.     if (@file_exists($GLOBALS['pmaThemeImage'] . 'logo_left.png')) {
  26.         $logo = '<img src="' . $GLOBALS['pmaThemeImage'] . 'logo_left.png" '
  27.             .'alt="' . $logo . '" id="imgpmalogo" />';
  28.     } elseif (@file_exists($GLOBALS['pmaThemeImage'] . 'pma_logo2.png')) {
  29.         $logo = '<img src="' . $GLOBALS['pmaThemeImage'] . 'pma_logo2.png" '
  30.             .'alt="' . $logo . '" id="imgpmalogo" />';
  31.     }
  32.  
  33.     echo '<div id="pmalogo">' . "\n"
  34.         .'<a href="' . $GLOBALS['cfg']['LeftLogoLink'];
  35.     switch ($GLOBALS['cfg']['LeftLogoLinkWindow']) {
  36.         case 'new':
  37.             echo '" target="_blank"';
  38.             break;
  39.         case 'main':
  40.             // do not add our parameters for an external link
  41.             if (substr(strtolower($GLOBALS['cfg']['LeftLogoLink']), 0, 4) !== 'http') {
  42.                 echo '?' . $query_url . '" target="frame_content"';
  43.             } else {
  44.                 echo '"';
  45.             }
  46.     }
  47.     echo '>' . $logo . '</a>' . "\n"
  48.         .'</div>' . "\n";
  49. } // end of display logo
  50. ?>
  51. <div id="leftframelinks">
  52. <?php
  53.     echo '<a href="main.php?' . $query_url . '"'
  54.         .' title="' . $strHome . '">'
  55.         .($GLOBALS['cfg']['MainPageIconic']
  56.             ? '<img class="icon" src="' . $pmaThemeImage . 'b_home.png" width="16" '
  57.                 .' height="16" alt="' . $strHome . '" />'
  58.             : $strHome)
  59.         .'</a>' . "\n";
  60.     // if we have chosen server
  61.     if ($server != 0) {
  62.         // Logout for advanced authentication
  63.         if ($GLOBALS['cfg']['Server']['auth_type'] != 'config') {
  64.             echo ($GLOBALS['cfg']['MainPageIconic'] ? '' : ' - ');
  65.             echo '<a href="index.php?' . $query_url . '&old_usr='
  66.                 .urlencode($PHP_AUTH_USER) . '" target="_parent"'
  67.                 .' title="' . $strLogout . '" >'
  68.                 .($GLOBALS['cfg']['MainPageIconic']
  69.                     ? '<img class="icon" src="' . $pmaThemeImage . 's_loggoff.png" '
  70.                      .' width="16" height="16" alt="' . $strLogout . '" />'
  71.                     : $strLogout)
  72.                 .'</a>' . "\n";
  73.         } // end if ($GLOBALS['cfg']['Server']['auth_type'] != 'config'
  74.  
  75.         $anchor = 'querywindow.php?' . PMA_generate_common_url($db, $table);
  76.  
  77.         if ($GLOBALS['cfg']['MainPageIconic']) {
  78.             $query_frame_link_text =
  79.                 '<img class="icon" src="' . $pmaThemeImage . 'b_selboard.png"'
  80.                 .' width="16" height="16" alt="' . $strQueryFrame . '" />';
  81.         } else {
  82.             echo '<br />' . "\n";
  83.             $query_frame_link_text = $strQueryFrame;
  84.         }
  85.         echo '<a href="' . $anchor . '&no_js=true"'
  86.             .' title="' . $strQueryFrame . '"';
  87.         echo ' onclick="javascript:if (window.parent.open_querywindow()) return false;"';
  88.         echo '>' . $query_frame_link_text . '</a>' . "\n";
  89.     } // end if ($server != 0)
  90.  
  91. if ($GLOBALS['cfg']['MainPageIconic']) {
  92.     echo '    <a href="Documentation.html" target="documentation"'
  93.         .' title="' . $strPmaDocumentation . '" >'
  94.         .'<img class="icon" src="' . $pmaThemeImage . 'b_docs.png" width="16" height="16"'
  95.         .' alt="' . $strPmaDocumentation . '" /></a>' . "\n";
  96.     echo '    ' . PMA_showMySQLDocu('', '', TRUE) . "\n";
  97. }
  98. echo '</div>' . "\n";
  99.  
  100. /**
  101.  * Displays the MySQL servers choice form
  102.  */
  103. if ($GLOBALS['cfg']['LeftDisplayServers'] && (count($GLOBALS['cfg']['Servers']) > 1 || $server == 0 && count($GLOBALS['cfg']['Servers']) == 1)) {
  104.     echo '<div id="serverinfo">';
  105.     include './libraries/select_server.lib.php';
  106.     PMA_select_server(true, true);
  107.     echo '</div><br />';
  108. } // end if LeftDisplayServers
  109. ?>
  110.