Messaggi di avviso per ripristino db

This commit is contained in:
Luca 2024-03-20 15:42:07 +01:00
parent e5a2e75b2d
commit a22597e29d
1 changed files with 13 additions and 2 deletions

View File

@ -109,6 +109,17 @@ if (filter('op') == 'restore') {
$path = $backups[$number];
}
Backup::restore($path, is_file($path));
$database->beginTransaction();
try {
$result = Backup::restore($path, is_file($path));
$database->beginTransaction();
if ($result) {
flash()->warning(tr('Ripristino eseguito correttamente!'));
} else {
flash()->error(tr('Errore durante il ripristino del backup!').'<br>'.$result);
}
} catch (Exception $e) {
flash()->error(tr('Errore durante il ripristino del backup!').' '.$e->getMessage());
}
}