Last change
on this file since 360 was 129, checked in by eol, 13 years ago |
Piccole varianti: aggiunto file gruppo di lavoro, blocco per inserire feed di altri siti e piccole variazioni
|
File size:
1.3 KB
|
Line | |
---|
1 | <?php
|
---|
2 |
|
---|
3 | /************************************************************************/
|
---|
4 | /* Eleonline - Raccolta e diffusione dei dati elettorali */
|
---|
5 | /* by Luciano Apolito & Roberto Gigli */
|
---|
6 | /* http://www.eleonline.it */
|
---|
7 | /* info@eleonline.it luciano@aniene.net rgigli@libero.it */
|
---|
8 | /************************************************************************/
|
---|
9 |
|
---|
10 | if (!defined('MODULE_FILE')) {
|
---|
11 | die ("You can't access this file directly...");
|
---|
12 | }
|
---|
13 |
|
---|
14 | //$blocco=0;
|
---|
15 |
|
---|
16 | # citta' di Guidonia Montecelio
|
---|
17 |
|
---|
18 | global $id_comune;
|
---|
19 | if($id_comune=="58047") $filename="guidonia.html";
|
---|
20 | else $filename="gruppo.html"; # per altre città inserire nella variabile $filename il nome del file html messo in pagine/
|
---|
21 |
|
---|
22 | //$filename="$nomefile.hml";
|
---|
23 |
|
---|
24 | if (!isset($filename)) { Header("Location: index.php"); }
|
---|
25 |
|
---|
26 | // verifica se la pagina e' un html
|
---|
27 | if(substr($filename,-4)!=".htm" && substr($filename,-5)!=".html"){
|
---|
28 | echo "Autorizzazione negata...";
|
---|
29 | echo "<hr>"._GOBACK."";
|
---|
30 |
|
---|
31 | }elseif ( substr($filename,0,1)!="." && substr($filename,0,4)!="http" ){
|
---|
32 | //echo substr($file,-4);
|
---|
33 | include ("pagine/$filename");
|
---|
34 | echo "<hr />"._GOBACK."";
|
---|
35 |
|
---|
36 | }else {
|
---|
37 | echo "Autorizzazione negata...";
|
---|
38 | echo "<hr>"._GOBACK."";
|
---|
39 |
|
---|
40 | }
|
---|
41 |
|
---|
42 |
|
---|
43 |
|
---|
44 | ?>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.