2 /* vim: set expandtab sw=4 ts=4 sts=4: */
6 * updates javascript variables in index.php for coorect working with querywindow
7 * and navigation frame refreshing
9 * send buffered data if buffered
11 * WARNING: This script has to be included at the very end of your code because
12 * it will stop the script execution!
14 * always use $GLOBALS, as this script is also included by functions
16 * @uses $_REQUEST['no_history']
17 * @uses $GLOBALS['lang']
18 * @uses $GLOBALS['collation_connection']
19 * @uses $GLOBALS['server']
20 * @uses $GLOBALS['db']
21 * @uses $GLOBALS['table']
22 * @uses $GLOBALS['error_message']
23 * @uses $GLOBALS['reload']
24 * @uses $GLOBALS['sql_query']
25 * @uses $GLOBALS['focus_querywindow']
26 * @uses $GLOBALS['checked_special']
27 * @uses $GLOBALS['pmaThemeImage']
28 * @uses $GLOBALS['controllink'] to close it
29 * @uses $GLOBALS['userlink'] to close it
30 * @uses $cfg['Server']['user']
31 * @uses $cfg['NavigationBarIconic']
32 * @uses $cfg['DBG']['enable']
33 * @uses $cfg['DBG']['profile']['enable']
34 * @uses $GLOBALS['strOpenNewWindow']
35 * @uses $cfg['MaxCharactersInDisplayedSQL']
37 * @uses PMA_setHistory()
39 * @uses PMA_escapeJsString()
41 * @uses PMA_generate_common_url()
42 * @uses PMA_DBI_close()
47 if (! defined('PHPMYADMIN')) {
52 * for PMA_setHistory()
54 require_once './libraries/relation.lib.php';
56 if (! PMA_isValid($_REQUEST['no_history']) && empty($GLOBALS['error_message'])
57 && ! empty($GLOBALS['sql_query'])) {
58 PMA_setHistory(PMA_ifSetOr($GLOBALS['db'], ''),
59 PMA_ifSetOr($GLOBALS['table'], ''),
60 $GLOBALS['cfg']['Server']['user'],
61 $GLOBALS['sql_query']);
65 <script type
="text/javascript">
68 if (empty($GLOBALS['error_message'])) {
70 // updates current settings
71 if (window
.parent
.setAll
) {
72 window
.parent
.setAll('<?php
73 echo PMA_escapeJsString($GLOBALS['lang
']) . "', '";
74 echo PMA_escapeJsString($GLOBALS['collation_connection
']) . "', '";
75 echo PMA_escapeJsString($GLOBALS['server
']) . "', '";
76 echo PMA_escapeJsString(PMA_ifSetOr($GLOBALS['db
'], '')) . "', '";
77 echo PMA_escapeJsString(PMA_ifSetOr($GLOBALS['table
'], '')) . "', '";
78 echo PMA_escapeJsString($_SESSION[' PMA_token
']);?>');
81 if (! empty($GLOBALS['reload'])) {
83 // refresh navigation frame content
84 if (window
.parent
.refreshNavigation
) {
85 window
.parent
.refreshNavigation();
90 // set current db, table and sql query in the querywindow
91 if (window
.parent
.reload_querywindow
) {
92 window
.parent
.reload_querywindow(
93 '<?php echo PMA_escapeJsString(PMA_ifSetOr($GLOBALS['db
'], '')) ?>',
94 '<?php echo PMA_escapeJsString(PMA_ifSetOr($GLOBALS['table
'], '')) ?>',
95 '<?php echo strlen($GLOBALS['sql_query
']) > $GLOBALS['cfg
']['MaxCharactersInDisplayedSQL
'] ? PMA_escapeJsString($GLOBALS['sql_query
']) : ''; ?>');
100 if (! empty($GLOBALS['focus_querywindow'])) {
102 // set focus to the querywindow
103 if (parent
.querywindow
&& !parent
.querywindow
.closed
&& parent
.querywindow
.location
) {
110 if (window
.parent
.frame_content
) {
111 // reset content frame name, as querywindow needs to set a unique name
112 // before submitting form data, and navigation frame needs the original name
113 if (typeof(window
.parent
.frame_content
.name
) != 'undefined'
114 && window
.parent
.frame_content
.name
!= 'frame_content') {
115 window
.parent
.frame_content
.name
= 'frame_content';
117 if (typeof(window
.parent
.frame_content
.id
) != 'undefined'
118 && window
.parent
.frame_content
.id
!= 'frame_content') {
119 window
.parent
.frame_content
.id
= 'frame_content';
121 //window.parent.frame_content.setAttribute('name', 'frame_content');
122 //window.parent.frame_content.setAttribute('id', 'frame_content');
128 // Link to itself to replicate windows including frameset
129 if (!isset($GLOBALS['checked_special'])) {
130 $GLOBALS['checked_special'] = false;
133 if (PMA_getenv('SCRIPT_NAME') && empty($_POST) && !$GLOBALS['checked_special']) {
134 echo '<div id="selflink" class="print_ignore">' . "\n";
135 $url_params['target'] = basename(PMA_getenv('SCRIPT_NAME'));
136 echo '<a href="index.php' . PMA_generate_common_url($url_params) . '"'
137 . ' title="' . $GLOBALS['strOpenNewWindow'] . '" target="_blank">';
139 echo '<a href="index.php?target=' . basename(PMA_getenv('SCRIPT_NAME'));
140 $url = PMA_generate_common_url($GLOBALS['db'], $GLOBALS['table']);
144 echo '" target="_blank">';
146 if ($GLOBALS['cfg']['NavigationBarIconic']) {
147 echo '<img class="icon" src="'. $GLOBALS['pmaThemeImage'] . 'window-new.png"'
148 . ' alt="' . $GLOBALS['strOpenNewWindow'] . '" />';
150 if ($GLOBALS['cfg']['NavigationBarIconic'] !== true) {
151 echo $GLOBALS['strOpenNewWindow'];
154 echo '</div>' . "\n";
158 * Close database connections
160 if (! empty($GLOBALS['controllink'])) {
161 @PMA_DBI_close
($GLOBALS['controllink']);
163 if (! empty($GLOBALS['userlink'])) {
164 @PMA_DBI_close
($GLOBALS['userlink']);
167 // Include possible custom footers
168 if (file_exists('./config.footer.inc.php')) {
169 require './config.footer.inc.php';
174 * Generates profiling data if requested
177 // profiling deactivated due to licensing issues
178 if (! empty($GLOBALS['cfg']['DBG']['enable'])
179 && ! empty($GLOBALS['cfg']['DBG']['profile']['enable'])) {
180 //run the basic setup code first
181 require_once './libraries/dbg/setup.php';
182 //if the setup ran fine, then do the profiling
184 if (! empty($GLOBALS['DBG'])) {
185 require_once './libraries/dbg/profiling.php';
186 dbg_dump_profiling_results();
196 * Stops the script execution