Changeset 42 for trunk/client/modules/Elezioni
- Timestamp:
- Mar 24, 2010, 2:19:36 PM (15 years ago)
- Location:
- trunk/client/modules/Elezioni
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/client/modules/Elezioni/blocchi/02_risultati.php
r40 r42 20 20 //$content .="<div style=\"text-align:left;\"><strong>$descr_cons</strong></div><br/>"; 21 21 for($x=0;$x<count($gruppo);$x++){ 22 echo "<strong><big>·</big></strong>".$gruppo[$x]." <b><span style=\"color:#ff0000;\">".$pro[$x] ."%</ a></b> <br />\n";22 echo "<strong><big>·</big></strong>".$gruppo[$x]." <b><span style=\"color:#ff0000;\">".$pro[$x] ."%</span></b> <br />\n"; 23 23 } 24 24 -
trunk/client/modules/Elezioni/index.php
r39 r42 20 20 if (isset($param['pdf'])) $pdf=intval($param['pdf']); else $pdf='0'; 21 21 if (isset($param['datipdf'])) get_magic_quotes_gpc() ? $datipdf=$param['datipdf']:$datipdf=addslashes($param['datipdf']); else $datipdf=''; 22 if(isset($param['visgralista'])) $visgralista=1; 22 23 if (isset($param['id_comune'])) $id_comune=intval($param['id_comune']); else $id_comune=$siteistat; 23 24 if (isset($param['id_cons_gen'])) $id_cons_gen=intval($param['id_cons_gen']); else $id_cons_gen=$id_cons_pred;// cons predefinita … … 143 144 *************************/ 144 145 function menu() { 145 global $hondt,$lang,$multicomune, $tema, $op, $prefix, $dbi, $offset, $min,$descr_cons,$info,$dati, $votog,$votol,$votoc,$circo, $id_cons,$tipo_cons,$genere,$descr_cons,$id_cons_gen,$id_comune,$id_circ,$minsez,$offsetsez, $limite,$hondt,$tema_on,$js ;146 global $hondt,$lang,$multicomune, $tema, $op, $prefix, $dbi, $offset, $min,$descr_cons,$info,$dati, $votog,$votol,$votoc,$circo, $id_cons,$tipo_cons,$genere,$descr_cons,$id_cons_gen,$id_comune,$id_circ,$minsez,$offsetsez, $limite,$hondt,$tema_on,$js,$visgralista; 146 147 147 148 $tema=htmlentities($tema); //xss … … 448 449 449 450 } 450 451 if(!isset($max)) $max=0; 451 452 page($id_cons_gen,$go,$max,$min,$prev,$next,$offset,$file); 452 453 -
trunk/client/modules/Elezioni/language/lang-it.php
r28 r42 199 199 define("_SCELTA_LISTE","ASSEGNA LE LISTE AI RAGGRUPPAMENTI"); 200 200 define("_ALTRI","Altri sotto il 3%"); 201 define("_CNFR_CONS", htmlentities("RAFFRONTO TRA CONSULTAZIONI<br/>si può impostare su liste singole o su raggruppamenti"));201 define("_CNFR_CONS","RAFFRONTO TRA CONSULTAZIONI<br/>".htmlentities("si può impostare su liste singole o su raggruppamenti")); 202 202 define("_SCELTA_CONS","<b>Scegli le consultazioni da mettere a confronto</b>"); 203 203 -
trunk/client/modules/Elezioni/menu.php
r2 r42 34 34 if ($multicomune=='1') 35 35 { 36 $sqlcomu="select t1.id_comune,t1.descrizione,count(0) from ".$prefix."_ele_comuni as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_comune=t2.id_comune group by t1.id_comune,t1.descrizione order by t1.descrizione asc";36 $sqlcomu="select t1.id_comune,t1.descrizione,count(0) from ".$prefix."_ele_comuni as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_comune=t2.id_comune and t2.chiusa<2 group by t1.id_comune,t1.descrizione order by t1.descrizione asc"; 37 37 $rescomu= mysql_query("$sqlcomu",$dbi); 38 38 $esiste_multi=mysql_num_rows($rescomu); … … 187 187 echo "<td >"; 188 188 189 $temp = array('affluenze_graf'=>'','graf_votanti'=>'','graf_gruppo'=>'','graf_candidato'=>''); 190 $temp[$op]='selected="selected"'; 189 $temp = array('affluenze_graf'=>'','graf_votanti'=>'','graf_gruppo'=>'','graf_lista'=>'','graf_candidato'=>''); 190 if(!isset($visgralista)) 191 $temp[$op]='selected="selected"'; 192 else $temp['graf_lista']='selected="selected"'; 191 193 # <div><label class=\"blu\" for=\"grafici\">"._GRAFICI." 192 194 … … 204 206 #inutile if($genere!=4 || $tipo_cons==8) 205 207 echo "<option value=\"graf_gruppo\" ".$temp['graf_gruppo']." >"._GRUPPO."</option>"; 208 if($genere==5) 209 echo "<option value=\"graf_gruppo&visgralista=1\" ".$temp['graf_lista'].">"._LISTA."</option>"; 206 210 if ($genere>3){ 207 211 if (!$circo && !$votog)
Note:
See TracChangeset
for help on using the changeset viewer.