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.
21 righe
859 B
21 righe
859 B
<? |
|
$error = true; |
|
$configPath = substr(__DIR__,0,strpos(__DIR__,"public_html/"))."config.php"; |
|
include_once($configPath); |
|
if (isset($_SESSION["utente"]) && $_SESSION["utente"]->permission($radice)) { |
|
$error = false; |
|
?> |
|
<form action="/backend/anac/190/importFromModuli.php" id="form-import-id"> |
|
<input type="hidden" name="token" value="<?= tokenGen() ?>"> |
|
<? |
|
alertManager::printInfoBox(__("Importazione massiva dei suggerimenti"),__("Questa funzione importa automaticamente tutti i dati presenti negli altri moduli della piattaforma, l'operazione potrebbe richiedere molto tempo, si prega di attendere")); |
|
?> |
|
<button type="submit" class="btn btn-block btn-primary btn-lg"><?= __("Avvia operazione") ?></button> |
|
</form> |
|
<? |
|
} |
|
if ($error) { |
|
header('HTTP/1.0 403 Forbidden'); |
|
die(); |
|
} |
|
?>
|
|
|