joseki / text-as-file-response
Text as file response extension for Nette Framework
Installs: 988
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 1
Open Issues: 1
pkg:composer/joseki/text-as-file-response
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: 2025-10-05 23:37:51 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);
}