Note:
Please install the ZIP extension to use the backup feature.
';
echo '' . i18n('Filename') . ' | '.i18n('Date').' | ' . i18n('Operations') . ' |
';
foreach ($files as $file) {
$arr = explode('_', pathinfo($file, PATHINFO_FILENAME));
$t = str_replace('-', '', $arr[1]);
$dt = new DateTime($t);
$timestamp = $dt->format("D, d F Y, H:i:s");
$url = site_url() . $file;
echo '';
echo '' . pathinfo($file, PATHINFO_BASENAME) . ' | ';
echo '' . $timestamp . ' | ';
echo 'Download | ';
echo '
';
}
echo '';
} else {
echo i18n('No_available_backup');
}
}
?>