[2] | 1 | <?php
|
---|
| 2 | /************************************************************************/
|
---|
| 3 | /* Eleonline - Raccolta e diffusione dei dati elettorali */
|
---|
| 4 | /* by Roberto Gigli & Luciano Apolito */
|
---|
| 5 | /* http://www.eleonline.it */
|
---|
| 6 | /* info@eleonline.it luciano@aniene.net rgigli@libero.it */
|
---|
| 7 | /************************************************************************/
|
---|
| 8 | /* Modulo gruppo */
|
---|
| 9 | /* Amministrazione */
|
---|
| 10 | /************************************************************************/
|
---|
| 11 | if (!defined('ADMIN_FILE')) {
|
---|
| 12 | die ("You can't access this file directly...");
|
---|
| 13 | }
|
---|
| 14 |
|
---|
| 15 | // Offset - visualizza il numero di elementi per pagina
|
---|
| 16 | $offset=5;
|
---|
| 17 |
|
---|
| 18 | $aid=$_SESSION['aid'];
|
---|
| 19 | $dbi=$_SESSION['dbi'];
|
---|
| 20 | $prefix=$_SESSION['prefix'];
|
---|
| 21 | $currentlang=$_SESSION['lang'];
|
---|
| 22 | $param=strtolower($_SERVER['REQUEST_METHOD']) == 'get' ? $_GET : $_POST;
|
---|
| 23 | $id_cons_gen=intval($param['id_cons_gen']);
|
---|
| 24 | $perms=ChiSei($id_cons_gen);
|
---|
| 25 | if ($perms<32 or !$id_cons_gen) die("Non hai i permessi per inserire dati, o non hai scelto la consultazione!");
|
---|
| 26 | $id_comune=$_SESSION['id_comune'];
|
---|
| 27 | $res = mysql_query("SELECT t1.tipo_cons,t2.id_cons FROM ".$prefix."_ele_consultazione as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_cons_gen=t2.id_cons_gen and t2.id_cons_gen='$id_cons_gen' and t2.id_comune='$id_comune' " , $dbi);
|
---|
| 28 | list($tipo_cons,$id_cons) = mysql_fetch_row($res);
|
---|
| 29 |
|
---|
| 30 | include("modules/Elezioni/funzionidata.php");
|
---|
| 31 | include("modules/Elezioni/ele.php");
|
---|
| 32 |
|
---|
| 33 | if (isset($param['do'])) get_magic_quotes_gpc() ? $do=$param['do']:$do=addslashes($param['do']); else $do='';
|
---|
| 34 | if (isset($param['min'])) $min=intval($param['min']); else $min=0;
|
---|
| 35 | if (isset($param['id_sede'])) $id_sede=intval($param['id_sede']); else $id_sede='';
|
---|
| 36 | if (isset($param['ok'])) get_magic_quotes_gpc() ? $ok=$param['ok']:$ok=addslashes($param['ok']); else $ok='';
|
---|
| 37 | if (isset($param['id_circ'])) {$id_circ=intval($param['id_circ']); $_SESSION['id_circ']=$id_circ;} else
|
---|
| 38 | if (isset($_SESSION['id_circ'])) $id_circ=intval($_SESSION['id_circ']); else $id_circ='';
|
---|
| 39 | if (isset($param['id_gruppo'])) $id_gruppo=intval($param['id_gruppo']); else $id_gruppo='';
|
---|
| 40 | if (isset($param['num_gruppo'])) $num_gruppo=intval($param['num_gruppo']); else $num_gruppo='';
|
---|
| 41 | if (isset($param['descr_gruppo'])) get_magic_quotes_gpc() ? $descr_gruppo=$param['descr_gruppo']:$descr_gruppo=addslashes($param['descr_gruppo']); else $descr_gruppo='';
|
---|
| 42 | if (isset($param['simbolo'])) get_magic_quotes_gpc() ? $simbolo=$param['simbolo']:$simbolo=addslashes($param['simbolo']); else $simbolo='';
|
---|
| 43 | /******************************************************/
|
---|
| 44 | /*Funzione di visualizzazione globale */
|
---|
| 45 | /*****************************************************/
|
---|
| 46 | function all() {
|
---|
| 47 | global $tipo_cons,$param,$currentlang, $bgcolor1, $bgcolor2, $prefix, $dbi, $offset, $min, $id_cons,$id_cons_gen,$id_comune,$id_circ,$do,$id_gruppo;
|
---|
| 48 | $res = mysql_query("SELECT circo FROM ".$prefix."_ele_tipo where tipo_cons='$tipo_cons' and lingua='$currentlang'", $dbi);
|
---|
| 49 | list($cons_circ)= mysql_fetch_row($res);
|
---|
| 50 | if($cons_circ)
|
---|
| 51 | {
|
---|
| 52 | echo "<form name=\"circo\" action=\"admin.php\" method=\"post\">";
|
---|
| 53 | echo "<br><table border=\"1\" width=\"50%\" ><tr bgcolor=\"$bgcolor1\"><td>"._SCEGLI_CIRCO.": </td>";
|
---|
| 54 | $res = mysql_query("SELECT * FROM ".$prefix."_ele_circoscrizione where id_cons='$id_cons'", $dbi);
|
---|
| 55 | echo "<input type=\"hidden\" name=\"pag\" value=\"admin.php?op=gruppo&id_cons_gen=$id_cons_gen&id_circ=\">";
|
---|
| 56 | echo "<td><select name=\"id_circ\" onChange=\"top.location.href=this.form.pag.value+this.form.id_circ.options[this.form.id_circ.selectedIndex].value;return false\">";
|
---|
| 57 | echo "<option value=\"\">";
|
---|
| 58 | while($arr=mysql_fetch_array($res,3)){
|
---|
| 59 | if (!$id_circ) $id_circ=$arr['id_circ'];
|
---|
| 60 | $sel= ($arr['id_circ'] == $id_circ) ? "selected":"";
|
---|
| 61 | echo "<option value=\"".$arr['id_circ']."\" $sel>".$arr['descrizione'];
|
---|
| 62 | }
|
---|
| 63 | echo "</select></td></tr></table></form>";
|
---|
| 64 | }
|
---|
| 65 | echo "<center><font class=\"title\"><b>"._GRUPPO."</b></font><br><table border=\"0\" width=\"100%\"><tr bgcolor=\"$bgcolor1\">"
|
---|
| 66 | ."<td align=\"center\"width=\"5%\"><b>"._NUM."</b></td>"
|
---|
| 67 | ."<td align=\"center\"><b>"._DESCR."</b></td>"
|
---|
[86] | 68 | ."<td align=\"center\"width=\"5%\"><b>"._SIMBOLO."</b></td>";
|
---|
| 69 | if ($tipo_cons!=2)
|
---|
| 70 | echo "<td align=\"center\"width=\"5%\"><b>"._PROGRAM."</b></td>";
|
---|
| 71 | echo "<td align=\"center\"><b>"._FUNZIONI."</b></td></tr>";
|
---|
[2] | 72 | //-----------------------visualizza riga superiore per inserimento -
|
---|
[14] | 73 | $circo= $cons_circ==1 ? "and id_circ='$id_circ'":"";
|
---|
| 74 | $res = mysql_query("SELECT * FROM ".$prefix."_ele_gruppo where id_cons='$id_cons' $circo ", $dbi);
|
---|
[2] | 75 | $max = mysql_num_rows($res);
|
---|
| 76 | $nuovo_gruppo=$max+1;
|
---|
| 77 | echo "<form name=\"gruppo2\" enctype=\"multipart/form-data\" action=\"admin.php\" method=\"post\">"
|
---|
| 78 | ."<input type=\"hidden\" name=\"op\" value=\"gruppo\">";
|
---|
| 79 | if ($do=='modify') {
|
---|
[14] | 80 | $resl = mysql_query("SELECT * FROM ".$prefix."_ele_gruppo where id_gruppo='$id_gruppo'", $dbi);
|
---|
[2] | 81 | $gru=mysql_fetch_array($resl);
|
---|
| 82 | $nuovo_gruppo=$gru['num_gruppo'];
|
---|
| 83 | echo "<input type=\"hidden\" name=\"do\" value=\"update\">";
|
---|
| 84 | }else{
|
---|
| 85 | $gru['id_gruppo']='';$gru['descrizione']='';
|
---|
| 86 | echo "<input type=\"hidden\" name=\"do\" value=\"add\">";
|
---|
[14] | 87 | }
|
---|
| 88 |
|
---|
[2] | 89 | //-----------------------fine visualizza riga superiore per inserimento -
|
---|
| 90 | echo "<input type=\"hidden\" name=\"id_cons_gen\" value=\"$id_cons_gen\">"
|
---|
| 91 | ."<input type=\"hidden\" name=\"id_gruppo\" value=\"".$gru['id_gruppo']."\">"
|
---|
| 92 | ."<tr><td><input type=\"text\" name=\"num_gruppo\" value=\"$nuovo_gruppo\" size=\"5\"></td>"
|
---|
[86] | 93 | ."<td><input type=\"text\" name=\"descr_gruppo\" value=\"".$gru['descrizione']."\"></td>";
|
---|
| 94 | echo "<td><input type=\"file\" name=\"stemma\" size=\"5\"></td>"; //file=$gru[simbolo]
|
---|
| 95 | if ($tipo_cons!=2)
|
---|
| 96 | echo "<td><input type=\"file\" name=\"programma\" size=\"5\"></td>";
|
---|
[2] | 97 | echo "<input type=\"hidden\" name=\"min\" value=\"$min\">";
|
---|
| 98 | echo "<input type=\"hidden\" name=\"id_comune\" value=\"$id_comune\">";
|
---|
| 99 | echo "<input type=\"hidden\" name=\"id_circ\" value=\"$id_circ\">";
|
---|
| 100 | echo "<input type=\"hidden\" name=\"id_cons\" value=\"$id_cons\">"
|
---|
| 101 | ."<input type=\"hidden\" name=\"id_cons_gen\" value=\"$id_cons_gen\">"
|
---|
| 102 | ."<input type=\"hidden\" name=\"min\" value=\"$min\">";
|
---|
| 103 | if ($do=='modify')
|
---|
| 104 | echo "<td><input type=\"submit\" name=\"add\" value=\""._MODIFY."\"></td>";
|
---|
| 105 | else
|
---|
| 106 | echo "<td><input type=\"submit\" name=\"add\" value=\""._ADD."\"></td>";
|
---|
| 107 | echo "</form>";
|
---|
| 108 |
|
---|
| 109 |
|
---|
| 110 |
|
---|
| 111 | $res = mysql_query("SELECT * FROM ".$prefix."_ele_gruppo where id_cons='$id_cons' $circo ", $dbi);
|
---|
| 112 | $max = mysql_num_rows($res);
|
---|
| 113 | $result = mysql_query("select * from ".$prefix."_ele_gruppo where id_cons='$id_cons' $circo ORDER BY num_gruppo LIMIT $min,$offset", $dbi);
|
---|
[86] | 114 | while(list($id_cons2,$id_gruppo,$num_gruppo, $descr_gruppo, $simbolo,,, $prognome) = mysql_fetch_row($result)) {
|
---|
[2] | 115 | $restemp = mysql_query("select count(0) from ".$prefix."_ele_lista where id_gruppo='$id_gruppo'", $dbi);
|
---|
| 116 | list($numtemp)=mysql_fetch_row($restemp);
|
---|
| 117 | $bgcolor1=($bgcolor1==$_SESSION['bgcolor1'])?$_SESSION['bgcolor2']:$_SESSION['bgcolor1'];
|
---|
| 118 | if (!$simbolo) $simbolo="nulla.jpg";
|
---|
| 119 | echo "<tr bgcolor=\"$bgcolor1\"><td align=\"center\"><b>$num_gruppo</b></td>"
|
---|
| 120 | ."<td align=\"left\"><b>$descr_gruppo</b></td>";
|
---|
| 121 | echo "<td align=\"center\"><b>
|
---|
| 122 | <img src=\"admin.php?op=foto&id_gruppo=$id_gruppo\" width=\"50\" heigth=\"50\"></b></td>";
|
---|
[86] | 123 | if ($tipo_cons!=2)
|
---|
| 124 | echo "<td>$prognome</td>";
|
---|
| 125 | echo "<td align=\"center\" nowrap>";
|
---|
| 126 | echo "[<a
|
---|
[2] | 127 | href=\"admin.php?op=gruppo&do=modify&id_gruppo=$id_gruppo&id_cons_gen=$id_cons_gen&id_circ=$id_circ&min=$min\"><img src=\"modules/Elezioni/images/edit.gif\"
|
---|
| 128 | border=\"0\" align=\"center\"> "._EDIT."</a>]";
|
---|
| 129 | if (!$numtemp)
|
---|
| 130 | echo "[<a href=\"admin.php?op=gruppo&do=delete&id_gruppo=$id_gruppo&id_cons_gen=$id_cons_gen&id_circ=$id_circ&descr_gruppo=$descr_gruppo&min=$min\">"._DELETE." <img src=\"modules/Elezioni/images/delete.gif\" border=\"0\" align=\"center\"></a>]";
|
---|
| 131 | else
|
---|
[86] | 132 | echo " ["._DELETE." <img src=\"modules/Elezioni/images/delete.gif\" border=\"0\" align=\"center\"></a>]";
|
---|
[2] | 133 | echo "</td></tr>";
|
---|
| 134 | }
|
---|
| 135 | echo "</table></center>";
|
---|
| 136 |
|
---|
| 137 | // #'Pagina precedente' e 'Pagina Successiva'
|
---|
| 138 |
|
---|
| 139 | echo"<table align=\"center\" width=\"100%\" ><tr>";
|
---|
| 140 | $prev=$min-$offset;
|
---|
| 141 | if ($prev>=0) {
|
---|
| 142 | echo "<td colspan=\"5\" align=\"center\" bgcolor=\"$bgcolor1\"><a href=\"admin.php?op=gruppo&id_gruppo=$id_gruppo&id_cons_gen=$id_cons_gen&id_comune=$id_comune&min=$prev\">";
|
---|
| 143 | echo "<b>$offset "._PREV_MATCH."</b></a></td>";
|
---|
| 144 | }
|
---|
| 145 |
|
---|
| 146 | $next=$min+$offset;
|
---|
| 147 | if ($next>=($offset-1)) {
|
---|
| 148 | if($next>=$max) $next = $max;
|
---|
| 149 | else {
|
---|
| 150 | echo "<td colspan=\"5\" align=\"center\" bgcolor=\"$bgcolor1\"><a href=\"admin.php?op=gruppo&id_gruppo=$id_gruppo&id_cons_gen=$id_cons_gen&min=$next\">";
|
---|
| 151 | echo "<b>$offset "._NEXT_MATCH."</b></a></td>";
|
---|
| 152 | }
|
---|
| 153 | }
|
---|
| 154 | echo "</tr></table><br>";
|
---|
| 155 |
|
---|
| 156 | }
|
---|
| 157 |
|
---|
| 158 | //***********************************************************
|
---|
| 159 | //Funzione di inserimento e gestione dei gruppi
|
---|
| 160 | //************************************************************
|
---|
| 161 |
|
---|
| 162 | function gruppo($ok, $do,$id_gruppo,$num_gruppo,$descr_gruppo, $simbolo,$id_circ) {
|
---|
| 163 | global $prefix, $dbi, $id_cons,$simbolo2,$genere,$id_cons_gen,$id_comune,$min;
|
---|
| 164 | $aid=$_SESSION['aid'];
|
---|
| 165 | $perms=ChiSei($id_cons_gen);
|
---|
| 166 | if ($perms >16) {
|
---|
| 167 | if ($do == "delete") {
|
---|
| 168 | if ($ok !="1") {
|
---|
| 169 | ele();
|
---|
| 170 | echo "<center><br><br>"._DOMCANCELLA." "._GRUPPO." $descr_gruppo ?<br>";
|
---|
[87] | 171 | echo "[ <a href=\"admin.php?op=gruppo&id_cons_gen=$id_cons_gen&id_circ=$id_circ\">"._NO."</a> ] - [<a href=\"admin.php?op=gruppo&do=delete&id_gruppo=$id_gruppo&id_cons_gen=$id_cons_gen&id_comune=$id_comune&min=$min&ok=1\">"._YES."</a> ]";exit;
|
---|
[2] | 172 | }else{
|
---|
| 173 | $result = mysql_query("delete from ".$prefix."_ele_gruppo where id_gruppo='$id_gruppo'", $dbi);
|
---|
| 174 | if (!$result) return;
|
---|
| 175 | Header("Location: admin.php?op=gruppo&id_cons_gen=$id_cons_gen&id_circ=$id_circ&min=$min");
|
---|
| 176 | }
|
---|
| 177 | } elseif ($do == "add") {
|
---|
| 178 | if ($descr_gruppo) {
|
---|
| 179 | $stemmablob='';
|
---|
| 180 | $stemmanome='';
|
---|
| 181 | $STEMM=$_FILES['stemma'];
|
---|
| 182 | $filestemma=$STEMM['tmp_name'];
|
---|
| 183 | $nomestemma=$STEMM['name'];
|
---|
| 184 | if ($filestemma){
|
---|
| 185 | $fdstemma = fopen ("$filestemma", "rb");
|
---|
| 186 | $stemmacontents = fread ($fdstemma, filesize ("$filestemma"));
|
---|
| 187 | fclose ($fdstemma);
|
---|
| 188 | $stemmablob=addslashes($stemmacontents);
|
---|
| 189 | $stemmanome=addslashes($nomestemma);
|
---|
| 190 | }
|
---|
[86] | 191 |
|
---|
| 192 | $progblob='';
|
---|
| 193 | $prognome='';
|
---|
| 194 | $PROG=$_FILES['programma'];
|
---|
| 195 | $fileprog=$PROG['tmp_name'];
|
---|
| 196 | $nomeprog=$PROG['name'];
|
---|
| 197 | if ($fileprog){
|
---|
| 198 | $fdprog = fopen ("$fileprog", "rb");
|
---|
| 199 | $progcontents = fread ($fdprog, filesize ("$fileprog"));
|
---|
| 200 | fclose ($fdprog);
|
---|
| 201 | $progblob=addslashes($progcontents);
|
---|
| 202 | $prognome=addslashes($nomeprog );
|
---|
| 203 | }
|
---|
| 204 | $result = mysql_query("insert into ".$prefix."_ele_gruppo (id_cons,id_gruppo,num_gruppo,descrizione,simbolo,stemma,id_circ,prognome,programma) values ('$id_cons','$id_gruppo','$num_gruppo','$descr_gruppo','$stemmanome','$stemmablob','$id_circ','$prognome','$progblob')", $dbi);
|
---|
[2] | 205 | if (!$result) return;
|
---|
| 206 | Header("Location: admin.php?op=gruppo&id_cons_gen=$id_cons_gen&id_circ=$id_circ&min=$min");
|
---|
| 207 | } else {
|
---|
| 208 | ele();
|
---|
| 209 | OpenTable();
|
---|
| 210 | echo "<center>"._GESTIONE." "._GRUPPO." ";
|
---|
[87] | 211 | echo "<br><br><a href=\"admin.php?op=gruppo&id_cons_gen=$id_cons_gen&min=$min\">"._IMM." "._GRUPPO."</a></center>";
|
---|
[2] | 212 | CloseTable();
|
---|
| 213 | }
|
---|
| 214 | } elseif ($do == "update") {
|
---|
[86] | 215 | $progblob='';
|
---|
| 216 | $prognome='';
|
---|
| 217 | $PROG=$_FILES['programma'];
|
---|
| 218 | $fileprog=$PROG['tmp_name'];
|
---|
| 219 | $nomeprog=$PROG['name'];
|
---|
| 220 | if ($fileprog){
|
---|
| 221 | $fdprog = fopen ("$fileprog", "rb");
|
---|
| 222 | $progcontents = fread ($fdprog, filesize ("$fileprog"));
|
---|
| 223 | fclose ($fdprog);
|
---|
| 224 | $progblob=addslashes($progcontents);
|
---|
| 225 | $prognome=addslashes($nomeprog );
|
---|
| 226 | $cond=", prognome='$prognome', programma='$progblob'";
|
---|
| 227 | } else {$cond='';}
|
---|
| 228 |
|
---|
| 229 |
|
---|
| 230 |
|
---|
[2] | 231 | $stemmablob='';
|
---|
| 232 | $stemmanome='';
|
---|
| 233 | $STEMM=$_FILES['stemma'];
|
---|
| 234 | $filestemma=$STEMM['tmp_name'];
|
---|
| 235 | $nomestemma=$STEMM['name'];
|
---|
| 236 | if ($filestemma){
|
---|
| 237 | $fdstemma = fopen ("$filestemma", "rb");
|
---|
| 238 | $stemmacontents = fread ($fdstemma, filesize ("$filestemma"));
|
---|
| 239 | fclose ($fdstemma);
|
---|
| 240 | $stemmablob=addslashes($stemmacontents);
|
---|
| 241 | $stemmanome=addslashes($nomestemma);
|
---|
[86] | 242 | $cond2=", simbolo='$stemmanome', stemma='$stemmablob'";
|
---|
| 243 | } else {$cond2='';}
|
---|
| 244 | $result = mysql_query("update ".$prefix."_ele_gruppo set num_gruppo='$num_gruppo' , descrizione='$descr_gruppo' $cond $cond2 where id_gruppo='$id_gruppo' ", $dbi) || die("Errore di aggiornamento dei dati!".mysql_error());
|
---|
[2] | 245 | Header("Location: admin.php?op=gruppo&id_cons_gen=$id_cons_gen&id_circ=$id_circ&min=$min");
|
---|
| 246 | }
|
---|
| 247 |
|
---|
| 248 | }
|
---|
| 249 | }
|
---|
| 250 |
|
---|
| 251 | if ($do and $do!="modify")
|
---|
| 252 | gruppo($ok, $do,$id_gruppo,$num_gruppo,$descr_gruppo,$simbolo, $id_circ);
|
---|
| 253 | ele();
|
---|
| 254 | all();
|
---|
| 255 | echo"</td></tr></table>";
|
---|
| 256 | include("footer.php");
|
---|
| 257 |
|
---|
| 258 |
|
---|
| 259 |
|
---|
| 260 |
|
---|
| 261 | ?>
|
---|