2 /* vim: set expandtab sw=4 ts=4 sts=4: */
4 * the navigation frame - displays server, db and table selection tree
7 * @uses $GLOBALS['pma']->databases
8 * @uses $GLOBALS['server']
10 * @uses $GLOBALS['table']
11 * @uses $GLOBALS['available_languages']
12 * @uses $GLOBALS['lang']
13 * @uses $GLOBALS['text_dir']
14 * @uses $GLOBALS['charset']
15 * @uses $GLOBALS['pmaThemeImage']
16 * @uses $GLOBALS['cfg']['LeftFrameLight']
17 * @uses $GLOBALS['cfg']['ShowTooltip']
18 * @uses $GLOBALS['cfg']['ShowTooltipAliasDB']
19 * @uses $GLOBALS['cfg']['DefaultTabDatabase']
20 * @uses $GLOBALS['cfgRelation']['commwork']) {
21 * @uses PMA_List_Database::getSingleItem()
22 * @uses PMA_List_Database::getHtmlSelectGrouped()
23 * @uses PMA_List_Database::getGroupedDetails()
24 * @uses PMA_generate_common_url()
25 * @uses PMA_generate_common_hidden_inputs()
26 * @uses PMA_getDbComment();
27 * @uses PMA_getTableCount()
28 * @uses PMA_getTableList()
29 * @uses PMA_getRelationsParam()
30 * @uses PMA_outBufferPre()
32 * @uses session_write_close()
35 * @uses htmlspecialchars()
39 * Gets a core script and starts output buffering work
41 require_once './libraries/common.inc.php';
44 * finish and cleanup navigation.php script execution, only to be used in navigation.php
46 * @uses $GLOBALS['controllink'] to close it
47 * @uses $GLOBALS['userlink'] to close it
50 function PMA_exitNavigationFrame()
52 echo '</body></html>';
56 // keep the offset of the db list in session before closing it
57 if (! isset($_SESSION['tmp_user_values']['navi_limit_offset'])) {
58 $_SESSION['tmp_user_values']['navi_limit_offset'] = 0;
60 if (! isset($_SESSION['tmp_user_values']['table_limit_offset']) ||
$_SESSION['tmp_user_values']['table_limit_offset_db'] != $db) {
61 $_SESSION['tmp_user_values']['table_limit_offset'] = 0;
62 $_SESSION['tmp_user_values']['table_limit_offset_db'] = $db;
64 if (isset($_REQUEST['pos'])) {
65 if (isset($_REQUEST['tpos'])) {
66 $_SESSION['tmp_user_values']['table_limit_offset'] = (int) $_REQUEST['pos'];
69 $_SESSION['tmp_user_values']['navi_limit_offset'] = (int) $_REQUEST['pos'];
72 $pos = $_SESSION['tmp_user_values']['navi_limit_offset'];
73 $tpos = $_SESSION['tmp_user_values']['table_limit_offset'];
74 // free the session file, for the other frames to be loaded
75 // but only if debugging is not enabled
76 if (empty($_SESSION['debug'])) {
77 session_write_close();
81 * the output compression library
83 require_once './libraries/ob.lib.php';
88 * selects the database if there is only one on current server
90 if ($GLOBALS['server'] && ! strlen($GLOBALS['db'])) {
91 $GLOBALS['db'] = $GLOBALS['pma']->databases
->getSingleItem();
94 $db_start = $GLOBALS['db'];
97 * the relation settings
99 $cfgRelation = PMA_getRelationsParam();
102 * For re-usability, moved http-headers to a seperate file.
103 * It can now be included by libraries/header.inc.php, querywindow.php.
105 require_once './libraries/header_http.inc.php';
110 // xml declaration moves IE into quirks mode, making much trouble with CSS
111 /* echo '<?xml version="1.0" encoding="' . $GLOBALS['charset'] . '"?>'; */
113 <!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
114 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
115 <html xmlns
="http://www.w3.org/1999/xhtml"
116 xml
:lang
="<?php echo $available_languages[$lang][1]; ?>"
117 lang
="<?php echo $available_languages[$lang][1]; ?>"
118 dir
="<?php echo $GLOBALS['text_dir']; ?>">
121 <link rel
="icon" href
="./favicon.ico" type
="image/x-icon" />
122 <link rel
="shortcut icon" href
="./favicon.ico" type
="image/x-icon" />
123 <title
>phpMyAdmin
</title
>
124 <meta http
-equiv
="Content-Type"
125 content
="text/html; charset=<?php echo $GLOBALS['charset']; ?>" />
126 <base target
="frame_content" />
127 <link rel
="stylesheet" type
="text/css"
128 href
="phpmyadmin.css.php?<?php echo PMA_generate_common_url('', ''); ?>&js_frame=left&nocache=<?php echo $GLOBALS['PMA_Config']->getThemeUniqueValue(); ?>" />
129 <script src
="./js/jquery/jquery-1.4.4.js" type
="text/javascript"></script
>
130 <script type
="text/javascript" src
="js/navigation.js"></script
>
131 <script type
="text/javascript" src
="js/functions.js"></script
>
132 <script type
="text/javascript">
134 var image_minus
= '<?php echo $GLOBALS['pmaThemeImage
']; ?>b_minus.png';
135 var image_plus
= '<?php echo $GLOBALS['pmaThemeImage
']; ?>b_plus.png';
137 // INIT PMA_setFrameSize
139 var onLoadHandler
= window
.onload
;
140 var resizeHandler
= window
.onresize
;
141 window
.document
.onresize
= resizeHandler
;
142 window
.onload
= function() {
143 if (onloadCnt
== 0) {
144 if (typeof(onLoadHandler
) == "function") {
147 if (typeof(PMA_setFrameSize
) != 'undefined' && typeof(PMA_setFrameSize
) == 'function') {
153 window
.onresize
= function() {
154 if (typeof(resizeHandler
) == "function") {
157 if (typeof(PMA_saveFrameSize
) != 'undefined' && typeof(PMA_saveFrameSize
) == 'function') {
165 * remove horizontal scroll bar bug in IE 6 by forcing a vertical scroll bar
169 <style type
="text/css">
179 <body id
="body_leftFrame">
181 require './libraries/navigation_header.inc.php';
182 if (! $GLOBALS['server']) {
183 // no server selected
184 PMA_exitNavigationFrame();
185 } elseif (! count($GLOBALS['pma']->databases
)) {
186 // no database available, so we break here
187 echo '<p>' . __('No databases') . '</p>';
188 PMA_exitNavigationFrame();
189 } elseif ($GLOBALS['cfg']['LeftFrameLight'] && count($GLOBALS['pma']->databases
) > 1) {
190 $list = $cfg['DisplayDatabasesList'];
191 if ($list === 'auto') {
192 if (empty($GLOBALS['db'])) {
199 // more than one database available and LeftFrameLight is true
200 // display db selectbox
202 // Light mode -> beginning of the select combo for databases
203 // Note: When javascript is active, the frameset will be changed from
204 // within navigation.php. With no JS (<noscript>) the whole frameset will
205 // be rebuilt with the new target frame.
208 <div id
="databaseList">
209 <form method
="post" action
="index.php" target
="_parent" id
="left">
211 echo PMA_generate_common_hidden_inputs() . "\n";
212 echo $GLOBALS['pma']->databases
->getHtmlSelectGrouped(true, $_SESSION['tmp_user_values']['navi_limit_offset'], $GLOBALS['cfg']['MaxDbList']) . "\n";
213 echo '<noscript>' . "\n"
214 .'<input type="submit" name="Go" value="' . __('Go') . '" />' . "\n"
215 .'</noscript>' . "\n"
219 echo $GLOBALS['pma']->databases
->getHtmlListGrouped(true, $_SESSION['tmp_user_values']['navi_limit_offset'], $GLOBALS['cfg']['MaxDbList']) . "\n";
221 $_url_params = array('pos' => $pos);
222 PMA_listNavigator(count($GLOBALS['pma']->databases
), $pos, $_url_params, 'navigation.php', 'frame_navigation', $GLOBALS['cfg']['MaxDbList']);
226 <div id
="left_tableList">
228 // Don't display expansible/collapsible database info if:
229 // 1. $GLOBALS['server'] == 0 (no server selected)
230 // This is the case when there are multiple servers and
231 // '$GLOBALS['cfg']['ServerDefault'] = 0' is set. In that case, we want the welcome
232 // screen to appear with no database info displayed.
233 // 2. there is only one database available (ie either only one database exists
234 // or $GLOBALS['cfg']['Servers']['only_db'] is defined and is not an array)
235 // In this case, the database should not be collapsible/expandable
237 $img_plus = '<img class="icon" id="el%dImg" src="' . $pmaThemeImage . 'b_plus.png"'
238 .' width="9" height="9" alt="+" />';
239 $img_minus = '<img class="icon" id="el%dImg" src="' . $pmaThemeImage . 'b_minus.png"'
240 .' width="9" height="9" alt="-" />';
242 $href_left = '<a onclick="if (toggle(\'%d\')) return false;"'
243 .' href="navigation.php?%s" target="_self">';
245 $element_counter = 0;
248 if ($GLOBALS['cfg']['LeftFrameLight'] && strlen($GLOBALS['db'])) {
249 $table_list = PMA_getTableList($GLOBALS['db']);
250 $table_count = count($table_list);
252 // show selected databasename as link to DefaultTabDatabase-page
253 // with table count in ()
254 $common_url_query = PMA_generate_common_url($GLOBALS['db']);
258 if ($GLOBALS['cfg']['ShowTooltip']
259 && $GLOBALS['cfgRelation']['commwork']) {
260 $_db_tooltip = PMA_getDbComment($GLOBALS['db']);
262 $db_tooltip = $_db_tooltip;
266 $disp_name = $GLOBALS['db'];
267 if ($db_tooltip && $GLOBALS['cfg']['ShowTooltipAliasDB']) {
268 $disp_name = $db_tooltip;
269 $disp_name_cut = $db_tooltip;
270 $db_tooltip = $GLOBALS['db'];
273 if ($table_count >= $GLOBALS['cfg']['LeftDisplayTableFilterMinimum']) {
275 <span id
="NavFilter">
276 <span id
="clear_fast_filter" title
="<?php echo __('Clear'); ?>">X
</span
>
277 <input type
="text" name
="fast_filter" id
="fast_filter" title
="<?php echo __('Filter'); ?>" value
="<?php echo __('filter tables by name'); ?>" />
283 * This helps reducing the navi panel size; in the right panel,
284 * user can find a navigator to page thru all tables.
287 $table_list = array_slice($table_list, $tpos, $cfg['MaxTableList']);
288 if (! empty($table_list)) {
289 // upper table list paginator
290 if (count($table_list) <= $GLOBALS['cfg']['MaxTableList'] && $table_count > $GLOBALS['cfg']['MaxTableList']) {
291 $_url_params = array(
294 'db' => $GLOBALS['db']
296 PMA_listNavigator($table_count, $tpos, $_url_params, 'navigation.php', 'frame_navigation', $GLOBALS['cfg']['MaxTableList']);
298 PMA_displayTableList($table_list, true, '', $GLOBALS['db']);
299 // lower table list paginator
300 if (count($table_list) <= $GLOBALS['cfg']['MaxTableList'] && $table_count > $GLOBALS['cfg']['MaxTableList']) {
301 PMA_listNavigator($table_count, $tpos, $_url_params, 'navigation.php', 'frame_navigation', $GLOBALS['cfg']['MaxTableList']);
304 echo __('No tables found in database.');
307 echo '<ul id="newtable"><li><a target="frame_content" href="tbl_create.php' . PMA_generate_common_url(array('db' => $GLOBALS['db'])) . '">'
308 .'<img class="icon" src="' . $GLOBALS['pmaThemeImage'] . 'b_snewtbl.png" id="icon_newtable" width="10" height="10" alt="' . _pgettext('short form', 'Create table') . '" />'
309 . _pgettext('short form', 'Create table') . '</a></li></ul>';
310 } elseif ($GLOBALS['cfg']['LeftFrameLight']) {
311 /* No need to tell user to select database if we're showing complete list */
313 echo '<p>' . __('Please select a database') . '</p>';
316 echo '<div id="databaseList">' . "\n";
317 $_url_params = array('pos' => $pos);
318 PMA_listNavigator(count($GLOBALS['pma']->databases
), $pos, $_url_params, 'navigation.php', 'frame_navigation', $GLOBALS['cfg']['MaxDbList']);
319 echo '</div>' . "\n";
321 $common_url_query = PMA_generate_common_url();
322 PMA_displayDbList($GLOBALS['pma']->databases
->getGroupedDetails($_SESSION['tmp_user_values']['navi_limit_offset'],$GLOBALS['cfg']['MaxDbList']), $_SESSION['tmp_user_values']['navi_limit_offset'],$GLOBALS['cfg']['MaxDbList']);
326 * displays collapsable db list
328 * @uses $_REQUEST['dbgroup']
329 * @uses $GLOBALS['cfg']['DefaultTabDatabase']
333 * @uses htmlspecialchars()
334 * @uses PMA_generate_common_url()
335 * @uses PMA_getTableList()
336 * @uses PMA_displayTableList()
337 * @global integer $element_counter
338 * @global string $img_minus
339 * @global string $img_plus
340 * @global string $href_left
341 * @global string $db_start
342 * @global string $common_url_query
343 * @param array $ext_dblist extended db list
344 * @param integer $offset
345 * @param integer $count
347 function PMA_displayDbList($ext_dblist, $offset, $count) {
348 global $element_counter, $img_minus, $img_plus, $href_left,
349 $db_start, $common_url_query;
351 // get table list, for all databases
352 // doing this in one step takes advantage of a single query with information_schema!
353 $tables_full = PMA_DBI_get_tables_full($GLOBALS['pma']->databases
->getLimitedItems($offset, $count));
356 echo '<ul id="leftdatabaselist">';
357 $close_db_group = false;
358 foreach ($ext_dblist as $group => $db_group) {
359 if (count($GLOBALS['pma']->databases
) > 1) {
360 if ($close_db_group) {
364 $close_db_group = false;
366 if (count($db_group) > 1) {
367 $close_db_group = true;
368 $url_dbgroup = '&dbgroup=' . urlencode($group);
369 $common_url_query = PMA_generate_common_url() . $url_dbgroup;
371 echo '<li class="dbgroup">';
372 if ((! empty($_REQUEST['dbgroup']) && $_REQUEST['dbgroup'] == $group)
373 ||
$db_start == $group ||
strpos($db_start, $group) === 0) {
374 // display + only if this db(group) is not preselected
375 printf($href_left, $element_counter, PMA_generate_common_url());
376 printf($img_minus, $element_counter);
378 printf($href_left, $element_counter, $common_url_query);
379 printf($img_plus, $element_counter);
381 echo '</a> ' . $group . "\n";
382 if ((! empty($_REQUEST['dbgroup']) && $_REQUEST['dbgroup'] == $group)
383 ||
$db_start == $group ||
strpos($db_start, $group) === 0) {
384 echo '<ul id="subel' . $element_counter . '">' . "\n";
386 echo '<ul id="subel' . $element_counter . '"'
387 .' style="display: none">' . "\n";
391 foreach ($db_group as $db) {
392 $common_url_query = PMA_generate_common_url($db['name']) . $url_dbgroup;
395 // Displays the database name
398 if (count($GLOBALS['pma']->databases
) > 1) {
399 // only with more than one db we need collapse ...
400 if ($db_start != $db['name'] ||
$db['num_tables'] < 1) {
401 // display + only if this db is not preselected
402 // or table count is 0
403 printf($href_left, $element_counter, $common_url_query);
404 printf($img_plus, $element_counter);
406 printf($href_left, $element_counter,
407 PMA_generate_common_url() . $url_dbgroup);
408 printf($img_minus, $element_counter);
412 // ... and we need to refresh both frames on db selection
415 id
="<?php echo htmlspecialchars($db['name']); ?>"
416 href
="index.php?<?php echo $common_url_query; ?>"
418 title
="<?php echo htmlspecialchars($db['comment']); ?>"
420 if (! toggle('<?php echo $element_counter; ?>', true))
421 window.parent.goTo('./navigation.php?<?php echo $common_url_query; ?>');
422 window.parent.goTo('./<?php echo $GLOBALS['cfg']['DefaultTabDatabase']
423 . '?' . $common_url_query; ?>', 'main');
426 if ($GLOBALS['text_dir'] === 'rtl') {
427 echo ' <bdo dir="ltr">(' . $db['num_tables'] . ')</bdo> ';
429 echo htmlspecialchars($db['disp_name']);
430 if ($GLOBALS['text_dir'] === 'ltr') {
431 echo ' <bdo dir="ltr">(' . $db['num_tables'] . ')</bdo> ';
437 // with only 1 db available we dont need to refresh left frame
438 // on db selection, only phpmain
440 <a href
="<?php echo $GLOBALS['cfg']['DefaultTabDatabase']
441 . '?' . $common_url_query; ?>"
442 id
="<?php echo htmlspecialchars($db['name']); ?>"
443 title
="<?php echo htmlspecialchars($db['comment']); ?>">
445 if ($GLOBALS['text_dir'] === 'rtl') {
446 echo ' <bdo dir="ltr">(' . $db['num_tables'] . ')</bdo> ';
448 echo htmlspecialchars($db['disp_name']);
449 if ($GLOBALS['text_dir'] === 'ltr') {
450 echo ' <bdo dir="ltr">(' . $db['num_tables'] . ')</bdo> ';
456 if ($db['num_tables']) {
457 if (isset($tables_full[$db['name']])) {
458 $tables = PMA_getTableList($db['name'], $tables_full[$db['name']]);
459 } elseif (isset($tables_full[strtolower($db['name'])])) {
460 // on windows with lower_case_table_names = 1
462 // with SHOW DATABASES or information_schema.SCHEMATA: `Test`
463 // but information_schema.TABLES gives `test`
465 // sf.net/tracker/?func=detail&aid=1436171&group_id=23067&atid=377408
466 $tables = PMA_getTableList($db['name'], $tables_full[strtolower($db['name'])]);
468 $tables = PMA_getTableList($db['name']);
471 (bool) (count($GLOBALS['pma']->databases
) === 1 ||
$db_start == $db['name']);
472 PMA_displayTableList($tables, $child_visible, '', $db['name']);
473 } elseif ($GLOBALS['cfg']['LeftFrameLight']) {
474 // no tables and LeftFrameLight:
475 // display message no tables in selected db
476 echo '<p>' . __('Please select a database') . '</p>' . "\n";
480 } // end foreach group
482 if ($close_db_group) {
486 $close_db_group = false;
493 * display unordered list of tables
494 * calls itself recursively if table in given list
502 * @uses htmlspecialchars()
505 * @uses PMA_displayTableList()
506 * @uses $_REQUEST['tbl_group']
507 * @uses $GLOBALS['common_url_query']
508 * @uses $GLOBALS['table']
509 * @uses $GLOBALS['pmaThemeImage']
510 * @uses $GLOBALS['cfg']['LeftFrameTableSeparator']
511 * @uses $GLOBALS['cfg']['DefaultTabDatabase']
512 * @uses $GLOBALS['cfg']['DefaultTabTable']
513 * @global integer the element counter
514 * @global string html code for '-' image
515 * @global string html code for '+' image
516 * @global string html code for self link
517 * @param array $tables array of tables/tablegroups
518 * @param boolean $visible whether the list is visible or not
519 * @param string $tab_group_full full tab group name
520 * @param string $table_db db of this table
522 function PMA_displayTableList($tables, $visible = false,
523 $tab_group_full = '', $table_db = '')
525 if (! is_array($tables) ||
count($tables) === 0) {
529 global $element_counter, $img_minus, $img_plus, $href_left;
530 $sep = $GLOBALS['cfg']['LeftFrameTableSeparator'];
533 echo '<ul id="subel' . $element_counter . '">';
535 echo '<ul id="subel' . $element_counter . '" style="display: none">';
537 foreach ($tables as $group => $table) {
538 // only allow grouping if the group has more than 1 table
539 if (isset($table['is' . $sep . 'group']) && $table['tab' . $sep . 'count'] > 1) {
540 $common_url_query = $GLOBALS['common_url_query']
541 . '&tbl_group=' . urlencode($tab_group_full . $group);
546 && ((isset($_REQUEST['tbl_group'])
547 && (strpos($_REQUEST['tbl_group'], $group) === 0
548 ||
strpos($_REQUEST['tbl_group'], $sep . $group) !== false))
549 ||
strpos($GLOBALS['table'], $group) === 0)) {
550 printf($href_left, $element_counter,
551 $GLOBALS['common_url_query'] . '&tbl_group=' . $tab_group_full);
552 printf($img_minus, $element_counter);
554 printf($href_left, $element_counter, $common_url_query);
555 printf($img_plus, $element_counter);
559 <a href
="index.php?<?php echo $common_url_query; ?>"
562 if (! toggle('<?php echo $element_counter; ?>', true))
563 window.parent.goTo('./navigation.php?<?php echo $common_url_query; ?>');
564 window.parent.goTo('./<?php echo $GLOBALS['cfg']['DefaultTabDatabase']
565 . '?' . $common_url_query; ?>', 'main');
568 if ($GLOBALS['text_dir'] === 'rtl') {
569 echo ' <bdo dir="ltr">(' . $table['tab' . $sep . 'count'] . ')</bdo> ';
571 echo htmlspecialchars(substr($group, 0, strlen($group) - strlen($sep)));
572 if ($GLOBALS['text_dir'] === 'ltr') {
573 echo ' <bdo dir="ltr">(' . $table['tab' . $sep . 'count'] . ')</bdo> ';
579 unset($table['is' . $sep . 'group']);
580 unset($table['tab' . $sep . 'group']);
581 unset($table['tab' . $sep . 'count']);
584 ((isset($_REQUEST['tbl_group'])
585 && (strpos($_REQUEST['tbl_group'], $group) === 0
586 ||
strpos($_REQUEST['tbl_group'], $sep . $group) !== false))
587 ||
strpos($GLOBALS['table'], $group) === 0)) {
588 PMA_displayTableList($table, true,
589 $tab_group_full . $group, $table_db);
591 PMA_displayTableList($table, false, '', $table_db);
594 } elseif (is_array($table)) {
595 // the table was not grouped because it is the only one with its prefix
596 while (isset($table['is' . $sep . 'group'])) {
597 // get the array with the actual table information
598 foreach ($table as $value) {
599 if(is_array($value)) {
604 $link_title = PMA_getTitleForTarget($GLOBALS['cfg']['LeftDefaultTabTable']);
605 // quick access icon next to each table name
607 echo '<a class="tableicon" title="'
608 . htmlspecialchars($link_title)
609 . ': ' . htmlspecialchars($table['Comment'])
610 .' (' . PMA_formatNumber($table['Rows'], 0) . ' ' . __('Rows') . ')"'
611 .' id="quick_' . htmlspecialchars($table_db . '.' . $table['Name']) . '"'
612 .' href="' . $GLOBALS['cfg']['LeftDefaultTabTable'] . '?'
613 . $GLOBALS['common_url_query']
614 .'&table=' . urlencode($table['Name'])
615 .'&goto=' . $GLOBALS['cfg']['LeftDefaultTabTable']
617 .'<img class="icon"';
618 if ('VIEW' === strtoupper($table['Comment'])) {
619 echo ' src="' . $GLOBALS['pmaThemeImage'] . 's_views.png"';
621 echo ' src="' . $GLOBALS['pmaThemeImage'] . 'b_sbrowse.png"';
623 echo ' id="icon_' . htmlspecialchars($table_db . '.' . $table['Name']) . '"'
624 .' width="10" height="10" alt="' . htmlspecialchars($link_title) . '" /></a>' . "\n";
626 // link for the table name itself
627 $href = $GLOBALS['cfg']['DefaultTabTable'] . '?'
628 .$GLOBALS['common_url_query'] . '&table='
629 .urlencode($table['Name']) . '&pos=0';
630 echo '<a href="' . $href
631 . '" title="' . htmlspecialchars(PMA_getTitleForTarget($GLOBALS['cfg']['DefaultTabTable']) . ': ' . $table['Comment']
632 .' (' . PMA_formatNumber($table['Rows'], 0) . ' ' . __('Rows')) . ')"'
633 .' id="' . htmlspecialchars($table_db . '.' . $table['Name']) . '">'
634 // preserve spaces in table name
635 . str_replace(' ', ' ', htmlspecialchars($table['disp_name'])) . '</a>';
642 echo '</div>' . "\n";
644 PMA_exitNavigationFrame();