Add link to wiki explaining configuration options.
[phpmyadmin/crack.git] / libraries / header_meta_style.inc.php
blob49e71fbab2887985b456551b2b918867258f7369
1 <?php
2 /* $Id$ */
3 // vim: expandtab sw=4 ts=4 sts=4:
5 if (isset($_REQUEST['GLOBALS']) || isset($_FILES['GLOBALS'])) {
6 die("GLOBALS overwrite attempt");
9 /**
10 * Sends the beginning of the html page then returns to the calling script
12 // Defines the cell alignment values depending on text direction
13 if ($GLOBALS['text_dir'] == 'ltr') {
14 $GLOBALS['cell_align_left'] = 'left';
15 $GLOBALS['cell_align_right'] = 'right';
16 } else {
17 $GLOBALS['cell_align_left'] = 'right';
18 $GLOBALS['cell_align_right'] = 'left';
20 // removes the bug with the horizontal scrollbar in IE (it's allways shown, if need it or not)
21 // xml declaration moves IE into quirks mode, making much trouble with CSS
22 /* echo '<?xml version="1.0" encoding="' . $GLOBALS['charset'] . '"?>'; */
25 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
26 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
27 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $GLOBALS['available_languages'][$GLOBALS['lang']][2]; ?>" lang="<?php echo $GLOBALS['available_languages'][$GLOBALS['lang']][2]; ?>" dir="<?php echo $GLOBALS['text_dir']; ?>">
28 <head>
29 <link rel="icon" href="./favicon.ico" type="image/x-icon" />
30 <link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
31 <title><?php
32 if (!empty($page_title)) {
33 echo htmlspecialchars($page_title);
34 } else {
35 echo 'phpMyAdmin';
37 ?></title>
38 <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $GLOBALS['charset']; ?>" />
39 <link rel="stylesheet" type="text/css" href="<?php echo defined('PMA_PATH_TO_BASEDIR') ? PMA_PATH_TO_BASEDIR : './'; ?>css/phpmyadmin.css.php?<?php echo PMA_generate_common_url(); ?>&amp;js_frame=<?php echo isset($print_view) ? 'print' : 'right'; ?>" />
40 <link rel="stylesheet" type="text/css" href="<?php echo defined('PMA_PATH_TO_BASEDIR') ? PMA_PATH_TO_BASEDIR : './'; ?>css/print.css?<?php echo PMA_generate_common_url(); ?>" media="print" />