/home/mjc1/public_html/phpMyAdmin/libraries/select_server.lib.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * Code for displaying server selection
 *
 * @package PhpMyAdmin
 */
if (! defined('PHPMYADMIN')) {
    exit;
}

/**
 * Renders the server selection in list or selectbox form, or option tags only
 *
 * @param boolean $not_only_options whether to include form tags or not
 * @param boolean $ommit_fieldset   whether to ommit fieldset tag or not
 *
 * @return string
 */
function PMA_selectServer($not_only_options$ommit_fieldset)
{
    
$retval '';

    
// Show as list?
    
if ($not_only_options) {
        
$list $GLOBALS['cfg']['DisplayServersList'];
        
$not_only_options =! $list;
    } else {
        
$list false;
    }

    if (
$not_only_options) {
        
$retval .= '<form method="post" action="' $GLOBALS['cfg']['DefaultTabServer'] . '" class="disableAjax">';
        
$retval .= PMA_generate_common_hidden_inputs();

        if (! 
$ommit_fieldset) {
            
$retval .= '<fieldset>';
        }
        
$retval .= '<label for="select_server">' __('Current Server') . ':</label> ';

        
$retval .= '<select name="server" id="select_server" class="autosubmit">';
        
$retval .= '<option value="">(' __('Servers') . ') ...</option>' "\n";
    } elseif (
$list) {
        
$retval .= __('Current Server') . ':<br />';
        
$retval .= '<ul id="list_server">';
    }

    foreach (
$GLOBALS['cfg']['Servers'] as $key => $server) {
        if (empty(
$server['host'])) {
            continue;
        }

        if (!empty(
$GLOBALS['server']) && (int) $GLOBALS['server'] === (int) $key) {
            
$selected 1;
        } else {
            
$selected 0;
        }
        if (!empty(
$server['verbose'])) {
            
$label $server['verbose'];
        } else {
            
$label $server['host'];
            if (!empty(
$server['port'])) {
                
$label .= ':' $server['port'];
            }
        }
        if (! empty(
$server['only_db'])) {
            if (! 
is_array($server['only_db'])) {
                
$label .= ' - ' $server['only_db'];
                
// try to avoid displaying a too wide selector
            
} elseif (count($server['only_db']) < 4) {
                
$label .= ' - ' implode(', '$server['only_db']);
            }
        }
        if (!empty(
$server['user']) && $server['auth_type'] == 'config') {
            
$label .= '  (' $server['user'] . ')';
        }

        if (
$list) {
            
$retval .= '<li>';
            if (
$selected) {
                
$retval .= '<strong>' htmlspecialchars($label) . '</strong>';
            } else {

                
$retval .= '<a class="disableAjax item" href="' $GLOBALS['cfg']['DefaultTabServer']
                    . 
PMA_generate_common_url(array('server' => $key))
                    . 
'" >' htmlspecialchars($label) . '</a>';
            }
            
$retval .= '</li>';
        } else {
            
$retval .= '<option value="' $key '" '
                
. ($selected ' selected="selected"' '') . '>'
                
htmlspecialchars($label) . '</option>' "\n";
        }
    } 
// end while

    
if ($not_only_options) {
        
$retval .= '</select>';
        if (! 
$ommit_fieldset) {
            
$retval .= '</fieldset>';
        }
        
$retval .= '</form>';
    } elseif (
$list) {
        
$retval .= '</ul>';
    }

    return 
$retval;
}
?>