pawsitiwe / sulu-collection-content-type
Adds a content type for collections to Sulu CMS
Installs: 66
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Open Issues: 0
Type:sulu-bundle
Requires
- php: ^8.0
- sulu/sulu: ^2.0
README
Installation
composer require pawsitiwe/sulu-collection-content-type
Setup
Service Registration
The twig extension need to be registered as symfony service.
services: Pawsitiwe\SuluCollectionContentType\Twig\CollectionImagesExtension: ~
If autoconfigure is not active you need to tag it with twig.extension.
Usage
Use content type
To use the collection content type, use the following code.
<property name="collection" type="single_collection_selection"> <meta> <title lang="en">Collection</title> <title lang="de">Ordner</title> </meta> </property>
Get images of collection
To get all images of a collection, use the following code.
{% set images = get_images_in_collection(content.collection.id) %} {% for image in images %} <img src="{{ image.thumbnails['sulu-400x400'] }}" alt="{{ image.title }}" title="{{ image.description|default(image.title) }}"> {% endfor %}