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.
16 righe
451 B
16 righe
451 B
<?php |
|
|
|
if (!empty($elabora_coda) && (!empty($_SESSION["ente"]))) { |
|
try { |
|
|
|
$extendedCron = Ente::getTenantExtensionPath($_SESSION["ente"]->codice) . DIRECTORY_SEPARATOR . "cron.php"; |
|
if (file_exists($extendedCron)) { |
|
alertManager::printCliInfo("SINCRONIZZAZIONE INTEGRAZIONI"); |
|
include "{$extendedCron}"; |
|
} |
|
|
|
} catch (\Throwable $th) { |
|
alertManager::printCliInfo("ERRORE DI SINCRONIZZAZIONE INTEGRAZIONI"); |
|
} |
|
} |
|
?>
|