-
Notifications
You must be signed in to change notification settings - Fork 0
/
.htSegnalazioneInterferenze.php
34 lines (29 loc) · 1.42 KB
/
.htSegnalazioneInterferenze.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
/**
* @package CRI Web Radio
* @author WizLab.it
* @version 20180521.005
*/
$FILENAME = "/filez/docs/SegnalazioneInterferenze.pdf";
$PAGE_TITLE = "Segnalazione Interferenze";
logMessage("Aperta pagina download Modulo Segnalazione Interferenze");
$PAGE_CONTENT = "<h1>Segnalazione Interferenze</h1>
<h3>Modulo per Segnalazione Interferenze</h3>
<div>Modulo segnalazione interferenze da compilare, stampare ed inviare ai recapiti dell'Ufficio Nazionale Radiocomunicazioni indicati sul modulo stesso.</div>
<div><a href='" . $FILENAME . "' target='_blank'>Scarica Modulo per Segnalazione Interferenze</a></div>";
//Gestione file
$USER_TYPE = $LOGIN->getUserType();
$USER_TYPE = $USER_TYPE["id"];
if(in_array($USER_TYPE, array(1, 2))) {
$PAGE_CONTENT .= "<h1 style='margin:50px 0 10px;'>Gestione file (only admin)</h1>";
if($_FILES["doc"] && ($_FILES["doc"]["error"] == 0) && ($_FILES["doc"]["type"] == "application/pdf")) {
logMessage("Modulo Segnalazione Interferenze sostituito");
move_uploaded_file($_FILES["doc"]["tmp_name"], $_SERVER["DOCUMENT_ROOT"] . $FILENAME);
$PAGE_CONTENT .= BasicTable::showMessageBox("Documento sostituito");
}
$PAGE_CONTENT .= "<form method='post' action='" . $_SERVER["SCRIPT_NAME"] . "?cmd=" . $_REQUEST["cmd"] . "' enctype='multipart/form-data' style='margin-top:10px;'>
Nuovo documento: <input type='file' name='doc' />
<input type='submit' value='Salva documento' />
</form>";
}
?>