1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2024-12-19 03:34:25 +01:00
openstamanager/modules/backup/actions.php
Thomas Zilio a89ad1feee Introduzione del componente Filesystem
Introduzione del componente Filesystem di Symfony per gestire in modo omogeneo il filesystem.
2017-09-11 17:49:03 +02:00

37 lines
913 B
PHP

<?php
include_once __DIR__.'/../../core.php';
switch (filter('op')) {
case 'getfile':
$file = filter('file');
download($backup_dir.$file, $file);
break;
case 'del':
$file = filter('file');
delete($backup_dir.$file);
if (!file_exists($backup_dir.$file)) {
$_SESSION['infos'][] = tr('Backup _FILE_ eliminato!', [
'_FILE_' => '"'.$file.'"',
]);
} else {
$_SESSION['errors'][] = tr("Errore durante l'eliminazione del backup _FILE_!", [
'_FILE_' => '"'.$file.'"',
]);
}
break;
case 'backup':
if (!do_backup()) {
$_SESSION['errors'][] = tr('Errore durante la creazione del backup!').' '.tr_replace('_DIR_', '"'.$backup_dir.'"', tr('Verifica che la cartella _DIR_ abbia i permessi di scrittura!'));
}
break;
}