Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
13 righe
541 B
13 righe
541 B
<?php |
|
$_cdir = __DIR__; |
|
|
|
$configPath = substr(__DIR__,0,strpos(__DIR__,"/public_html"))."/config.php"; |
|
include_once($configPath); |
|
|
|
if (! empty($_GET) && ! empty($_SESSION["utente"]) && $_SESSION["utente"]->permission($radice, $_GET["codice"]) && (! $_SESSION["utente"]->isSupporto() || $_SESSION["utente"]->hasSuperPowers())) { |
|
$contratto = stipula::init($_GET["codice"]); |
|
header('Content-Type: text/xml'); |
|
header('Content-disposition: inline; filename="Unimod.xml"'); |
|
echo (utf8_encode($contratto->info["unimod_xml"])); |
|
} |
|
?>
|