217 lines
9.8 KiB
PHP
Executable File
217 lines
9.8 KiB
PHP
Executable File
<?php
|
|
/* $Id$ */
|
|
// vim: expandtab sw=4 ts=4 sts=4:
|
|
|
|
/**
|
|
* Gets a core script and starts output buffering work
|
|
*/
|
|
if (!defined('PMA_COMMON_LIB_INCLUDED')) {
|
|
include('./libraries/common.lib.php3');
|
|
}
|
|
if (!defined('PMA_OB_LIB_INCLUDED')) {
|
|
include('./libraries/ob.lib.php3');
|
|
}
|
|
if ($GLOBALS['cfg']['OBGzip']) {
|
|
$GLOBALS['ob_mode'] = PMA_outBufferModeGet();
|
|
if ($GLOBALS['ob_mode']) {
|
|
PMA_outBufferPre($GLOBALS['ob_mode']);
|
|
}
|
|
}
|
|
|
|
// garvin: For re-usability, moved http-headers and stylesheets
|
|
// to a seperate file. It can now be included by header.inc.php3,
|
|
// queryframe.php3, querywindow.php3.
|
|
|
|
include('./libraries/header_http.inc.php3');
|
|
include('./libraries/header_meta_style.inc.php3');
|
|
|
|
$title = '';
|
|
if (isset($GLOBALS['db'])) {
|
|
$title .= str_replace('\'', '\\\'', $GLOBALS['db']);
|
|
}
|
|
if (isset($GLOBALS['table'])) {
|
|
$title .= (empty($title) ? '' : '.') . str_replace('\'', '\\\'', $GLOBALS['table']);
|
|
}
|
|
if (!empty($GLOBALS['cfg']['Server']) && isset($GLOBALS['cfg']['Server']['host'])) {
|
|
$title .= (empty($title) ? 'phpMyAdmin ' : ' ')
|
|
. sprintf($GLOBALS['strRunning'], (empty($GLOBALS['cfg']['Server']['verbose']) ? str_replace('\'', '\\\'', $GLOBALS['cfg']['Server']['host']) : str_replace('\'', '\\\'', $GLOBALS['cfg']['Server']['verbose'])));
|
|
}
|
|
$title .= (empty($title) ? '' : ' - ') . 'phpMyAdmin ' . PMA_VERSION;
|
|
?>
|
|
<script type="text/javascript" language="javascript">
|
|
<!--
|
|
// Updates the title of the frameset if possible (ns4 does not allow this)
|
|
if (typeof(parent.document) != 'undefined' && typeof(parent.document) != 'unknown'
|
|
&& typeof(parent.document.title) == 'string') {
|
|
parent.document.title = '<?php echo $title; ?>';
|
|
}
|
|
<?php
|
|
// Add some javascript instructions if required
|
|
if (isset($js_to_run) && $js_to_run == 'functions.js') {
|
|
echo "\n";
|
|
?>
|
|
// js form validation stuff
|
|
var errorMsg0 = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strFormEmpty']); ?>';
|
|
var errorMsg1 = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strNotNumber']); ?>';
|
|
var errorMsg2 = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strNotValidNumber']); ?>';
|
|
var noDropDbMsg = '<?php echo((!$GLOBALS['cfg']['AllowUserDropDatabase']) ? str_replace('\'', '\\\'', $GLOBALS['strNoDropDatabases']) : ''); ?>';
|
|
var confirmMsg = '<?php echo(($GLOBALS['cfg']['Confirm']) ? str_replace('\'', '\\\'', $GLOBALS['strDoYouReally']) : ''); ?>';
|
|
//-->
|
|
</script>
|
|
<script src="libraries/functions.js" type="text/javascript" language="javascript"></script>
|
|
<?php
|
|
} else if (isset($js_to_run) && $js_to_run == 'user_details.js') {
|
|
echo "\n";
|
|
?>
|
|
// js form validation stuff
|
|
var jsHostEmpty = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strHostEmpty']); ?>';
|
|
var jsUserEmpty = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strUserEmpty']); ?>';
|
|
var jsPasswordEmpty = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strPasswordEmpty']); ?>';
|
|
var jsPasswordNotSame = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strPasswordNotSame']); ?>';
|
|
//-->
|
|
</script>
|
|
<script src="libraries/user_details.js" type="text/javascript" language="javascript"></script>
|
|
<?php
|
|
} else if (isset($js_to_run) && $js_to_run == 'server_privileges.js') {
|
|
echo "\n";
|
|
?>
|
|
// js form validation stuff
|
|
var jsHostEmpty = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strHostEmpty']); ?>';
|
|
var jsUserEmpty = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strUserEmpty']); ?>';
|
|
var jsPasswordEmpty = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strPasswordEmpty']); ?>';
|
|
var jsPasswordNotSame = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strPasswordNotSame']); ?>';
|
|
//-->
|
|
</script>
|
|
<script src="libraries/server_privileges.js" type="text/javascript" language="javascript"></script>
|
|
<?php
|
|
} else if (isset($js_to_run) && $js_to_run == 'indexes.js') {
|
|
echo "\n";
|
|
?>
|
|
// js index validation stuff
|
|
var errorMsg0 = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strFormEmpty']); ?>';
|
|
var errorMsg1 = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strNotNumber']); ?>';
|
|
var errorMsg2 = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strNotValidNumber']); ?>';
|
|
//-->
|
|
</script>
|
|
<script src="libraries/indexes.js" type="text/javascript" language="javascript"></script>
|
|
<?php
|
|
} else if (isset($js_to_run) && $js_to_run == 'tbl_change.js') {
|
|
echo "\n";
|
|
?>
|
|
//-->
|
|
</script>
|
|
<script src="libraries/tbl_change.js" type="text/javascript" language="javascript"></script>
|
|
<?php
|
|
} else {
|
|
echo "\n";
|
|
?>
|
|
//-->
|
|
</script>
|
|
<?php
|
|
}
|
|
echo "\n";
|
|
|
|
// If query window is wanted and open, update with latest selected db/table.
|
|
if ($cfg['QueryFrame'] && $cfg['QueryFrameJS']) {
|
|
?>
|
|
<script>
|
|
<?php
|
|
if ($cfg['QueryFrameDebug']) {
|
|
?>
|
|
document.writeln("Updating query window. DB: <?php echo (isset($db) ? $db : 'FALSE'); ?>, Table: <?php echo (isset($table) ? $table : 'FALSE'); ?><br>");
|
|
document.writeln("Window: " + top.frames.queryframe.querywindow.location + "<br>");
|
|
<?php
|
|
}
|
|
?>
|
|
|
|
if (top.frames.queryframe && top.frames.queryframe.document && top.frames.queryframe.document.queryframeform) {
|
|
top.frames.queryframe.document.queryframeform.db.value = "<?php echo (isset($db) ? htmlspecialchars($db) : ''); ?>";
|
|
top.frames.queryframe.document.queryframeform.table.value = "<?php echo (isset($table) ? htmlspecialchars($table) : ''); ?>";
|
|
}
|
|
|
|
function reload_querywindow () {
|
|
if (top.frames.queryframe && top.frames.queryframe.querywindow && !top.frames.queryframe.querywindow.closed && top.frames.queryframe.querywindow.location) {
|
|
<?php echo ($cfg['QueryFrameDebug'] ? 'document.writeln("<a href=\'#\' onClick=\'top.frames.queryframe.querywindow.focus(); return false;\'>Query Window</a> can be updated.<br>");' : ''); ?>
|
|
|
|
top.frames.queryframe.querywindow.document.querywindow.db.value = "<?php echo (isset($db) ? htmlspecialchars($db) : '') ?>";
|
|
top.frames.queryframe.querywindow.document.querywindow.query_history_latest_db.value = "<?php echo (isset($db) ? htmlspecialchars($db) : '') ?>";
|
|
top.frames.queryframe.querywindow.document.querywindow.table.value = "<?php echo (isset($table) ? htmlspecialchars($table) : '') ?>";
|
|
top.frames.queryframe.querywindow.document.querywindow.query_history_latest_table.value = "<?php echo (isset($table) ? htmlspecialchars($table) : '') ?>";
|
|
|
|
<?php echo (isset($sql_query) ? 'top.frames.queryframe.querywindow.document.querywindow.query_history_latest.value = "' . urlencode($sql_query) . '";' : ''); ?>
|
|
|
|
<?php echo ($cfg['QueryFrameDebug'] ? 'alert(\'Querywindow submits. Last chance to check variables.\');' : ''); ?>
|
|
top.frames.queryframe.querywindow.document.querywindow.submit();
|
|
}
|
|
}
|
|
|
|
function focus_querywindow(sql_query) {
|
|
if (top.frames.queryframe && top.frames.queryframe.querywindow && !top.frames.queryframe.querywindow.closed && top.frames.queryframe.querywindow.location) {
|
|
top.frames.queryframe.querywindow.focus();
|
|
return false;
|
|
} else if (top.frames.queryframe) {
|
|
new_win_url = 'querywindow.php3?sql_query=' + sql_query + '&<?php echo PMA_generate_common_url('', ''); ?>&db=<?php echo (isset($db) ? htmlspecialchars($db) : ''); ?>&table=<?php echo (isset($table) ? htmlspecialchars($table) : ''); ?>';
|
|
top.frames.queryframe.querywindow=window.open(new_win_url, 'js_querywindow','toolbar=0,location=1,directories=0,status=1,menubar=0,scrollbars=yes,resizable=yes,width=<?php echo $cfg['QueryWindowWidth']; ?>,height=<?php echo $cfg['QueryWindowHeight']; ?>');
|
|
|
|
if (!top.frames.queryframe.querywindow.opener) {
|
|
top.frames.queryframe.querywindow.opener = top.frames.queryframe;
|
|
}
|
|
|
|
// reload_querywindow();
|
|
return false;
|
|
}
|
|
}
|
|
|
|
reload_querywindow();
|
|
self.focus();
|
|
|
|
|
|
</script>
|
|
<?php
|
|
}
|
|
?>
|
|
</head>
|
|
|
|
|
|
<?php
|
|
if ($GLOBALS['cfg']['RightBgImage'] != '') {
|
|
$bkg_img = ' background="' . $GLOBALS['cfg']['RightBgImage'] . '"';
|
|
} else {
|
|
$bkg_img = '';
|
|
}
|
|
?>
|
|
<body bgcolor="<?php echo $GLOBALS['cfg']['RightBgColor'] . '"' . $bkg_img; ?>>
|
|
<?php
|
|
if (!defined('PMA_DISPLAY_HEADING')) {
|
|
define('PMA_DISPLAY_HEADING', 1);
|
|
}
|
|
if (PMA_DISPLAY_HEADING) {
|
|
$header_url_qry = '?' . PMA_generate_common_url();
|
|
echo '<h1>' . "\n";
|
|
$server_info = (!empty($cfg['Server']['verbose'])
|
|
? $cfg['Server']['verbose']
|
|
: $server_info = $cfg['Server']['host'] . (empty($cfg['Server']['port'])
|
|
? ''
|
|
: ':' . $cfg['Server']['port']
|
|
)
|
|
);
|
|
if (isset($GLOBALS['db'])) {
|
|
echo ' ' . $GLOBALS['strDatabase'] . ' <i><a class="h1" href="' . $GLOBALS['cfg']['DefaultTabDatabase'] . $header_url_qry . '&db=' . urlencode($GLOBALS['db']) . '">' . htmlspecialchars($GLOBALS['db']) . '</a></i>' . "\n";
|
|
if (!empty($GLOBALS['table'])) {
|
|
echo ' - ' . $GLOBALS['strTable'] . ' <i><a class="h1" href="' . $GLOBALS['cfg']['DefaultTabTable'] . $header_url_qry . '&db=' . urlencode($GLOBALS['db']) . '&table=' . urlencode($GLOBALS['table']) . '">' . htmlspecialchars($GLOBALS['table']) . '</a></i>' . "\n";
|
|
}
|
|
echo ' ' . sprintf($GLOBALS['strRunning'], '<i><a class="h1" href="' . $GLOBALS['cfg']['DefaultTabServer'] . $header_url_qry . '">' . htmlspecialchars($server_info) . '</a></i>');
|
|
} else {
|
|
echo ' ' . sprintf($GLOBALS['strServer'], '<i><a class="h1" href="' . $GLOBALS['cfg']['DefaultTabServer'] . $header_url_qry . '">' . htmlspecialchars($server_info) . '</a></i>');
|
|
}
|
|
echo "\n" . '</h1>' . "\n";
|
|
}
|
|
echo "\n";
|
|
|
|
|
|
/**
|
|
* Sets a variable to remember headers have been sent
|
|
*/
|
|
$GLOBALS['is_header_sent'] = TRUE;
|
|
?>
|