how to use sonata media bundle with my entities

symfony-sonata

Solution

Here is the documentation about the implementation:

http://sonata-project.org/blog/2013/10/11/mediabundle-mediatype-improved

Problem

I want to use sonata media bundle for medias in my bundle. I have one entity which should have a gallery. After installing sonata media bundle and generating easy:extends, there are 3 diffrent entities: - Media.php - Gallery.php - GalleryHasMedia.php. How can I link these entities to my own entity for gallery implementation???

Original source