source: trunk/client/header.php@ 230

Last change on this file since 230 was 230, checked in by luc, 9 years ago
  • inclusione del tema per mobile Futura2
  • inclusione del widget per la ricerca dei candidati
  • inclusione della segnalazione dell'installazione
  • altre piccole migliorie
File size: 1.9 KB
Line 
1<?php
2/************************************************************************/
3/* Eleonline - Raccolta e diffusione dei dati elettorali */
4/* by Luciano Apolito & Roberto Gigli */
5/* http://www.eleonline.it */
6/* info@eleonline.it luciano@aniene.net rgigli@libero.it */
7/************************************************************************/
8/* ultima modfifica: aggiunta rotazione 18 marzo 2009 */
9
10if (stristr($PHP_SELF,"header.php")) {
11 Header("Location: index.php");
12 die();
13}
14
15### tema mobile Futura 2
16include("inc/mobile.php"); // riconoscimento mobile
17$is_mobile=is_mobile();
18 if($is_mobile && $nocell!=1){
19 $tema="Futura2";
20 }
21
22include("temi/$tema/index.php");
23include("modules/Elezioni/language/lang-$lang.php");
24
25function head(){
26 global $csv,$tema,$tour;
27 echo '
28 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
29 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">';
30 echo "<head>\n";
31 echo "<meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\" />";
32 echo "<title>Eleonline - Elezioni on line</title>\n";
33 echo "<link rel=\"stylesheet\" href=\"temi/$tema/style.css\" type=\"text/css\" />\n\n\n";
34 include("inc/javascript.php"); # rotazione (18 marzo 2009) tema tour
35 ##### tema mobile
36 if (file_exists("temi/$tema/themeutils.php")) {
37 include("temi/$tema/themeutils.php"); #incluso x tema mobile
38 }
39
40 echo "\n\n\n</head>\n";
41 # rotazione per tema tour
42 if (isset($_SESSION['ruota'])){$csv=1; echo "<body onload=\"loadpage()\"";}
43 else echo "<body";
44 if (!$csv) echo " style=\"background-image: url(temi/$tema/images/sfondo.jpg); background-repeat:repeat-x;\"";
45 echo " >\n";
46 include("inc/authors.php");
47
48 include_once("modules/Elezioni/funzioni.php");
49 if (!$csv)testata();
50}
51head();
52
53?>
Note: See TracBrowser for help on using the repository browser.