bug#3212720 Show error message on error.
[phpmyadmin/ayax.git] / libraries / header_meta_style.inc.php
blob46cca27b3582236b9c50ac441ff0bc6562b63c47
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
5 * @package phpMyAdmin
6 */
7 if (! defined('PHPMYADMIN')) {
8 exit;
11 /**
14 if (isset($_REQUEST['GLOBALS']) || isset($_FILES['GLOBALS'])) {
15 die("GLOBALS overwrite attempt");
18 /**
19 * Sends the beginning of the html page then returns to the calling script
21 // Defines the cell alignment values depending on text direction
22 if ($GLOBALS['text_dir'] == 'ltr') {
23 $GLOBALS['cell_align_left'] = 'left';
24 $GLOBALS['cell_align_right'] = 'right';
25 } else {
26 $GLOBALS['cell_align_left'] = 'right';
27 $GLOBALS['cell_align_right'] = 'left';
29 // removes the bug with the horizontal scrollbar in IE (it's allways shown, if need it or not)
30 // xml declaration moves IE into quirks mode, making much trouble with CSS
31 /* echo '<?xml version="1.0" encoding="' . $GLOBALS['charset'] . '"?>'; */
34 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
35 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
36 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $GLOBALS['available_languages'][$GLOBALS['lang']][1]; ?>" lang="<?php echo $GLOBALS['available_languages'][$GLOBALS['lang']][1]; ?>" dir="<?php echo $GLOBALS['text_dir']; ?>">
37 <head>
38 <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $GLOBALS['charset']; ?>" />
39 <link rel="icon" href="./favicon.ico" type="image/x-icon" />
40 <link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
41 <title><?php
42 if (!empty($page_title)) {
43 echo htmlspecialchars($page_title);
44 } else {
45 echo 'phpMyAdmin';
47 ?></title>
48 <?php
49 // goes before our themed CSS
50 if (defined('PMA_COLORPICKER')) { ?>
51 <link rel="stylesheet" type="text/css" href="js/colorpicker/css/colorpicker.css" />
52 <link rel="stylesheet" media="screen" type="text/css" href="js/colorpicker/css/layout.css" />
53 <?php
56 <link rel="stylesheet" type="text/css" href="<?php echo defined('PMA_PATH_TO_BASEDIR') ? PMA_PATH_TO_BASEDIR : ''; ?>phpmyadmin.css.php<?php echo PMA_generate_common_url(array('server' => $GLOBALS['server'])); ?>&amp;js_frame=<?php echo isset($print_view) ? 'print' : 'right'; ?>&amp;nocache=<?php echo $GLOBALS['PMA_Config']->getThemeUniqueValue(); ?>" />
57 <link rel="stylesheet" type="text/css" href="<?php echo defined('PMA_PATH_TO_BASEDIR') ? PMA_PATH_TO_BASEDIR : ''; ?>print.css" media="print" />
58 <link rel="stylesheet" type="text/css" href="<?php echo $GLOBALS['pmaThemePath']; ?>/jquery/jquery-ui-1.8.custom.css" />
59 <meta name="robots" content="noindex,nofollow" />