gestione gare pubbliche
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.
 
 
 
 
 

12 righe
927 B

<?
$configPath = substr(__DIR__,0,strpos(__DIR__,"/public_html"))."/config.php";
include_once($configPath);
if (isset($_SESSION["utente"]) && isset($idEditor) && isset($content)) {
?>
<div class="container">
<textarea rel="S;1;0;A" id="<?= $idEditor ?>" title="<?= __("Testo") ?>" class="ckeditor_full" name="editor-<?= $idEditor ?>"><?= $content ?></textarea>
<button type="button" onClick="$('#editorPDFexport-content').val(window.CKEDITOR.find((e) => { return e.sourceElement == document.querySelector('#<?=$idEditor?>')}).getData()); $('#editorPDFexport-format').val('<?= $exportFormat ?? "portrait" ?>'); $('#editorPDFexport-size').val('<?= $exportSize ?? "A4" ?>'); $('#editorPDFexport-token').val('<?= tokenGen() ?>'); $('#editorPDFexport').submit();" class="btn btn-block btn-danger ignore-lock"><span class="far fa-file-pdf"></span> <?= __("Download PDF") ?></button>
</div>
<?
}
?>