????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 18.118.171.161 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/phpmyadmin/libraries/ |
Upload File : |
<?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; } ?>