]> git.p6c8.net - jirafeau_project.git/blob - lib/template/header.php
5a365b90a6dafaa59ddd8d5408b3e532ebc9fdb0
[jirafeau_project.git] / lib / template / header.php
1 <?php
2 header('Vary: Accept');
3
4 $content_type = 'text/html; charset=utf-8';
5
6 if (isset ($_SERVER['HTTP_ACCEPT']) &&
7 stristr ($_SERVER['HTTP_ACCEPT'], 'application/xhtml+xml'))
8 {
9 $content_type = 'application/xhtml+xml; charset=utf-8';
10 }
11
12 header('Content-Type: ' . $content_type);
13 header('x-ua-compatible: ie=edge');
14
15 $protocol = (bool)is_ssl() ? 'https' : 'http';
16
17 if ( !empty($cfg['web_root']) ) {
18 $cfg['web_root'] = preg_replace('#https?://#', $protocol . '://', $cfg['web_root'], 1);
19 }
20
21 /* Avoids irritating errors with the installer (no conf file is present then). */
22 if (!isset ($cfg['web_root']))
23 $web_root = $protocol+'://' . $_SERVER['HTTP_HOST'] . '/';
24 else
25 $web_root = $cfg['web_root'];
26
27 if (!isset ($cfg['style']))
28 $style = 'default';
29 else
30 $style = $cfg['style'];
31
32 if (isset ($_SERVER['HTTP_ACCEPT']) &&
33 stristr ($_SERVER['HTTP_ACCEPT'], 'application/xhtml+xml'))
34 {
35 ?>
36 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
37 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
38 <?php
39 }
40 else
41 {
42 ?>
43 <!DOCTYPE html>
44 <html>
45 <?php
46 }
47 ?>
48 <head>
49 <title><?php echo t('Jirafeau, your web file repository'); ?></title>
50 <meta http-equiv="Content-Type" content="<?php echo $content_type; ?>" />
51 <link href="<?php echo $web_root . 'media/' . $style . '/style.css.php'; ?>" rel="stylesheet" type="text/css" />
52 </head>
53 <body>
54 <script type="text/javascript" language="Javascript" src="lib/functions.js.php"></script>
55 <div id="content">
56 <h1><a href="<?php echo $web_root; ?>"><?php echo t('Jirafeau, your web file repository'); ?></a></h1>

patrick-canterino.de