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.
30 righe
856 B
30 righe
856 B
<? |
|
$configPath = substr(__DIR__,0,strpos(__DIR__,"/public_html"))."/config.php"; |
|
include_once($configPath); |
|
if (!empty($_SESSION["utente"]) && $_SESSION["utente"]->permission("enti") && isset($_POST["codice"])) { |
|
if (isset($_SESSION["ente-new-img"])) { |
|
unset($_SESSION["ente-new-img"]); |
|
if (!empty($_SESSION["exitisting-logo"])) { |
|
?> |
|
$("#img-foto").attr('src','/documenti/enti/<?= $_SESSION["ente"]->getInfo()["logo"] ?>'); |
|
$("#img-foto").show(); |
|
$("#no-foto").hide(); |
|
<? |
|
} else { |
|
?> |
|
$("#img-foto").hide(); |
|
$("#no-foto").show(); |
|
<? |
|
} |
|
} else { |
|
?> |
|
$("#remove-foto").val('S'); |
|
$("#img-foto").hide(); |
|
$("#no-foto").show(); |
|
$("#rmv-foto").slideUp(); |
|
<? |
|
} |
|
} else { |
|
header('HTTP/1.0 403 Forbidden'); |
|
} |
|
?>
|
|
|