summaryrefslogtreecommitdiffstats
path: root/http
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-09-16 16:24:20 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-09-16 16:24:20 +0200
commit9e36ef31f9bf16d43326fd047619ada5ff16e072 (patch)
treee228816adedacfed87eb08e8bc86658536cbbe86 /http
parent6a7ac3d9da3dea4130eb08a07a0a0603418d54ab (diff)
parent21728afff571adfc508cf5fa473d094946ef188f (diff)
merge
Diffstat (limited to 'http')
-rw-r--r--http/downloadresponse.php40
-rw-r--r--http/textdownloadresponse.php4
2 files changed, 3 insertions, 41 deletions
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 @@
-<?php
-/**
- * ownCloud - News
- *
- * This file is licensed under the Affero General Public License version 3 or
- * later. See the COPYING file.
- *
- * @author Alessandro Cosentino <cosenal@gmail.com>
- * @author Bernhard Posselt <dev@bernhard-posselt.com>
- * @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..7a9d59c7d 100644
--- a/http/textdownloadresponse.php
+++ b/http/textdownloadresponse.php
@@ -13,9 +13,11 @@
namespace OCA\News\Http;
+use \OCP\AppFramework\Http\DownloadResponse;
+
/**
- * Prompts the user to download the a textfile
+ * Prompts the user to download the a text file
*/
class TextDownloadResponse extends DownloadResponse {