sortedLanguages(); /** @var ConfigFile $cf */ $cf = $GLOBALS['ConfigFile']; // message handling SetupIndex::messagesBegin(); // // Check phpMyAdmin version // if (isset($_GET['version_check'])) { SetupIndex::versionCheck(); } // // Perform various security, compatibility and consistency checks // $configChecker = new ServerConfigChecks($GLOBALS['ConfigFile']); $configChecker->performConfigChecks(); // // Https connection warning (check done on the client side) // $text = __( 'You are not using a secure connection; all data (including potentially ' . 'sensitive information, like passwords) is transferred unencrypted!' ); $text .= ' '; $text .= __( 'If your server is also configured to accept HTTPS requests ' . 'follow this link to use a secure connection.' ); $text .= ''; SetupIndex::messagesSet('notice', 'no_https', __('Insecure connection'), $text); echo '
'; echo Url::getHiddenInputs(); echo '
'; echo ''; echo '
'; // Check for done action info and set notice message if present switch ($action_done) { case 'config_saved': /* Use uniqid to display this message every time configuration is saved */ SetupIndex::messagesSet( 'notice', uniqid('config_saved'), __('Configuration saved.'), Sanitize::sanitize( __( 'Configuration saved to file config/config.inc.php in phpMyAdmin ' . 'top level directory, copy it to top level one and delete ' . 'directory config to use it.' ) ) ); break; case 'config_not_saved': /* Use uniqid to display this message every time configuration is saved */ SetupIndex::messagesSet( 'notice', uniqid('config_not_saved'), __('Configuration not saved!'), Sanitize::sanitize( __( 'Please create web server writable folder [em]config[/em] in ' . 'phpMyAdmin top level directory as described in ' . '[doc@setup_script]documentation[/doc]. Otherwise you will be ' . 'only able to download or display it.' ) ) ); break; default: break; } echo '

' , __('Overview') , '

'; // message handling SetupIndex::messagesEnd(); SetupIndex::messagesShowHtml(); echo ''; echo __('Show hidden messages (#MSG_COUNT)'); echo ''; echo '
'; echo __('Servers'); echo ''; // // Display server list // echo FormDisplayTemplate::displayFormTop( 'index.php', 'get', array( 'page' => 'servers', 'mode' => 'add' ) ); echo '
'; if ($cf->getServerCount() > 0) { echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; foreach ($cf->getServers() as $id => $server) { echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; } echo '
#' , __('Name') , '' , __('Authentication type') , 'DSN
' , $id , '' , htmlspecialchars($cf->getServerName($id)) , '' , htmlspecialchars($cf->getValue("Servers/$id/auth_type")) , '' , htmlspecialchars($cf->getServerDSN($id)) , ''; echo ''; echo '' , __('Edit') , ''; echo ' | '; echo ''; echo __('Delete') . ''; echo ''; echo '
'; } else { echo ''; echo ''; echo ''; echo ''; echo '
'; echo '' , __('There are no configured servers') , ''; echo '
'; } echo ''; echo ''; echo ''; echo ''; echo '
'; echo ''; echo '
'; echo '
'; echo FormDisplayTemplate::displayFormBottom(); echo '
'; echo '
' , __('Configuration file') , ''; // // Display config file settings and load/save form // $form_display = new FormDisplay($cf); echo FormDisplayTemplate::displayFormTop('config.php'); echo ''; // Display language list $opts = array( 'doc' => $form_display->getDocLink('DefaultLang'), 'values' => array(), 'values_escaped' => true); foreach ($all_languages as $each_lang) { $opts['values'][$each_lang->getCode()] = $each_lang->getName(); } echo FormDisplayTemplate::displayInput( 'DefaultLang', __('Default language'), 'select', $cf->getValue('DefaultLang'), '', true, $opts ); // Display server list $opts = array( 'doc' => $form_display->getDocLink('ServerDefault'), 'values' => array(), 'values_disabled' => array()); if ($cf->getServerCount() > 0) { $opts['values']['0'] = __('let the user choose'); $opts['values']['-'] = '------------------------------'; if ($cf->getServerCount() == 1) { $opts['values_disabled'][] = '0'; } $opts['values_disabled'][] = '-'; foreach ($cf->getServers() as $id => $server) { $opts['values'][(string)$id] = $cf->getServerName($id) . " [$id]"; } } else { $opts['values']['1'] = __('- none -'); $opts['values_escaped'] = true; } echo FormDisplayTemplate::displayInput( 'ServerDefault', __('Default server'), 'select', $cf->getValue('ServerDefault'), '', true, $opts ); // Display EOL list $opts = array( 'values' => array( 'unix' => 'UNIX / Linux (\n)', 'win' => 'Windows (\r\n)'), 'values_escaped' => true); $eol = Core::ifSetOr($_SESSION['eol'], (PMA_IS_WINDOWS ? 'win' : 'unix')); echo FormDisplayTemplate::displayInput( 'eol', __('End of line'), 'select', $eol, '', true, $opts ); echo ''; echo ''; echo ''; echo '
'; echo ''; echo ''; echo '   '; echo ''; echo '
'; echo FormDisplayTemplate::displayFormBottom(); echo '
'; echo '';