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 // Might be unset if CountTables directive is false
427 if (isset($db['num_tables'])) {
428 if ($GLOBALS['text_dir'] === 'rtl') {
429 echo ' <bdo dir="ltr">(' . $db['num_tables'] . ')</bdo> ';
432 echo htmlspecialchars($db['disp_name']);
433 if (isset($db['num_tables'])) {
434 if ($GLOBALS['text_dir'] === 'ltr') {
435 echo ' <bdo dir="ltr">(' . $db['num_tables'] . ')</bdo> ';
442 // with only 1 db available we dont need to refresh navi frame
443 // on db selection, only phpmain
445 <a href
="<?php echo $GLOBALS['cfg']['DefaultTabDatabase']
446 . '?' . $common_url_query; ?>"
447 id
="<?php echo htmlspecialchars($db['name']); ?>"
448 title
="<?php echo htmlspecialchars($db['comment']); ?>">
450 if (isset($db['num_tables'])) {
451 if ($GLOBALS['text_dir'] === 'rtl') {
452 echo ' <bdo dir="ltr">(' . $db['num_tables'] . ')</bdo> ';
455 echo htmlspecialchars($db['disp_name']);
456 if (isset($db['num_tables'])) {
457 if ($GLOBALS['text_dir'] === 'ltr') {
458 echo ' <bdo dir="ltr">(' . $db['num_tables'] . ')</bdo> ';
465 if (($GLOBALS['cfg']['Server']['CountTables'] === false) ||
$db['num_tables']) {
466 if (isset($tables_full[$db['name']])) {
467 $tables = PMA_getTableList($db['name'], $tables_full[$db['name']]);
468 } elseif (isset($tables_full[strtolower($db['name'])])) {
469 // on windows with lower_case_table_names = 1
471 // with SHOW DATABASES or information_schema.SCHEMATA: `Test`
472 // but information_schema.TABLES gives `test`
474 // sf.net/tracker/?func=detail&aid=1436171&group_id=23067&atid=377408
475 $tables = PMA_getTableList($db['name'], $tables_full[strtolower($db['name'])]);
477 $tables = PMA_getTableList($db['name']);
480 (bool) (count($GLOBALS['pma']->databases
) === 1 ||
$db_start == $db['name']);
481 PMA_displayTableList($tables, $child_visible, '', $db['name']);
482 } elseif ($GLOBALS['cfg']['LeftFrameLight']) {
483 // no tables and LeftFrameLight:
484 // display message no tables in selected db
485 echo '<p>' . __('Please select a database') . '</p>' . "\n";
489 } // end foreach group
491 if ($close_db_group) {
495 $close_db_group = false;
502 * display unordered list of tables
503 * calls itself recursively if table in given list
511 * @uses htmlspecialchars()
514 * @uses PMA_displayTableList()
515 * @uses $_REQUEST['tbl_group']
516 * @uses $GLOBALS['common_url_query']
517 * @uses $GLOBALS['table']
518 * @uses $GLOBALS['pmaThemeImage']
519 * @uses $GLOBALS['cfg']['LeftFrameTableSeparator']
520 * @uses $GLOBALS['cfg']['DefaultTabDatabase']
521 * @uses $GLOBALS['cfg']['DefaultTabTable']
522 * @global integer the element counter
523 * @global string html code for '-' image
524 * @global string html code for '+' image
525 * @global string html code for self link
526 * @param array $tables array of tables/tablegroups
527 * @param boolean $visible whether the list is visible or not
528 * @param string $tab_group_full full tab group name
529 * @param string $table_db db of this table
531 function PMA_displayTableList($tables, $visible = false,
532 $tab_group_full = '', $table_db = '')
534 if (! is_array($tables) ||
count($tables) === 0) {
538 global $element_counter, $img_minus, $img_plus, $href_left;
539 $sep = $GLOBALS['cfg']['LeftFrameTableSeparator'];
542 echo '<ul id="subel' . $element_counter . '">';
544 echo '<ul id="subel' . $element_counter . '" style="display: none">';
546 foreach ($tables as $group => $table) {
547 // only allow grouping if the group has more than 1 table
548 if (isset($table['is' . $sep . 'group']) && $table['tab' . $sep . 'count'] > 1) {
549 $common_url_query = $GLOBALS['common_url_query']
550 . '&tbl_group=' . urlencode($tab_group_full . $group);
555 && ((isset($_REQUEST['tbl_group'])
556 && (strpos($_REQUEST['tbl_group'], $group) === 0
557 ||
strpos($_REQUEST['tbl_group'], $sep . $group) !== false))
558 ||
strpos($GLOBALS['table'], $group) === 0)) {
559 printf($href_left, $element_counter,
560 $GLOBALS['common_url_query'] . '&tbl_group=' . $tab_group_full);
561 printf($img_minus, $element_counter);
563 printf($href_left, $element_counter, $common_url_query);
564 printf($img_plus, $element_counter);
568 <a href
="index.php?<?php echo $common_url_query; ?>"
571 if (! toggle('<?php echo $element_counter; ?>', true))
572 window.parent.goTo('./navigation.php?<?php echo $common_url_query; ?>');
573 window.parent.goTo('./<?php echo $GLOBALS['cfg']['DefaultTabDatabase']
574 . '?' . $common_url_query; ?>', 'main');
577 if ($GLOBALS['text_dir'] === 'rtl') {
578 echo ' <bdo dir="ltr">(' . $table['tab' . $sep . 'count'] . ')</bdo> ';
580 echo htmlspecialchars(substr($group, 0, strlen($group) - strlen($sep)));
581 if ($GLOBALS['text_dir'] === 'ltr') {
582 echo ' <bdo dir="ltr">(' . $table['tab' . $sep . 'count'] . ')</bdo> ';
588 unset($table['is' . $sep . 'group']);
589 unset($table['tab' . $sep . 'group']);
590 unset($table['tab' . $sep . 'count']);
593 ((isset($_REQUEST['tbl_group'])
594 && (strpos($_REQUEST['tbl_group'], $group) === 0
595 ||
strpos($_REQUEST['tbl_group'], $sep . $group) !== false))
596 ||
strpos($GLOBALS['table'], $group) === 0)) {
597 PMA_displayTableList($table, true,
598 $tab_group_full . $group, $table_db);
600 PMA_displayTableList($table, false, '', $table_db);
603 } elseif (is_array($table)) {
604 // the table was not grouped because it is the only one with its prefix
605 while (isset($table['is' . $sep . 'group'])) {
606 // get the array with the actual table information
607 foreach ($table as $value) {
608 if(is_array($value)) {
613 $link_title = PMA_getTitleForTarget($GLOBALS['cfg']['LeftDefaultTabTable']);
614 // quick access icon next to each table name
616 echo '<a class="tableicon" title="'
617 . htmlspecialchars($link_title)
618 . ': ' . htmlspecialchars($table['Comment'])
619 .' (' . PMA_formatNumber($table['Rows'], 0) . ' ' . __('Rows') . ')"'
620 .' id="quick_' . htmlspecialchars($table_db . '.' . $table['Name']) . '"'
621 .' href="' . $GLOBALS['cfg']['LeftDefaultTabTable'] . '?'
622 . $GLOBALS['common_url_query']
623 .'&table=' . urlencode($table['Name'])
624 .'&goto=' . $GLOBALS['cfg']['LeftDefaultTabTable']
626 .'<img class="icon"';
627 if ('VIEW' === strtoupper($table['Comment'])) {
628 echo ' src="' . $GLOBALS['pmaThemeImage'] . 's_views.png"';
630 echo ' src="' . $GLOBALS['pmaThemeImage'] . 'b_sbrowse.png"';
632 echo ' id="icon_' . htmlspecialchars($table_db . '.' . $table['Name']) . '"'
633 .' width="10" height="10" alt="' . htmlspecialchars($link_title) . '" /></a>' . "\n";
635 // link for the table name itself
636 $href = $GLOBALS['cfg']['DefaultTabTable'] . '?'
637 .$GLOBALS['common_url_query'] . '&table='
638 .urlencode($table['Name']) . '&pos=0';
639 echo '<a href="' . $href
640 . '" title="' . htmlspecialchars(PMA_getTitleForTarget($GLOBALS['cfg']['DefaultTabTable']) . ': ' . $table['Comment']
641 .' (' . PMA_formatNumber($table['Rows'], 0) . ' ' . __('Rows')) . ')"'
642 .' id="' . htmlspecialchars($table_db . '.' . $table['Name']) . '">'
643 // preserve spaces in table name
644 . str_replace(' ', ' ', htmlspecialchars($table['disp_name'])) . '</a>';
651 echo '</div>' . "\n";
653 PMA_exitNavigationFrame();