repincln
repincln

Reputation: 2059

retrieve additional informations about sonata image in twig

I'm using SonataMediaBundle. Is it possible to retrieve additional informations about images in twig?

This sentence retrieve image:

{% media item.image, 'big' %}

Can I retrieve for example author, description, copyright etc.? I can set this informations in SonataAdmin.

EDIT: I found solution:

{{item.image.description}}

Upvotes: 0

Views: 103

Answers (1)

repincln
repincln

Reputation: 2059

I found the answer. To retrieve additional informations about image simply use:

{# image description #}
{{item.image.description}}

{# image author #}
{{item.image.authorName}}

{# etc. #}

Upvotes: 1

Related Questions