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.
 
 
 
 
 

19 righe
560 B

<?php
$changelog_parser->templateWrapper->renderLastChangelogs(
$changelog_parser->getAllChangelogs(
$_SESSION["utente"]->codice,
),
3,
function ($parameters) {
if (empty($parameters)) {
return "/backend/changelogs/endpoint.php";
}
$query = ["modal=1"];
foreach ($parameters as $key => $value) {
$query[] = $key . "=" . $value;
}
$query = implode("&", $query);
return "javascript:showModalWithURL(\"/backend/changelogs/endpoint.php?{$query}\")";
}
);