[2] | 1 | <?php
|
---|
| 2 |
|
---|
| 3 | /************************************************************************/
|
---|
| 4 | /* Eleonline - Raccolta e diffusione dei dati elettorali */
|
---|
| 5 | /* by Roberto Gigli & Luciano Apolito */
|
---|
| 6 | /* http://www.eleonline.it */
|
---|
| 7 | /* info@eleonline.it luciano@aniene.net rgigli@libero.it */
|
---|
| 8 | /************************************************************************/
|
---|
| 9 | /* Modulo Autorizzazione Comuni */
|
---|
| 10 | /* Amministrazione */
|
---|
| 11 | /************************************************************************/
|
---|
| 12 | # e' l'unico file in cui Ú presente un controllo su tipo_cons, per ora va bene così. Per toglierlo va inserito un campo-flag in ele_tipo per indicare se per il tipo di consultazione si dovra' procedere al calcolo dell'assegnazione dei seggi
|
---|
| 13 | if (!defined('ADMIN_FILE')) {
|
---|
| 14 | die ("You can't access this file directly...");
|
---|
| 15 | }
|
---|
| 16 |
|
---|
| 17 | $aid=$_SESSION['aid'];
|
---|
| 18 | $dbi=$_SESSION['dbi'];
|
---|
| 19 | $prefix=$_SESSION['prefix'];
|
---|
| 20 | $id_comune=$_SESSION['id_comune'];
|
---|
| 21 | $id_cons_gen=intval($_GET['id_cons_gen']);
|
---|
| 22 | $perms=ChiSei(0);
|
---|
| 23 | if ($perms<128 or !$id_cons_gen) die("$perms Non hai i permessi per inserire dati, o non hai scelto la consultazione!");
|
---|
| 24 | $res = mysql_query("SELECT t1.tipo_cons,t1.descrizione,t2.id_cons,t2.id_conf FROM ".$prefix."_ele_consultazione as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_cons_gen=t2.id_cons_gen and t2.id_comune='$id_comune' " , $dbi);
|
---|
| 25 | list($tipo_cons,$descr_cons,$id_cons,$id_conf) = mysql_fetch_row($res);
|
---|
| 26 |
|
---|
| 27 | $res = mysql_query("SELECT genere FROM ".$prefix."_ele_tipo where tipo_cons='$tipo_cons' " , $dbi);
|
---|
| 28 | list($genere) = mysql_fetch_row($res);
|
---|
| 29 |
|
---|
| 30 | include("modules/Elezioni/funzionidata.php");
|
---|
| 31 | include("modules/Elezioni/ele.php");
|
---|
| 32 | if (isset($_GET['descr_comu'])) get_magic_quotes_gpc() ? $descr_comu=$param['descr_comu']:$descr_comu=addslashes($param['descr_comu']); else $descr_comu='';
|
---|
| 33 | if (isset($_GET['do'])) get_magic_quotes_gpc() ? $do=$param['do']:$do=addslashes($param['do']); else $do='';
|
---|
| 34 | if (isset($_GET['ok'])) $ok=intval($_GET['ok']); else $ok='';
|
---|
| 35 | if (isset($_GET['id_cons_comu'])) $id_cons_comu=intval($_GET['id_cons_comu']); else $id_cons_comu='';
|
---|
| 36 | if (isset($_GET['id_collegio'])) $id_collegio=intval($_GET['id_collegio']); else $id_collegio='';
|
---|
| 37 | if (isset($_GET['idcomune'])) $idcomune=intval($_GET['idcomune']); else $idcomune='';
|
---|
| 38 | if (isset($_GET['idcomunenew'])) $idcomunenew=intval($_GET['idcomunenew']); else $idcomunenew='';
|
---|
| 39 | if (isset($_GET['chiusa'])) $chiusa=intval($_GET['chiusa']); else $chiusa='';
|
---|
| 40 | if (isset($_GET['id_conf'])) $id_conf=intval($_GET['id_conf']); else $id_conf=0;
|
---|
| 41 | if (isset($_GET['min'])) $min=intval($_GET['min']); else $min=0;
|
---|
[45] | 42 | if (isset($_GET['help'])) $help=intval($_GET['help']);
|
---|
[2] | 43 |
|
---|
| 44 | $offset=15;
|
---|
| 45 | $hiddenInfo = "<input type=\"hidden\" name=\"min\" value=\"$min\">";
|
---|
| 46 |
|
---|
| 47 |
|
---|
| 48 | /******************************************************/
|
---|
| 49 | /*Funzione di visualizzazione globale */
|
---|
| 50 | /*****************************************************/
|
---|
[77] | 51 | //
|
---|
[2] | 52 | function all() {
|
---|
[45] | 53 | global $user, $admin, $bgcolor1, $bgcolor2, $prefix,$descr_cons, $dbi,$id_cons,$desc,$indirizzo,$centralino,$fax,$id_cons_gen,$id_collegio,$idcomune,$chiusa,$id_conf,$tipo_cons,$language,$help;
|
---|
[2] | 54 | $aid=$_SESSION['aid'];
|
---|
| 55 | $dbi=$_SESSION['dbi'];
|
---|
[45] | 56 | $prefix=$_SESSION['prefix'];
|
---|
[77] | 57 | ############# Controllo flag per cancellazione consultazione
|
---|
| 58 | echo "<SCRIPT type=\"text/javascript\">\n\n<!--\n"
|
---|
| 59 | ."//-->\n";
|
---|
| 60 | echo "function del_cons() {\n";
|
---|
| 61 | echo "if (document.model.pwd3.checked==false) {\n";
|
---|
| 62 | echo "document.model.chiusa.options[3].selected=false \n";
|
---|
| 63 | echo "} \n";
|
---|
| 64 | echo "if (document.model.chiusa.options[3].selected==false) {
|
---|
| 65 | \n";
|
---|
| 66 | echo "document.model.add.value=\""._MODIFY."\" \n";
|
---|
| 67 | echo "document.model.do.value=\"update\" \n";
|
---|
| 68 | echo "}else{\n";
|
---|
| 69 | echo "document.model.add.value=\""._DELETE." "._CONSULTA."\" \n";
|
---|
| 70 | echo "document.model.do.value=\"delete\" \n";
|
---|
| 71 | echo "} \n";
|
---|
| 72 | echo "} \n";
|
---|
| 73 | echo "</script>\n";
|
---|
| 74 | #########################
|
---|
[45] | 75 | if (isset($help)) include("language/$language/ele_associazioni.html");
|
---|
| 76 | OpenTable();
|
---|
[77] | 77 | echo "<tr><td><hr><br>";
|
---|
[2] | 78 | $res = mysql_query("SELECT descrizione FROM ".$prefix."_ele_consultazione where id_cons_gen='$id_cons_gen'" , $dbi);
|
---|
| 79 | list ($descr_cons) = mysql_fetch_row($res);
|
---|
| 80 | //inserire avviso su mancanza dei permessi
|
---|
| 81 | echo "<form name=\"model\" action=\"admin.php\">";
|
---|
[77] | 82 | echo "<table width=\"100%\" border=\"3\">";
|
---|
[2] | 83 | echo "<tr align=\"center\"><td bgcolor=\"$bgcolor1\"><b>"._CONSULTA."</b></td>";
|
---|
| 84 | # echo "<td bgcolor=\"$bgcolor1\"><b>"._COLLEGI."</b></td>";
|
---|
| 85 | echo "<td bgcolor=\"$bgcolor1\"><b>"._DEFCOMUNE."</b></td>";
|
---|
[77] | 86 | echo "<td bgcolor=\"$bgcolor1\"><b>"._STATO."</b></td><td bgcolor=\"$bgcolor1\">";
|
---|
[2] | 87 | if($tipo_cons==3)
|
---|
[77] | 88 | echo "<b>"._CONF."</b>";
|
---|
[2] | 89 | echo "<input type=\"hidden\" name=\"op\" value=\"associazioni\">";
|
---|
[77] | 90 | # echo "<input type=\"hidden\" name=\"pag_cons\" value=\"admin.php?op=associazioni&id_cons_gen=\">";
|
---|
| 91 | echo "</td></tr>";
|
---|
| 92 | echo "<tr align=\"center\"><td>";
|
---|
| 93 | echo "<input type=\"hidden\" name=\"id_cons_gen\" value=\"$id_cons_gen\">$descr_cons</td>";
|
---|
[2] | 94 | # $ressede = mysql_query("SELECT id_collegio, descrizione from ".$prefix."_ele_collegi where id_cons_gen='$id_cons_gen' order by descrizione desc", $dbi);
|
---|
| 95 | # if ($num_coll=mysql_num_rows($ressede)){
|
---|
| 96 | # echo "<td><select name=\"id_collegio\">";
|
---|
| 97 | # while(list($id,$descr_coll)=mysql_fetch_row($ressede)){
|
---|
| 98 | # $sel= ($id == $id_collegio) ? "selected":"";
|
---|
| 99 | # echo "<option value=\"$id\" $sel>$descr_coll";
|
---|
| 100 | # }
|
---|
| 101 | # echo "</select></td>";
|
---|
| 102 | # } else echo "<td></td>";
|
---|
[77] | 103 | $rescomu = mysql_query("SELECT id_comune, descrizione from ".$prefix."_ele_comuni order by descrizione asc", $dbi);
|
---|
| 104 | echo "<td>";
|
---|
| 105 | if($idcomune) {
|
---|
| 106 | while ($listele=mysql_fetch_array($rescomu))
|
---|
| 107 | if($listele['id_comune']==$idcomune) {
|
---|
| 108 | echo $listele['descrizione'];
|
---|
| 109 | echo "<input type=\"hidden\" name=\"idcomunenew\" value=\"$idcomune\">";
|
---|
| 110 | }
|
---|
| 111 |
|
---|
| 112 | }else{
|
---|
| 113 | echo "<select name=\"idcomunenew\">";
|
---|
[2] | 114 | echo "<option value=\"0\"> ";
|
---|
| 115 | while(list($id,$descr_comu)=mysql_fetch_row($rescomu)){
|
---|
| 116 | $sel= ($id == $idcomune) ? "selected":"";
|
---|
| 117 | echo "<option value=\"$id\" $sel>$descr_comu";
|
---|
| 118 | }
|
---|
[77] | 119 | echo "</select>";
|
---|
| 120 | }
|
---|
| 121 | echo "</td>";
|
---|
[2] | 122 | $selez['0']='';
|
---|
| 123 | $selez['1']='';
|
---|
[77] | 124 | $selez['2']='';
|
---|
| 125 | $selez['3']='';
|
---|
[2] | 126 | $selez[$chiusa]="selected";
|
---|
[77] | 127 | echo "<td><select name=\"chiusa\" onChange=\"del_cons()\">";
|
---|
[2] | 128 | echo "<option value=\"0\" ".$selez[0].">"._ATTIVA;
|
---|
| 129 | echo "<option value=\"1\" ".$selez[1].">"._CHIUSA;
|
---|
| 130 | echo "<option value=\"2\" ".$selez[2].">"._NULLA;
|
---|
[77] | 131 |
|
---|
| 132 | if($idcomune) echo "<option value=\"3\" ".$selez[3].">"._ELIMINA;
|
---|
[2] | 133 | echo "</select></td>";
|
---|
| 134 | if($tipo_cons==3){
|
---|
| 135 | $rescomu = mysql_query("SELECT id_conf, descrizione from ".$prefix."_ele_conf order by descrizione asc", $dbi);
|
---|
| 136 | echo "<td><select name=\"id_conf\">";
|
---|
| 137 | echo "<option value=\"0\"> ";
|
---|
| 138 | while(list($id,$descr_conf)=mysql_fetch_row($rescomu)){
|
---|
| 139 | $sel='';
|
---|
| 140 | if ($idcomune and $id == $id_conf) $sel="selected"; elseif ($id==1) $sel="selected";
|
---|
| 141 | echo "<option value=\"$id\" $sel>$descr_conf";
|
---|
| 142 | }
|
---|
| 143 | echo "</select></td>";
|
---|
| 144 | }
|
---|
| 145 | unset($sel);
|
---|
[77] | 146 | echo "<td><input type=\"hidden\" name=\"ok\" value=0>";
|
---|
[2] | 147 | echo "<input type=\"hidden\" name=\"id_cons_gen\" value=\"$id_cons_gen\">";
|
---|
| 148 | if ($idcomune) {
|
---|
| 149 | echo "<input type=\"hidden\" name=\"do\" value=\"update\">";
|
---|
| 150 | echo "<input type=\"hidden\" name=\"idcomune\" value=\"$idcomune\">";
|
---|
[77] | 151 | echo "<input type=\"submit\" name=\"add\" value=\""._MODIFY."\" ></td></tr>";
|
---|
[79] | 152 | echo "<tr><td colspan=\"4\"><fieldset><legend>Abilita la cancellazione</legend><label id=\"prov\">"._SPUNTAELIMINA." <input type=\"checkbox\" name=\"pwd3\" value=\"\" onchange=\"del_cons()\"></label></fieldset>";
|
---|
[2] | 153 | }else{
|
---|
| 154 | echo "<input type=\"hidden\" name=\"do\" value=\"add\">";
|
---|
[77] | 155 | echo "<input type=\"submit\" name=\"add\" value=\""._ADD."\">";
|
---|
[2] | 156 | }
|
---|
[77] | 157 | $i=0;
|
---|
| 158 | echo "</td></tr></table></form>";
|
---|
| 159 | ############
|
---|
| 160 | echo "<hr><br><table width=\"100%\" border=\"3\">";
|
---|
| 161 | echo "<tr align=\"center\"><td width=\"25%\" bgcolor=\"$bgcolor1\"><b>"._CONSULTA."</b></td>";
|
---|
| 162 | # echo "<td bgcolor=\"$bgcolor1\"><b>"._COLLEGI."</b></td>";
|
---|
| 163 | echo "<td width=\"25%\" bgcolor=\"$bgcolor1\"><b>"._DEFCOMUNE."</b></td>";
|
---|
| 164 | echo "<td width=\"15%\" bgcolor=\"$bgcolor1\"><b>"._STATO."</b></td>";
|
---|
| 165 | if($tipo_cons==3)
|
---|
| 166 | echo "<td bgcolor=\"$bgcolor1\"><b>"._CONF."</b></td>";
|
---|
| 167 | echo "<td></td></tr>";
|
---|
| 168 | ###############
|
---|
| 169 |
|
---|
[2] | 170 | # if ($num_coll>0)
|
---|
| 171 | # $resmod = mysql_query("SELECT t1.id_collegio,t1.id_comune,t2.descrizione as descr,t1.id_cons, t3.descrizione, t4.chiusa,t4.id_conf FROM ".$prefix."_ele_comu_collegi as t1, ".$prefix."_ele_collegi as t2, ".$prefix."_ele_comuni as t3, ".$prefix."_ele_cons_comune as t4 where t1.id_cons_gen='$id_cons_gen' and t1.id_collegio=t2.id_collegio and t1.id_comune=t3.id_comune and t1.id_comune=t4.id_comune and t2.id_cons_gen=t4.id_cons_gen order by t2.descrizione, t3.descrizione", $dbi);
|
---|
| 172 | # else
|
---|
| 173 | $resmod = mysql_query("SELECT '',t1.id_comune,'',t1.id_cons, t2.descrizione, t1.chiusa, t1.id_conf FROM ".$prefix."_ele_cons_comune as t1, ".$prefix."_ele_comuni as t2 where t1.id_cons_gen='$id_cons_gen' and t1.id_comune=t2.id_comune order by t2.descrizione", $dbi);
|
---|
| 174 | while (list($id_collegio,$id_comune2,$descr_coll,$id_cons_comu,$descr_comu, $chiusa,$id_conf) = mysql_fetch_row($resmod)){ //elenco dei modelli inseriti
|
---|
| 175 | $resconf = mysql_query("SELECT descrizione FROM ".$prefix."_ele_conf where id_conf='$id_conf'", $dbi);
|
---|
| 176 | list($descr_conf) = mysql_fetch_row($resconf);
|
---|
| 177 | $i++;
|
---|
[77] | 178 | $bgcolor1=($bgcolor1==$_SESSION['bgcolor1'])?$_SESSION['bgcolor2']:$_SESSION['bgcolor1'];
|
---|
| 179 | echo "<tr><td colspan=\"5\">";
|
---|
[2] | 180 | echo "<form name=\"modello$i\" action=\"admin.php\">"
|
---|
| 181 | ."<input type=\"hidden\" name=\"op\" value=\"associazioni\">";
|
---|
| 182 | // echo "<input type=\"hidden\" name=\"do\" value=\"update\">";
|
---|
[77] | 183 | # echo "<input type=\"hidden\" name=\"id_collegio\" value=\"$id_collegio\">";
|
---|
[2] | 184 | echo "<input type=\"hidden\" name=\"idcomune\" value=\"$id_comune2\">";
|
---|
| 185 | echo "<input type=\"hidden\" name=\"id_cons_comu\" value=\"$id_cons_comu\">";
|
---|
| 186 | echo "<input type=\"hidden\" name=\"id_cons_gen\" value=\"$id_cons_gen\">";
|
---|
| 187 | echo "<input type=\"hidden\" name=\"desc\" value=\"$descr_cons\">";
|
---|
| 188 | echo "<input type=\"hidden\" name=\"chiusa\" value=\"$chiusa\">";
|
---|
[77] | 189 | echo "<table width=\"100%\"><tr align=\"center\" bgcolor=\"$bgcolor1\">";
|
---|
| 190 | echo "<td width=\"25%\"><b>$descr_coll</b></td>";
|
---|
| 191 | echo "<td width=\"25%\"><b>$descr_comu</b></td>";
|
---|
[2] | 192 | $stato['0']=_ATTIVA;
|
---|
| 193 | $stato['1']=_CHIUSA;
|
---|
| 194 | $stato['2']=_NULLA;
|
---|
[77] | 195 | echo "<td width=\"15%\"><b>".$stato[$chiusa]."</b></td>";
|
---|
[2] | 196 | if($tipo_cons==3)
|
---|
[77] | 197 | echo "<td width=\"25%\"><input type=\"hidden\" name=\"id_conf\" value=\"$id_conf\"><b>".$descr_conf."</b></td>";
|
---|
| 198 | echo "<td width=\"10\"><input type=\"hidden\" name=\"ok\" value=0><input type=\"submit\" name=\"edit$i\" value=\""._EDIT."\">"
|
---|
| 199 | ."</td></tr></table></form></td></tr>\n";
|
---|
[2] | 200 | }
|
---|
[77] | 201 | echo "</table></td></tr>";
|
---|
| 202 | echo "</table></td></tr>";
|
---|
| 203 | CloseTable();
|
---|
| 204 | echo "</div>";
|
---|
[2] | 205 | }
|
---|
| 206 |
|
---|
| 207 | function associazioni($ok, $do,$descr_comu,$id_cons_comu,$id_collegio,$id_comune,$chiusa,$id_conf) {
|
---|
[77] | 208 | global $admin, $bgcolor1, $bgcolor2, $prefix, $dbi, $descr_cons,$genere,$id_cons_gen,$idcomunenew;
|
---|
| 209 | $delcons=0;
|
---|
[2] | 210 | if ($do !="" and $id_cons_gen>0 and $idcomunenew>0) {
|
---|
[77] | 211 | $rescomu = mysql_query("SELECT id_cons from ".$prefix."_ele_cons_comune where id_cons_gen='$id_cons_gen' and id_comune='$idcomunenew'", $dbi);
|
---|
[2] | 212 | $max = mysql_num_rows($rescomu); //esiste autorizzazione?
|
---|
[77] | 213 | list($delcons)=mysql_fetch_row($rescomu);
|
---|
| 214 | if (!$max){ //se no la inserisce
|
---|
[2] | 215 | $result = mysql_query("insert into ".$prefix."_ele_cons_comune (chiusa,id_comune,id_cons_gen,id_conf) values ('0','$idcomunenew','$id_cons_gen','$id_conf')", $dbi) || die("<br><br>Errore di inserimento: ".mysql_error());
|
---|
| 216 | $rescomu = mysql_query("SELECT id_cons from ".$prefix."_ele_cons_comune where id_cons_gen='$id_cons_gen' and id_comune='$idcomunenew'", $dbi);
|
---|
| 217 | }
|
---|
| 218 | list($id_cons_comu)=mysql_fetch_row($rescomu);
|
---|
| 219 | if ($do == "update") {
|
---|
| 220 | if ($idcomunenew>0) $newid=", id_comune = $idcomunenew ";
|
---|
| 221 | else $newid='';
|
---|
| 222 | $result = mysql_query("update ".$prefix."_ele_comu_collegi set id_collegio= '$id_collegio' $newid where id_comune='$id_comune' and id_cons_gen='$id_cons_gen'", $dbi) || die(mysql_error());
|
---|
| 223 | if (!$result) return;
|
---|
| 224 | $result = mysql_query("update ".$prefix."_ele_cons_comune set id_conf='$id_conf', chiusa= '$chiusa' where id_comune='$id_comune' and id_cons_gen='$id_cons_gen'", $dbi)|| die(mysql_error());
|
---|
| 225 | Header("Location: admin.php?op=associazioni&id_cons_gen=$id_cons_gen");
|
---|
| 226 | }elseif ($do == "add") {
|
---|
| 227 | if ($id_collegio)
|
---|
| 228 | $result = mysql_query("insert into ".$prefix."_ele_comu_collegi (id_collegio,id_cons,id_comune,id_cons_gen) values ('$id_collegio','$id_cons_comu','$idcomunenew','$id_cons_gen')", $dbi) || die("<br><br>Errore di inserimento: ".mysql_error());
|
---|
| 229 | Header("Location: admin.php?op=associazioni&id_cons_gen=$id_cons_gen");
|
---|
[77] | 230 | }elseif ($do == "delete" and $delcons>0) {
|
---|
| 231 | $idcns=$delcons;
|
---|
| 232 | $res_del = mysql_query("delete from ".$prefix."_ele_voti_ref where id_cons=$idcns" ,$dbi);
|
---|
| 233 | $res_del = mysql_query("delete from ".$prefix."_ele_voti_candidati where id_cons=$idcns" ,$dbi);
|
---|
| 234 | $res_del = mysql_query("delete from ".$prefix."_ele_voti_lista where id_cons=$idcns" ,$dbi);
|
---|
| 235 | $res_del = mysql_query("delete from ".$prefix."_ele_voti_gruppo where id_cons=$idcns" ,$dbi);
|
---|
| 236 | $res_del = mysql_query("delete from ".$prefix."_ele_voti_parziale where id_cons=$idcns" ,$dbi);
|
---|
| 237 | $res_del = mysql_query("delete from ".$prefix."_ele_candidati where id_cons=$idcns" ,$dbi);
|
---|
| 238 | $res_del = mysql_query("delete from ".$prefix."_ele_lista where id_cons=$idcns" ,$dbi);
|
---|
| 239 | $res_del = mysql_query("delete from ".$prefix."_ele_gruppo where id_cons=$idcns" ,$dbi);
|
---|
| 240 | $res_del = mysql_query("delete from ".$prefix."_ele_sezioni where id_cons=$idcns" ,$dbi);
|
---|
| 241 | $res_del = mysql_query("delete from ".$prefix."_ele_cons_comune where id_cons=$idcns" ,$dbi);
|
---|
| 242 |
|
---|
| 243 | Header("Location: admin.php?op=associazioni&id_cons_gen=$id_cons_gen");
|
---|
[2] | 244 | }
|
---|
| 245 | }
|
---|
| 246 | }
|
---|
[77] | 247 |
|
---|
| 248 |
|
---|
| 249 |
|
---|
[2] | 250 |
|
---|
[77] | 251 | # die ("do:$do - id_cons:$id_cons_comu - idcomune:$id_comune - new: $idcomunenew");
|
---|
[2] | 252 |
|
---|
| 253 | //****************************
|
---|
| 254 | // switch
|
---|
| 255 | //****************************
|
---|
| 256 | if ($op=="associazioni"){
|
---|
| 257 | associazioni($ok, $do,$descr_comu,$id_cons_comu,$id_collegio,$idcomune,$chiusa,$id_conf);
|
---|
| 258 | }
|
---|
| 259 | ele();
|
---|
| 260 | if (isset($_GET['id_cons_gen'])) $id_cons_gen=intval($_GET['id_cons_gen']); else $id_cons_gen='0';
|
---|
| 261 | all();
|
---|
| 262 | include("footer.php");
|
---|
| 263 |
|
---|
| 264 | ?>
|
---|
| 265 |
|
---|