Started working on a new interface to server related pages.
This commit is contained in:
38
server_common.inc.php3
Normal file
38
server_common.inc.php3
Normal file
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
/* $Id$ */
|
||||
// vim: expandtab sw=4 ts=4 sts=4:
|
||||
|
||||
/**
|
||||
* Gets some core libraries
|
||||
*/
|
||||
if (!defined('PMA_GRAB_GLOBALS_INCLUDED')) {
|
||||
include('./libraries/grab_globals.lib.php3');
|
||||
}
|
||||
if (!defined('PMA_COMMON_LIB_INCLUDED')) {
|
||||
include('./libraries/common.lib.php3');
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Set parameters for links
|
||||
*/
|
||||
$url_query = 'lang=' . $lang
|
||||
. '&convcharset=' . $convcharset
|
||||
. '&server=' . $server;
|
||||
|
||||
/**
|
||||
* Defines the urls to return to in case of error in a sql statement
|
||||
*/
|
||||
$err_url = 'main.php3' . $url_query;
|
||||
|
||||
/**
|
||||
* Displays the headers
|
||||
*/
|
||||
require('./header.inc.php3');
|
||||
|
||||
/**
|
||||
* Checks for superuser privileges
|
||||
*/
|
||||
$is_superuser = @PMA_mysql_query('USE mysql', $userlink);
|
||||
|
||||
?>
|
Reference in New Issue
Block a user