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"'
239 $img_minus = '<img class="icon" id="el%dImg" src="' . $pmaThemeImage . 'b_minus.png"'
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'], null, $tpos, $cfg['MaxTableList']);
250 $table_count = PMA_getTableCount($GLOBALS['db']);
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 if (! empty($table_list)) {
288 // upper table list paginator
289 if (count($table_list) <= $GLOBALS['cfg']['MaxTableList'] && $table_count > $GLOBALS['cfg']['MaxTableList']) {
290 $_url_params = array(
293 'db' => $GLOBALS['db']
295 PMA_listNavigator($table_count, $tpos, $_url_params, 'navigation.php', 'frame_navigation', $GLOBALS['cfg']['MaxTableList']);
297 PMA_displayTableList($table_list, true, '', $GLOBALS['db']);
298 // lower table list paginator
299 if (count($table_list) <= $GLOBALS['cfg']['MaxTableList'] && $table_count > $GLOBALS['cfg']['MaxTableList']) {
300 PMA_listNavigator($table_count, $tpos, $_url_params, 'navigation.php', 'frame_navigation', $GLOBALS['cfg']['MaxTableList']);
303 echo __('No tables found in database.');
306 if ($db != 'information_schema') {
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" alt="' . _pgettext('short form', 'Create table') . '" />'
309 . _pgettext('short form', 'Create table') . '</a></li></ul>';
311 } elseif ($GLOBALS['cfg']['LeftFrameLight']) {
312 /* No need to tell user to select database if we're showing complete list */
314 echo '<p>' . __('Please select a database') . '</p>';
317 echo '<div id="databaseList">' . "\n";
318 $_url_params = array('pos' => $pos);
319 PMA_listNavigator(count($GLOBALS['pma']->databases
), $pos, $_url_params, 'navigation.php', 'frame_navigation', $GLOBALS['cfg']['MaxDbList']);
320 echo '</div>' . "\n";
322 $common_url_query = PMA_generate_common_url();
323 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']);
327 * displays collapsable db list
329 * @uses $_REQUEST['dbgroup']
330 * @uses $GLOBALS['cfg']['DefaultTabDatabase']
334 * @uses htmlspecialchars()
335 * @uses PMA_generate_common_url()
336 * @uses PMA_getTableList()
337 * @uses PMA_displayTableList()
338 * @global integer $element_counter
339 * @global string $img_minus
340 * @global string $img_plus
341 * @global string $href_left
342 * @global string $db_start
343 * @global string $common_url_query
344 * @param array $ext_dblist extended db list
345 * @param integer $offset
346 * @param integer $count
348 function PMA_displayDbList($ext_dblist, $offset, $count) {
349 global $element_counter, $img_minus, $img_plus, $href_left,
350 $db_start, $common_url_query;
352 // get table list, for all databases
353 // doing this in one step takes advantage of a single query with information_schema!
354 $tables_full = PMA_DBI_get_tables_full($GLOBALS['pma']->databases
->getLimitedItems($offset, $count));
357 echo '<ul id="leftdatabaselist">';
358 $close_db_group = false;
359 foreach ($ext_dblist as $group => $db_group) {
360 if (count($GLOBALS['pma']->databases
) > 1) {
361 if ($close_db_group) {
365 $close_db_group = false;
367 if (count($db_group) > 1) {
368 $close_db_group = true;
369 $url_dbgroup = '&dbgroup=' . urlencode($group);
370 $common_url_query = PMA_generate_common_url() . $url_dbgroup;
372 echo '<li class="dbgroup">';
373 if ((! empty($_REQUEST['dbgroup']) && $_REQUEST['dbgroup'] == $group)
374 ||
$db_start == $group ||
strpos($db_start, $group) === 0) {
375 // display + only if this db(group) is not preselected
376 printf($href_left, $element_counter, PMA_generate_common_url());
377 printf($img_minus, $element_counter);
379 printf($href_left, $element_counter, $common_url_query);
380 printf($img_plus, $element_counter);
382 echo '</a> ' . $group . "\n";
383 if ((! empty($_REQUEST['dbgroup']) && $_REQUEST['dbgroup'] == $group)
384 ||
$db_start == $group ||
strpos($db_start, $group) === 0) {
385 echo '<ul id="subel' . $element_counter . '">' . "\n";
387 echo '<ul id="subel' . $element_counter . '"'
388 .' style="display: none">' . "\n";
392 foreach ($db_group as $db) {
393 $common_url_query = PMA_generate_common_url($db['name']) . $url_dbgroup;
396 // Displays the database name
399 if (count($GLOBALS['pma']->databases
) > 1) {
400 // only with more than one db we need collapse ...
401 if ($db_start != $db['name'] ||
$db['num_tables'] < 1) {
402 // display + only if this db is not preselected
403 // or table count is 0
404 printf($href_left, $element_counter, $common_url_query);
405 printf($img_plus, $element_counter);
407 printf($href_left, $element_counter,
408 PMA_generate_common_url() . $url_dbgroup);
409 printf($img_minus, $element_counter);
413 // ... and we need to refresh both frames on db selection
416 id
="<?php echo htmlspecialchars($db['name']); ?>"
417 href
="index.php?<?php echo $common_url_query; ?>"
419 title
="<?php echo htmlspecialchars($db['comment']); ?>"
421 if (! toggle('<?php echo $element_counter; ?>', true))
422 window.parent.goTo('./navigation.php?<?php echo $common_url_query; ?>');
423 window.parent.goTo('./<?php echo $GLOBALS['cfg']['DefaultTabDatabase']
424 . '?' . $common_url_query; ?>', 'main');
427 // Might be unset if CountTables directive is false
428 if (isset($db['num_tables'])) {
429 if ($GLOBALS['text_dir'] === 'rtl') {
430 echo ' <bdo dir="ltr">(' . $db['num_tables'] . ')</bdo> ';
433 echo htmlspecialchars($db['disp_name']);
434 if (isset($db['num_tables'])) {
435 if ($GLOBALS['text_dir'] === 'ltr') {
436 echo ' <bdo dir="ltr">(' . $db['num_tables'] . ')</bdo> ';
443 // with only 1 db available we dont need to refresh navi frame
444 // on db selection, only phpmain
446 <a href
="<?php echo $GLOBALS['cfg']['DefaultTabDatabase']
447 . '?' . $common_url_query; ?>"
448 id
="<?php echo htmlspecialchars($db['name']); ?>"
449 title
="<?php echo htmlspecialchars($db['comment']); ?>">
451 if (isset($db['num_tables'])) {
452 if ($GLOBALS['text_dir'] === 'rtl') {
453 echo ' <bdo dir="ltr">(' . $db['num_tables'] . ')</bdo> ';
456 echo htmlspecialchars($db['disp_name']);
457 if (isset($db['num_tables'])) {
458 if ($GLOBALS['text_dir'] === 'ltr') {
459 echo ' <bdo dir="ltr">(' . $db['num_tables'] . ')</bdo> ';
466 if (($GLOBALS['cfg']['Server']['CountTables'] === false) ||
$db['num_tables']) {
467 if (isset($tables_full[$db['name']])) {
468 $tables = PMA_getTableList($db['name'], $tables_full[$db['name']]);
469 } elseif (isset($tables_full[strtolower($db['name'])])) {
470 // on windows with lower_case_table_names = 1
472 // with SHOW DATABASES or information_schema.SCHEMATA: `Test`
473 // but information_schema.TABLES gives `test`
475 // sf.net/tracker/?func=detail&aid=1436171&group_id=23067&atid=377408
476 $tables = PMA_getTableList($db['name'], $tables_full[strtolower($db['name'])]);
478 $tables = PMA_getTableList($db['name']);
481 (bool) (count($GLOBALS['pma']->databases
) === 1 ||
$db_start == $db['name']);
482 PMA_displayTableList($tables, $child_visible, '', $db['name']);
483 } elseif ($GLOBALS['cfg']['LeftFrameLight']) {
484 // no tables and LeftFrameLight:
485 // display message no tables in selected db
486 echo '<p>' . __('Please select a database') . '</p>' . "\n";
490 } // end foreach group
492 if ($close_db_group) {
496 $close_db_group = false;
503 * display unordered list of tables
504 * calls itself recursively if table in given list
512 * @uses htmlspecialchars()
515 * @uses PMA_displayTableList()
516 * @uses $_REQUEST['tbl_group']
517 * @uses $GLOBALS['common_url_query']
518 * @uses $GLOBALS['table']
519 * @uses $GLOBALS['pmaThemeImage']
520 * @uses $GLOBALS['cfg']['LeftFrameTableSeparator']
521 * @uses $GLOBALS['cfg']['DefaultTabDatabase']
522 * @uses $GLOBALS['cfg']['DefaultTabTable']
523 * @global integer the element counter
524 * @global string html code for '-' image
525 * @global string html code for '+' image
526 * @global string html code for self link
527 * @param array $tables array of tables/tablegroups
528 * @param boolean $visible whether the list is visible or not
529 * @param string $tab_group_full full tab group name
530 * @param string $table_db db of this table
532 function PMA_displayTableList($tables, $visible = false,
533 $tab_group_full = '', $table_db = '')
535 if (! is_array($tables) ||
count($tables) === 0) {
539 global $element_counter, $img_minus, $img_plus, $href_left;
540 $sep = $GLOBALS['cfg']['LeftFrameTableSeparator'];
543 echo '<ul id="subel' . $element_counter . '">';
545 echo '<ul id="subel' . $element_counter . '" style="display: none">';
547 foreach ($tables as $group => $table) {
548 // only allow grouping if the group has more than 1 table
549 if (isset($table['is' . $sep . 'group']) && $table['tab' . $sep . 'count'] > 1) {
550 $common_url_query = $GLOBALS['common_url_query']
551 . '&tbl_group=' . urlencode($tab_group_full . $group);
556 && ((isset($_REQUEST['tbl_group'])
557 && (strpos($_REQUEST['tbl_group'], $group) === 0
558 ||
strpos($_REQUEST['tbl_group'], $sep . $group) !== false))
559 ||
strpos($GLOBALS['table'], $group) === 0)) {
560 printf($href_left, $element_counter,
561 $GLOBALS['common_url_query'] . '&tbl_group=' . $tab_group_full);
562 printf($img_minus, $element_counter);
564 printf($href_left, $element_counter, $common_url_query);
565 printf($img_plus, $element_counter);
569 <a href
="index.php?<?php echo $common_url_query; ?>"
572 if (! toggle('<?php echo $element_counter; ?>', true))
573 window.parent.goTo('./navigation.php?<?php echo $common_url_query; ?>');
574 window.parent.goTo('./<?php echo $GLOBALS['cfg']['DefaultTabDatabase']
575 . '?' . $common_url_query; ?>', 'main');
578 if ($GLOBALS['text_dir'] === 'rtl') {
579 echo ' <bdo dir="ltr">(' . $table['tab' . $sep . 'count'] . ')</bdo> ';
581 echo htmlspecialchars(substr($group, 0, strlen($group) - strlen($sep)));
582 if ($GLOBALS['text_dir'] === 'ltr') {
583 echo ' <bdo dir="ltr">(' . $table['tab' . $sep . 'count'] . ')</bdo> ';
589 unset($table['is' . $sep . 'group']);
590 unset($table['tab' . $sep . 'group']);
591 unset($table['tab' . $sep . 'count']);
594 ((isset($_REQUEST['tbl_group'])
595 && (strpos($_REQUEST['tbl_group'], $group) === 0
596 ||
strpos($_REQUEST['tbl_group'], $sep . $group) !== false))
597 ||
strpos($GLOBALS['table'], $group) === 0)) {
598 PMA_displayTableList($table, true,
599 $tab_group_full . $group, $table_db);
601 PMA_displayTableList($table, false, '', $table_db);
604 } elseif (is_array($table)) {
605 // the table was not grouped because it is the only one with its prefix
606 while (isset($table['is' . $sep . 'group'])) {
607 // get the array with the actual table information
608 foreach ($table as $value) {
609 if(is_array($value)) {
614 $link_title = PMA_getTitleForTarget($GLOBALS['cfg']['LeftDefaultTabTable']);
615 // quick access icon next to each table name
617 echo '<a class="tableicon" title="'
618 . htmlspecialchars($link_title)
619 . ': ' . htmlspecialchars($table['Comment'])
620 .' (' . PMA_formatNumber($table['Rows'], 0) . ' ' . __('Rows') . ')"'
621 .' id="quick_' . htmlspecialchars($table_db . '.' . $table['Name']) . '"'
622 .' href="' . $GLOBALS['cfg']['LeftDefaultTabTable'] . '?'
623 . $GLOBALS['common_url_query']
624 .'&table=' . urlencode($table['Name'])
625 .'&goto=' . $GLOBALS['cfg']['LeftDefaultTabTable']
627 .'<img class="icon"';
628 if ('VIEW' === strtoupper($table['Comment'])) {
629 echo ' src="' . $GLOBALS['pmaThemeImage'] . 's_views.png"';
631 echo ' src="' . $GLOBALS['pmaThemeImage'] . 'b_sbrowse.png"';
633 echo ' id="icon_' . htmlspecialchars($table_db . '.' . $table['Name']) . '"'
634 .' alt="' . htmlspecialchars($link_title) . '" /></a>' . "\n";
636 // link for the table name itself
637 $href = $GLOBALS['cfg']['DefaultTabTable'] . '?'
638 .$GLOBALS['common_url_query'] . '&table='
639 .urlencode($table['Name']) . '&pos=0';
640 echo '<a href="' . $href
641 . '" title="' . htmlspecialchars(PMA_getTitleForTarget($GLOBALS['cfg']['DefaultTabTable']) . ': ' . $table['Comment']
642 .' (' . PMA_formatNumber($table['Rows'], 0) . ' ' . __('Rows')) . ')"'
643 .' id="' . htmlspecialchars($table_db . '.' . $table['Name']) . '">'
644 // preserve spaces in table name
645 . str_replace(' ', ' ', htmlspecialchars($table['disp_name'])) . '</a>';
652 echo '</div>' . "\n";
654 PMA_exitNavigationFrame();