RFE #1435922 [gui] navigation frame shows listing of databases when none selected
[phpmyadmin/last10db.git] / libraries / navigation_header.inc.php
blob3ed043cdba0860c52aa27dd717fc73d4a3d26247
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
6 * @version $Id$
7 */
9 /**
12 if (empty($query_url)) {
13 $query_url = PMA_generate_common_url($db, $table);
16 // display Logo, depending on $GLOBALS['cfg']['LeftDisplayLogo']
17 if ($GLOBALS['cfg']['LeftDisplayLogo']) {
18 $logo = 'phpMyAdmin';
19 if (@file_exists($GLOBALS['pmaThemeImage'] . 'logo_left.png')) {
20 $logo = '<img src="' . $GLOBALS['pmaThemeImage'] . 'logo_left.png" '
21 .'alt="' . $logo . '" id="imgpmalogo" />';
22 } elseif (@file_exists($GLOBALS['pmaThemeImage'] . 'pma_logo2.png')) {
23 $logo = '<img src="' . $GLOBALS['pmaThemeImage'] . 'pma_logo2.png" '
24 .'alt="' . $logo . '" id="imgpmalogo" />';
27 echo '<div id="pmalogo">' . "\n"
28 .'<a href="' . $GLOBALS['cfg']['LeftLogoLink'];
29 switch ($GLOBALS['cfg']['LeftLogoLinkWindow']) {
30 case 'new':
31 echo '" target="_blank"';
32 break;
33 case 'main':
34 echo '?' . $query_url . '" target="frame_content"';
36 echo '>' . $logo . '</a>' . "\n"
37 .'</div>' . "\n";
38 } // end of display logo
40 <div id="leftframelinks">
41 <?php
42 echo '<a href="main.php?' . $query_url . '"'
43 .' title="' . $strHome . '">'
44 .($GLOBALS['cfg']['MainPageIconic']
45 ? '<img class="icon" src="' . $pmaThemeImage . 'b_home.png" width="16" '
46 .' height="16" alt="' . $strHome . '" />'
47 : $strHome)
48 .'</a>' . "\n";
49 // if we have chosen server
50 if ($server != 0) {
51 // Logout for advanced authentication
52 if ($GLOBALS['cfg']['Server']['auth_type'] != 'config') {
53 echo ($GLOBALS['cfg']['MainPageIconic'] ? '' : ' - ');
54 echo '<a href="index.php?' . $query_url . '&amp;old_usr='
55 .urlencode($PHP_AUTH_USER) . '" target="_parent"'
56 .' title="' . $strLogout . '" >'
57 .($GLOBALS['cfg']['MainPageIconic']
58 ? '<img class="icon" src="' . $pmaThemeImage . 's_loggoff.png" '
59 .' width="16" height="16" alt="' . $strLogout . '" />'
60 : $strLogout)
61 .'</a>' . "\n";
62 } // end if ($GLOBALS['cfg']['Server']['auth_type'] != 'config'
64 $anchor = 'querywindow.php?' . PMA_generate_common_url($db, $table);
66 if ($GLOBALS['cfg']['MainPageIconic']) {
67 $query_frame_link_text =
68 '<img class="icon" src="' . $pmaThemeImage . 'b_selboard.png"'
69 .' width="16" height="16" alt="' . $strQueryFrame . '" />';
70 } else {
71 echo '<br />' . "\n";
72 $query_frame_link_text = $strQueryFrame;
74 echo '<a href="' . $anchor . '&amp;no_js=true"'
75 .' title="' . $strQueryFrame . '"';
76 echo ' onclick="javascript:if (window.parent.open_querywindow()) return false;"';
77 echo '>' . $query_frame_link_text . '</a>' . "\n";
78 } // end if ($server != 0)
80 if ($GLOBALS['cfg']['MainPageIconic']) {
81 echo ' <a href="Documentation.html" target="documentation"'
82 .' title="' . $strPmaDocumentation . '" >'
83 .'<img class="icon" src="' . $pmaThemeImage . 'b_docs.png" width="16" height="16"'
84 .' alt="' . $strPmaDocumentation . '" /></a>' . "\n";
85 echo ' ' . PMA_showMySQLDocu('', '', TRUE) . "\n";
87 echo '</div>' . "\n";
89 /**
90 * Displays the MySQL servers choice form
92 if ($GLOBALS['cfg']['LeftDisplayServers'] && (count($GLOBALS['cfg']['Servers']) > 1 || $server == 0 && count($GLOBALS['cfg']['Servers']) == 1)) {
93 include './libraries/select_server.lib.php';
94 PMA_select_server(true, true);
95 echo '<hr />';
96 } // end if LeftDisplayServers