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.
 
 
 
 
 

32 righe
1.0 KiB

<?
$error =true;
$configPath = substr(__DIR__,0,strpos(__DIR__,"/public_html"))."/config.php";
include_once($configPath);
if (!empty($_SESSION["utente"]) && $_SESSION["utente"]->permission($radice) && !empty($_GET["codice"])) {
$goToMtg = new goToMtg;
$result = $goToMtg->listMeeting($_SESSION["ente"]->codice,$_GET["codice"]);
$error = false;
if (!empty($result)) {
foreach($result AS $meeting) {
?>
<div class="card mb-2">
<div class="card-header text-right">
<button type="button" onClick="elimina('<?= $meeting["meetingId"] ?>','conference/providers/gotomeeting/meeting','host=<?= $meeting["codice"] ?>'); return false" class="btn btn-sm btn-danger">
<span class="fa fa-times"></span>
</button>
</div>
<div class="card-body">
<pre><? print_r($meeting) ?></pre>
</div>
</div>
<?
}
} else {
alertManager::printWarningBox(__("Nessun risultato"));
}
}
if ($error) {
header('HTTP/1.0 403 Forbidden');
die();
}
?>