From b9de58c0c9da63f6a489df416df1819a40cb507d Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Tue, 13 May 2014 22:10:02 +0200 Subject: remove more old code --- http/downloadresponse.php | 40 ---------------------------------------- http/textdownloadresponse.php | 2 ++ 2 files changed, 2 insertions(+), 40 deletions(-) delete mode 100644 http/downloadresponse.php (limited to 'http') diff --git a/http/downloadresponse.php b/http/downloadresponse.php deleted file mode 100644 index 15489529c..000000000 --- a/http/downloadresponse.php +++ /dev/null @@ -1,40 +0,0 @@ - - * @author Bernhard Posselt - * @copyright Alessandro Cosentino 2012 - * @copyright Bernhard Posselt 2012, 2014 - */ - -namespace OCA\News\Http; - -use \OCP\AppFramework\Http\Response; - -/** - * Prompts the user to download the a file - */ -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); - } - - -} diff --git a/http/textdownloadresponse.php b/http/textdownloadresponse.php index a0821f43a..06b331d5d 100644 --- a/http/textdownloadresponse.php +++ b/http/textdownloadresponse.php @@ -13,6 +13,8 @@ namespace OCA\News\Http; +use \OCP\AppFramework\Http\DownloadResponse; + /** * Prompts the user to download the a textfile -- cgit v1.2.3