. * */ namespace OC\AppFramework\Http; /** * Prompts the user to download the a file */ abstract class DownloadResponse extends Response { private $filename; private $contentType; /** * Creates a response that prompts the user to download the file * @param string $filename the name that the downloaded file should have * @param string $contentType the mimetype that the downloaded file should have */ public function __construct($filename, $contentType) { $this->filename = $filename; $this->contentType = $contentType; $this->addHeader('Content-Disposition', 'attachment; filename="' . $filename . '"'); $this->addHeader('Content-Type', $contentType); } }