Documentation TYPO3 par Ameos |
00001 <?php 00002 /* $Id: header_meta_style.inc.php,v 2.0 2003/11/18 15:20:43 nijel Exp $ */ 00003 // vim: expandtab sw=4 ts=4 sts=4: 00004 00008 // Gets the font sizes to use 00009 PMA_setFontSizes(); 00010 // Defines the cell alignment values depending on text direction 00011 if ($GLOBALS['text_dir'] == 'ltr') { 00012 $GLOBALS['cell_align_left'] = 'left'; 00013 $GLOBALS['cell_align_right'] = 'right'; 00014 } else { 00015 $GLOBALS['cell_align_left'] = 'right'; 00016 $GLOBALS['cell_align_right'] = 'left'; 00017 } 00018 ?> 00019 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 00020 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 00021 <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']; ?>"> 00022 00023 <head> 00024 <title>phpMyAdmin</title> 00025 <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $GLOBALS['charset']; ?>" /> 00026 <?php 00027 if (!empty($GLOBALS['cfg']['PmaAbsoluteUri'])) { 00028 echo '<base href="' . $GLOBALS['cfg']['PmaAbsoluteUri'] . '" />' . "\n"; 00029 } 00030 ?> 00031 <link rel="stylesheet" type="text/css" href="<?php echo defined('PMA_PATH_TO_BASEDIR') ? PMA_PATH_TO_BASEDIR : './'; ?>css/phpmyadmin.css.php?lang=<?php echo $GLOBALS['lang']; ?>&js_frame=right" />