Download the PHP package perspeqtive/sulu-media-credits-bundle without Composer
On this page you can find all versions of the php package perspeqtive/sulu-media-credits-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download perspeqtive/sulu-media-credits-bundle
More information about perspeqtive/sulu-media-credits-bundle
Files in perspeqtive/sulu-media-credits-bundle
Package sulu-media-credits-bundle
Short Description Display media credits on your website
License MIT
Informations about the package sulu-media-credits-bundle
SuluMediaCreditsBundle
The Sulu Media Credits Bundle enables the automatic listing of media credits for media used on the current website. It scans the content via the reference bundle of the current website for linked media and provides them collectively for display.
🚀 Features
- Automatic Detection: Detects media references in various content types.
- Centralized Display: Collects all media credits of the current page in one place (e.g., in the masthead).
- Additional Info: Considers copyright information and credit fields from media metadata.
- Memory Optimization: Uses generators to reduce memory usage.
- Linking: Provides links to the pages where the media is used (if applicable).
- Extendable: Easily add your own logic for additional content types.
🛠️ Installation
Install the bundle via composer:
Activate the bundle
If you are not using symfony flex, register it in your config/bundles.php:
🛠️ Usage
The bundle provides a Twig function that returns a collection of all media references on the current website.
Twig Function
Use media_credits() to retrieve the credits collection.
Data Structure
The media_credits() function returns a CreditsCollection object, which iterates over Credits objects.
| Property | Type | Description |
|---|---|---|
mediaId |
int |
The ID of the medium |
title |
string |
The title/name of the medium |
copyright |
string |
The copyright field from the metadata |
credit |
string |
The credit field from the metadata |
references |
MediaReferenceCollection |
Collection of references where the file is linked |
Within item.references.next (MediaReference):
| Property | Type | Description |
|---|---|---|
title |
string |
Title of the linked page/resource |
resourceId |
string |
The target resources unique identifier |
resourceType |
string |
The target resource key like 'pages' or 'articles' |
url |
string |
URL to the resource |
⚠️ Caution:
Only images directly used in page-types are considered for reference linking. When using snippets or custom entities, the references are not returned. The credit and copyright information is still available.
🛠️ Extending the Bundle
If you want to support additional media references (e.g., from custom entities or snippets), you can extend the bundle by implementing two interfaces.
1. Implement ReferenceByTypeRepositoryInterface
This interface is responsible for finding references for a specific media ID.
2. Implement UrlRepositoryByTypeInterface
This interface is responsible for generating the URL for a found reference.
3. Register the Services
The bundle uses tagged iterators to collect all repositories.
Via Autowire & Autoconfigure
If your application uses autoconfigure: true, the services will be registered automatically because the bundle registers the interfaces for autoconfiguration.
Manual Registration
If you don't use autoconfigure, you must add the tags manually:
👩🍳 Contribution
Please feel free to fork and extend existing or add new features and send a pull request with your changes! To establish a consistent code quality, please provide unit tests for all your changes and adapt the documentation.