source: trunk/client/temi/facebook/index.php@ 2

Last change on this file since 2 was 2, checked in by root, 15 years ago

importo il progetto

File size: 1.1 KB
Line 
1<?php
2# tema like-facebook
3# for eleonline
4include_once("modules/Elezioni/funzioni.php");
5########## no blocco x grafici e risultati
6if($blocco!=1 || $param['op']=="graf_gruppo" || $param['op']=="gruppo_circo" || $param['op']=="gruppo_sezione"
7|| $param['op']=="lista_circo" || $param['op']=="lista_sezione" || $param['op']=="candidato_circo" || $param['op']=="candidato_sezione"
8)$blocco=''; else $blocco=1;
9
10function testata(){
11 global $blocco,$file;
12 echo "<div id=\"container\" >";
13 if ($file=="index") menu();
14
15 echo "<table class=\"table-main\" cellpadding=\"0\" cellspacing=\"0\"><tr>";
16 $check=check_block("dx"); // check exist box
17
18 if ($blocco=='1' && $check!=0){
19 echo "<td valign=\"top\" class=\"sidebar\">";
20 block("dx");
21 echo "</td><td>&nbsp;&nbsp;</td><td valign=\"top\">";
22
23 }else {
24 echo "<td valign=\"top\">";
25 }
26
27}
28
29function piede(){
30 global $blocco;
31 $check=check_block("sx"); // check exist box
32 if ($blocco=='1' && $check!=0){
33 echo "</td><td>&nbsp;&nbsp;</td><td valign=\"top\" class=\"sidebar\">";
34 block("sx");
35
36 }
37 echo "</td></tr></table>";
38 echo "</div>"; #container
39
40}
41
42?>
Note: See TracBrowser for help on using the repository browser.