Changeset 230 for trunk/client/header.php
- Timestamp:
- May 18, 2015, 12:17:41 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/client/header.php
r210 r230 13 13 } 14 14 15 ### tema mobile Futura 2 16 include("inc/mobile.php"); // riconoscimento mobile 17 $is_mobile=is_mobile(); 18 if($is_mobile && $nocell!=1){ 19 $tema="Futura2"; 20 } 21 15 22 include("temi/$tema/index.php"); 16 23 include("modules/Elezioni/language/lang-$lang.php"); 17 24 18 19 function head() { 25 function head(){ 20 26 global $csv,$tema,$tour; 21 27 echo ' … … 27 33 echo "<link rel=\"stylesheet\" href=\"temi/$tema/style.css\" type=\"text/css\" />\n\n\n"; 28 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 } 29 39 30 40 echo "\n\n\n</head>\n"; 31 41 # rotazione per tema tour 32 42 if (isset($_SESSION['ruota'])){$csv=1; echo "<body onload=\"loadpage()\"";} 33 else echo "<body onload=\"initialize()\"";43 else echo "<body"; 34 44 if (!$csv) echo " style=\"background-image: url(temi/$tema/images/sfondo.jpg); background-repeat:repeat-x;\""; 35 45 echo " >\n"; … … 38 48 include_once("modules/Elezioni/funzioni.php"); 39 49 if (!$csv)testata(); 40 41 } 42 43 head(); 50 } 51 head(); 44 52 45 53 ?>
Note:
See TracChangeset
for help on using the changeset viewer.