source: trunk/admin/modules/Elezioni/ele_configurazione.php@ 2

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

importo il progetto

File size: 10.6 KB
Line 
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/************************************************************************/
11if (!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=$param['id_cons_gen'];
24$perms=ChiSei($id_cons_gen);
25if ($perms<32) die("Non hai i permessi per inserire dati, o non hai scelto la consultazione!");
26
27$id_comune=$_SESSION['id_comune'];
28$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);
29list($tipo_cons,$id_cons) = mysql_fetch_row($res);
30
31include("modules/Elezioni/funzionidata.php");
32include("modules/Elezioni/ele.php");
33
34if (isset($param['do'])) get_magic_quotes_gpc() ? $do=$param['do']:$do=addslashes($param['do']); else $do='';
35if (isset($param['min'])) $min=intval($param['min']); else $min=0;
36if (isset($param['ok'])) get_magic_quotes_gpc() ? $ok=$param['ok']:$ok=addslashes($param['ok']); else $ok='';
37if (isset($param['blocco'])) get_magic_quotes_gpc() ?
38$blocco=$param['blocco']:$blocco=addslashes($param['blocco']); else $blocco='';
39if (isset($param['tema2'])) get_magic_quotes_gpc() ? $tema2=$param['tema2']:$tema2=addslashes($param['tema2']); else $tema2='';
40if (isset($param['multicomune'])) get_magic_quotes_gpc() ? $multicomune=$param['multicomune']:$multicomune=addslashes($param['multicomune']); else $multicomune='';
41if (isset($param['fileout'])) get_magic_quotes_gpc() ? $fileout=$param['fileout']:$fileout=addslashes($param['fileout']); else $fileout='';
42if (isset($param['prefix2'])) get_magic_quotes_gpc() ? $prefix2=$param['prefix2']:$prefix2=addslashes($param['prefix2']); else $prefix2='';
43if (isset($param['adminmail'])) get_magic_quotes_gpc() ? $adminmail=$param['adminmail']:$adminmail=addslashes($param['adminmail']); else $adminmail='';
44if (isset($param['siteurl'])) get_magic_quotes_gpc() ? $siteurl=$param['siteurl']:$siteurl=addslashes($param['siteurl']); else $siteurl='';
45if (isset($param['sitename'])) get_magic_quotes_gpc() ? $sitename=$param['sitename']:$sitename=addslashes($param['sitename']); else $sitename='';
46if (isset($param['siteistat'])) get_magic_quotes_gpc() ? $siteistat=$param['siteistat']:$siteistat=addslashes($param['siteistat']); else $siteistat='';
47if (isset($param['language2'])) get_magic_quotes_gpc() ? $language2=$param['language2']:$language2=addslashes($param['language2']); else $language2='';
48if (isset($param['flash2'])) get_magic_quotes_gpc() ? $flash2=$param['flash2']:$flash2=addslashes($param['flash2']); else $flash2='';
49if (isset($param['displayerrors'])) $displayerrors=intval($param['displayerrors']); else $displayerrors='0';
50
51if (isset($param['gkey'])) get_magic_quotes_gpc() ? $gkey=$param['gkey']:$gkey=addslashes($param['gkey']); else $gkey='';
52if (isset($param['ed_user'])) get_magic_quotes_gpc() ? $ed_user=$param['ed_user']:$ed_user=addslashes($param['ed_user']); else $ed_user='';
53if (isset($param['googlemaps'])) $googlemaps=intval($param['googlemaps']); else $googlemaps='0';
54if (isset($param['editor'])) $editor=intval($param['editor']); else $editor='0';
55if (isset($param['tema_on'])) $tema_on=intval($param['tema_on']); else $tema_on='0';
56/******************************************************/
57/*Funzione di visualizzazione globale */
58/*****************************************************/
59 function all() {
60 global $tipo_cons,$param,$currentlang, $bgcolor1, $bgcolor2, $prefix, $prefix2, $dbi, $offset, $min, $id_cons,$id_cons_gen,$id_comune,$do,$tema;
61 global $gkey,$ed_user,$googlemaps,$editor,$tema_on;
62// $restemp = mysql_query("select count(0) from ".$prefix."_ele_conf where tema='$tema'", $dbi);
63// list($numtemp)=mysql_fetch_row($restemp);
64
65
66
67 //-----------------------visualizza riga superiore per inserimento -
68 echo "<form name=\"gruppo2\" enctype=\"multipart/form-data\" method=\"post\" action=\"admin.php\">"
69 ."<input type=\"hidden\" name=\"op\" value=\"confconsiglio\">";
70 $resl = mysql_query("SELECT * FROM ".$prefix."_config", $dbi);
71 $gru=mysql_fetch_array($resl);
72 echo "<input type=\"hidden\" name=\"do\" value=\"update\">";
73 echo "<input type=\"hidden\" name=\"op\" value=\"configurazione\">";
74 echo "<br><table border=\"0\" width=\"100%\">";
75 echo "<tr bgcolor=\"$bgcolor2\"><td colspan=\"4\" align=\"center\"><b>"._CONFIGDEFAULT."</b></td></tr><tr><td>&nbsp</td></tr>";
76 echo "<tr><td>";
77 $sel= ($gru['tema_on']==1) ? "selected":"";
78 echo "<b>"._TEMAATTIVO."</b></td><td><select name=\"tema_on\"><option value=\"0\">No<option value=\"1\" $sel>Si</select></td>";
79 echo "<td>";
80 echo "<b>"._TEMA."</b></td>";
81 ##########
82 $resmod = mysql_query("SELECT tema FROM ".$prefix."_ele_temi order by tema", $dbi);
83
84 echo "<td><select name=\"tema2\"><option value=\"\">";
85 while (list($desc) = mysql_fetch_row($resmod)){
86 if (!$gru['tema']) $gru['tema']=$desc;
87 $sel= ($gru['tema']==$desc) ? "selected":"";
88 echo "<option value=\"".$desc."\" $sel>".$desc;
89 }
90 echo "</select></td></tr>";
91 $sel= ($gru['blocco']==1) ? "selected":"";
92 echo "<tr><td><b>"._BLOCCO."</b></td><td><select name=\"blocco\"><option value=\"0\">No<option value=\"1\" $sel>Si</select></td>";
93 $sel= ($gru['flash']==1) ? "selected":"";
94 echo "<td><b>"._FLASH."</b></td><td><select name=\"flash2\"><option value=\"0\">No<option value=\"1\" $sel>Si</select></td>";
95 echo "</tr>";
96 $sel= ($gru['multicomune']==1) ? "selected":"";
97 echo "<tr><td><b>"._MULTICOMUNE."</b></td><td><select name=\"multicomune\"><option value=\"0\">No<option value=\"1\" $sel>Si</select></td>";
98// echo "<td><b>"._FILEOUT."</b></td><td><input type=\"text\" name=\"fileout\">".$gru['fileout']."</td>";
99# echo "</tr>"
100# ."<tr><td><b>"._PREFIX."</b></td><td><input type=\"text\" name=\"prefix2\" value=\"".$gru['prefix']."\"></td>"
101 echo "<td><b>"._ADMINMAIL."</b></td><td><input type=\"text\" name=\"adminmail\" value=\"".$gru['adminmail']."\"></td></tr>"
102 ."<tr><td><b>"._SITEURL."</b></td><td><input type=\"text\" name=\"siteurl\" value=\"".$gru['siteurl']."\"></td>";
103 echo"<td><b>"._TESTATA."</b></td>";
104 echo "<td><input type=\"file\" name=\"sitelogo\" size=\"10\"></td></tr>";
105# echo"<td><b>"._SITENAME."</b></td><td><input type=\"text\" name=\"sitename\" value=\"".$gru['sitename']."\"></td></tr>";
106 $resmod = mysql_query("SELECT id_comune,descrizione FROM ".$prefix."_ele_comuni order by descrizione", $dbi);
107 echo "<tr><td><b>"._SITEISTAT."</b></td>";
108 echo "<td><select name=\"siteistat\"><option value=\"\">";
109 while (list($id_comune2,$desc) = mysql_fetch_row($resmod)){
110 if (!$gru['siteistat']) $gru['siteistat']=$id_comune2;
111 $sel= ($gru['siteistat']==$id_comune2) ? "selected":"";
112 echo "<option value=\"".$id_comune2."\" $sel>".$desc;
113 }
114 echo "</select></td>";
115
116##########
117 echo "<td><b>"._LANGUAGE."</b></td><td><input type=\"text\" name=\"language2\" value=\"".$gru['language']."\"></td></tr>";
118 $sel= ($gru['googlemaps']==1) ? "selected":"";
119 echo "<tr><td><b>"._GOOGLEMAPS."</b></td><td><select name=\"googlemaps\"><option value=\"0\">No<option value=\"1\" $sel>Si</select></td>";
120 echo "<td><b>"._GKEY."</b></td><td><input type=\"text\" name=\"gkey\" value=\"".$gru['gkey']."\"></td></tr>";
121 $sel= ($gru['editor']==1) ? "selected":"";
122 echo "<tr><td><b>"._EDITOR."</b></td><td><select name=\"editor\"><option value=\"0\">No<option value=\"1\" $sel>Si</select></td>";
123 echo "<td><b>"._EDUSER."</b></td>";
124 echo "<td><select name=\"ed_user\">";
125 $sel=$gru['ed_user']=='Admin'? "selected":"";
126 echo "<option value=\"Admin\" $sel>Admin";
127 $sel=$gru['ed_user']=='User'? "selected":"";
128 echo "<option value=\"User\" $sel>User";
129 $sel=$gru['ed_user']=='Eleonline'? "selected":"";
130 echo "<option value=\"Eleonline\" $sel>Eleonline</td></tr>";
131
132 echo "<tr>";
133
134# $sel= ($gru['displayerrors']==1) ? "selected":"";
135# echo "<td><b>"._DISPLAYERRORS."</b></td><td><select name=\"displayerrors\"><option value=\"0\">No<option value=\"1\" $sel>Si</select>";
136 echo "<input type=\"hidden\" name=\"id_cons_gen\" value=\"$id_cons_gen\">";
137 echo "<td><input type=\"submit\" name=\"add\" value=\""._MODIFY."\"></td>";
138 echo "</tr>";
139 echo "</table>";
140 echo "</form><br>";
141
142 }
143
144//***********************************************************
145//Funzione di inserimento e gestione dei gruppi
146//************************************************************
147
148function confcons() {
149
150 global $id_cons_gen, $prefix, $dbi, $blocco,$tema2,$multicomune,$fileout,$prefix2,$adminmail,$siteurl,$sitename,$siteistat,$language2,$flash2,$displayerrors;
151 global $gkey,$ed_user,$googlemaps,$editor,$tema_on;
152
153 $aid=$_SESSION['aid'];
154 $perms=ChiSei($id_cons_gen);
155 if ($perms >128) {
156 $stemmablob='';
157 $stemmanome='';
158 $STEMM=$_FILES['sitelogo'];
159 $filestemma=$STEMM['tmp_name'];
160 $nomestemma=$STEMM['name'];
161 $sqlset='';
162 if ($filestemma){
163 $fdstemma = fopen ("$filestemma", "rb");
164 $stemmacontents = fread ($fdstemma, filesize ("$filestemma"));
165 fclose ($fdstemma);
166 $stemmablob=addslashes($stemmacontents);
167 $stemmanome=addslashes($nomestemma);
168 }
169#displayerrors='$displayerrors',
170 $result = mysql_query("update ".$prefix."_config set testata='$stemmablob', nome_testata='$stemmanome', blocco='$blocco', multicomune='$multicomune', language='$language2', siteistat='$siteistat', adminmail='$adminmail', sitename='$sitename', site_logo='$site_logo', siteurl='$siteurl', flash='$flash2', tema='$tema2',gkey='$gkey',ed_user='$ed_user',googlemaps='$googlemaps',editor='$editor',tema_on='$tema_on' ", $dbi) || die("Errore di aggiornamento dei dati!".mysql_error());
171 if ($tema2=='facebook')
172 $_SESSION['tema']=$tema2;
173 else $_SESSION['tema']='default';
174 Header("Location: admin.php?id_cons_gen=$id_cons_gen");
175
176 }
177}
178
179if ($do and $do="modify")
180 confcons();
181
182ele();
183
184all();
185echo"</td></tr></table>";
186include("footer.php");
187
188
189
190
191?>
192
Note: See TracBrowser for help on using the repository browser.