Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
TextAsFileResponse
==================
[](https://travis-ci.org/Joseki/TextAsFileResponse)
Text as file response for Nette Framework
Install
---
Installation via Composer.
{
"require":{
"joseki/text-as-file-response": "@dev"
}
}
Download a file from a template
---
// in a Presenter
public function actionDownload()
{
$template = $this->createTemplate();
$template->setFile("/path/to/template.latte");
$template->someValue = 123;
$response = new Joseki\Application\Responses\TextAsFileResponse($template, 'MyFilename.txt');
$this->sendResponse($response);
}
Download a file from a string
---
// in a Presenter
public function actionDownload()
{
$data = 'lorem ipsum...';
$response = new Joseki\Application\Responses\TextAsFileResponse($data, 'MyFilename.txt');
$this->sendResponse($response);
}
Setting content type
---
// in a Presenter
public function actionDownload()
{
$response = new Joseki\Application\Responses\TextAsFileResponse($data, 'MyFilename.xml', 'application/xml');
$this->sendResponse($response);
}