aboutsummaryrefslogtreecommitdiff
path: root/app/views/importExport/sqlite.phtml
blob: fb24e8a9261cc71477afbfa441e71a3819f57392 (plain)
1
2
3
4
5
6
7
8
9
10
<?php
declare(strict_types=1);
/** @var FreshRSS_View $this */
@ob_end_clean();	// Ensure no buffer
header('Content-Type: application/vnd.sqlite3');
header('Content-Disposition: attachment; filename="' . basename($this->sqlitePath) . '"');
header('Cache-Control: private, no-store, max-age=0');
header('Last-Modified: ' . gmdate(DateTimeInterface::RFC7231, @filemtime($this->sqlitePath) ?: 0));
header('Content-Length: ' . (@filesize($this->sqlitePath) ?: 0));
readfile($this->sqlitePath);