projects / org / contextualcode / ezplatform-content-disposit...
Find the Exponential Software extensions you want
| UNIX name | Owner | Status |
|---|---|---|
| ezplatform-content-disposition-bundle | Contextual Code | stable |
| Version | Compatible with |
|---|---|
| N/A | N/A |
This bundle gives the ability to customize content dispositions (inline or attachment) for downloads.
You can specify the default content disposition, and content dispositions per mime type.
$ composer require contextualcode/ezplatform-content-disposition-bundle
return [
...,
ContextualCode\EzPlatformContentDispositionBundle\ContextualCodeEzPlatformContentDispositionBundle::class => ['all' => true],
];
Add this to your routes.yaml:
content_disposition:
resource: '@ContextualCodeEzPlatformContentDispositionBundle/Resources/config/routing.yml'
In some parameters block, for example in config/services.yaml, you can specify:
A default content disposition:
ibexa.site_access.config.global.download_content_disposition.default: inline
A content disposition per mimetype:
ibexa.site_access.config.global.download_content_disposition.mimetype:
"application/pdf": inline
"application/msword": attachment
Make files cache-control: public, s-maxage=%download_content_disposition.download_file_ttl%
and vary by user context hash (default: false).
ibexa.site_access.config.default.download_content_disposition.public_download: true
ibexa.site_access.config.default.download_content_disposition.download_file_ttl: 86400
if download_content_disposition.download_file_ttl setting not defined, content.default_ttl will be used.