Sonata Admin - 在configureFormFields中显示sonata_type_collection中每个实体的属性

时间:2016-05-24 15:03:21

标签: symfony sonata-admin sonata

所有都在标题中,

实际上我在我的奏鸣曲管理员中有这个:

/**
     * @param FormMapper $formMapper
     */
    protected function configureFormFields(FormMapper $formMapper)
    {
        $formMapper
            ->add('images', 'sonata_type_collection', [
                'label' => 'admin.solution_page.images',
                'required' => false,
                'by_reference' => false,
            ], [
                'edit' => 'inline',
                'inline' => 'table',
                'sortable' => 'position',
                'link_parameters' => array('context' => 'image'),
                'admin_code' => 'app.admin.solution_page_has_image'
            ]);
}

如果选择了媒体,我还想为我的每个实体显示媒体标签。

当前显示:

enter image description here

提前感谢您的时间。

0 个答案:

没有答案