0) { PMA_availableDatabases(); // this function is defined in "common.lib.php3" } else { $num_dbs = 0; } // garvin: For re-usability, moved http-headers // to a seperate file. It can now be included by header.inc.php3, // queryframe.php3, querywindow.php3. include('./libraries/header_http.inc.php3'); /** * Displays the frame */ // Gets the font sizes to use PMA_setFontSizes(); ?> phpMyAdmin target="phpmain" /> 1 && !$cfg['LeftFrameLight']) { echo "\n"; ?> 1) else if ($num_dbs == 1) { echo "\n"; ?> phpMyAdmin
1) { // Light mode -> beginning of the select combo for databases if ($cfg['LeftFrameLight']) { echo '
' . "\n"; echo PMA_generate_common_hidden_inputs(); echo ' ' . "\n"; echo ' ' . "\n"; echo '
' . "\n"; if (!$table_list) { $table_list = '
' . $strSelectADb . '
' . "\n"; } // Displays the current database name and the list of tables it // contains echo "\n" . '
' . "\n\n"; echo $table_list_header; echo $table_list; echo "\n" . '
' . "\n"; } // No light mode -> initialize some js variables for the // expandible/collapsible stuff else { ?> 1) // Case where only one database has to be displayed else if ($num_dbs == 1) { $db = $dblist[0]; $tables = @PMA_mysql_list_tables($db); $num_tables = ($tables) ? @mysql_numrows($tables) : 0; $common_url_query = PMA_generate_common_url($db); if ($num_tables) { $num_tables_disp = $num_tables; } else { $num_tables_disp = '-'; } // Get additional infomation about tables for tooltip if ($cfg['ShowTooltip'] && PMA_MYSQL_INT_VERSION >= 32303 && $num_tables) { $tooltip = array(); $tooltip_name = array(); $result = PMA_mysql_query('SHOW TABLE STATUS FROM ' . PMA_backquote($db)); while ($tmp = PMA_mysql_fetch_array($result)) { $tooltip_name[$tmp['Name']] = (!empty($tmp['Comment']) ? $tmp['Comment'] . ' ' : ''); $tmp['Comment'] = ($cfg['ShowTooltipAliasTB'] ? $tmp['Name'] : $tmp['Comment']); $tooltip[$tmp['Name']] = (!empty($tmp['Comment']) ? $tmp['Comment'] . ' ' : '') . '(' . (isset($tmp['Rows']) ? $tmp['Rows'] : '0') . ' ' . $strRows . ')'; } // end while } // end if // garvin: Get comments from PMA comments table $db_tooltip = ''; if ($cfg['ShowTooltip'] && $cfgRelation['commwork']) { $tmp_db_tooltip = PMA_getComments($db); if (is_array($tmp_db_tooltip)) { $db_tooltip = implode(' ', $tmp_db_tooltip); } } // Displays the database name echo "\n"; ?>
  ()
<?php echo $strBrowse . ': ' . htmlspecialchars($table); ?> 
' . $strNoDatabases . '

'; } // end if ($num_dbs == 0) echo "\n"; ?>