简体   繁体   中英

Include a media type in an Entity from Sonata Admin

I'm making an Entity which is called Article, it should have some text, a video and a couple of images. For the latter I'm doing it by allowing the user to create a media and then include the images there, now for the question... how do I relate that media to the article? Do I have a "media list picker" to choose from?

To include Sonata MediaBundle in the Admin Bundle, you'll need to add for example an Image field to your Article entity.

/**
 * @ORM\ManyToOne(targetEntity="Application\Sonata\MediaBundle\Entity\Gallery")
 * @ORM\JoinColumns({
 *   @ORM\JoinColumn(name="image", referencedColumnName="id")
 * })
 */
private $image;

And then refer to it in your ArclicleAdmin :

->add('image', 'sonata_type_model_list', array('required' => false))

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM