joseki / text-as-file-response
Text as file response extension for Nette Framework
v1.0.0
2014-07-22 14:40 UTC
Requires
- nette/application: ~2.2
Requires (Dev)
- latte/latte: ~2.2.2
- nette/tester: ~1.0
Suggests
- nette/nette: PHP framework to which this extension belongs to.
This package is auto-updated.
Last update: 2024-11-05 21:17:50 UTC
README
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);
}