19

我正在使用SonataAdminBundle(带有 Doctrine2 ORM),并且我已经成功地将文件上传功能添加到我的图片模型中。

我想在显示编辑<img src="{{ picture.url }} alt="{{ picture.title }} />页面上,在相关表单字段上方显示一个简单的标签(当然,前提是正在编辑的图片不是新的),以便用户可以看到当前照片,并决定是否改变与否。

经过数小时的研究,我一直无法弄清楚如何做到这一点。我想我需要覆盖一些模板,但我有点迷茫......有人可以给我一个提示吗?

谢谢!

这是我的 PictureAdmin 类的相关部分。

protected function configureFormFields(FormMapper $formMapper)
{
    $formMapper
        ->add('category', NULL, ['label' => 'Catégorie'])
        ->add('title', NULL, ['label' => 'Titre'])
        ->add('file', 'file', ['required' => false, 'label' => 'Fichier']) // Add picture near this field
        ->add('creation_date', NULL, ['label' => 'Date d\'ajout'])
        ->add('visible', NULL, ['required' => false, 'label' => 'Visible'])
        ->add('position', NULL, ['label' => 'Position']);
}

protected function configureShowFields(ShowMapper $showMapper)
{
    $showMapper
        ->add('id', NULL, ['label' => 'ID'])
        ->add('category', NULL, ['label' => 'Catégorie'])
        ->add('title', NULL, ['label' => 'Titre'])
        ->add('slug', NULL, ['label' => 'Titre (URL)'])
        ->add('creation_date', NULL, ['label' => 'Date d\'ajout'])
        ->add('visible', NULL, ['label' => 'Visible'])
        ->add('position', NULL, ['label' => 'Position']);
        // Add picture somewhere
}

4

7 回答 7

14

我设法将图像放在编辑表单中的字段上方。但我的解决方案有点具体,因为我使用Vich Uploader Bundle来处理上传,所以由于 bundle helpers,图片 url 的生成稍微容易了一些。

让我们看一下我的示例,电影实体中的电影海报字段。这是我的管理课程的一部分:

//MyCompany/MyBundle/Admin/FilmAdmin.php

class FilmAdmin extends Admin {

protected function configureFormFields(FormMapper $formMapper)
{
 $formMapper
     ->add('title')
 ....
     ->add('poster', 'mybundle_admin_image', array(
                'required' => false,
                ))
}

mybundle_admin_image由自定义字段类型处理,它只是文件类型的子类型,通过设置它的getParent方法:(不要忘记将您的类型类注册为服务)

//MyCompany/MyBundle/Form/Type/MyBundleAdminImageType.php

public function getParent()
{
    return 'file';
}

然后我有一个扩展 Sonata 默认样式的模板,并将它包含在管理类中:

//MyCompany/MyBundle/Admin/FilmAdmin.php

public function getFormTheme() {
    return array('MyCompanyMyBundle:Form:mycompany_admin_fields.html.twig');
}

最后,我有一个用于扩展基本文件类型的自定义图像类型的块:

//MyCompany/MyBundle/Resources/views/Form/mycompany_admin_fields.html.twig

{% block mybundle_admin_image_widget %}
{% spaceless %}
    {% set subject =  form.parent.vars.value %}
    {% if subject.id and attribute(subject, name) %}
        <a href="{{ asset(vich_uploader_asset(subject, name)) }}" target="_blank">
            <img src="{{ asset(vich_uploader_asset(subject, name)) }}" width="200" />
        </a><br/>
    {% endif %}
    {% set type = type|default('file') %}
    <input type="{{ type }}" {{ block('widget_attributes') }} {% if value is not empty %}value="{{ value }}" {% endif %}/>
{% endspaceless %}
{% endblock %}

这会导致上传字段上方显示 200 像素宽的图像预览(如果存在),链接到在新选项卡中打开的完整尺寸版本。您可以根据需要对其进行自定义,例如添加灯箱插件。

于 2012-10-02T18:26:12.617 回答
11

您可以通过助手(FormMapper->setHelps)或选项“帮助”在 FormMapper 上轻松地在编辑页面上执行此操作

protected function configureFormFields(FormMapper $formMapper) {
    $options = array('required' => false);
    if (($subject = $this->getSubject()) && $subject->getPhoto()) {
        $path = $subject->getPhotoWebPath();
        $options['help'] = '<img src="' . $path . '" />';
    }

    $formMapper
        ->add('title')
        ->add('description')
        ->add('createdAt', null, array('data' => new \DateTime()))
        ->add('photoFile', 'file', $options)
    ;
}
于 2013-01-23T00:22:49.967 回答
9

您可以通过模板属性传递轻松地在显示页面上执行此操作$showmapper

->add('picture', NULL, array(
    'template' => 'MyProjectBundle:Project:mytemplate.html.twig'
);

在您的模板中,您将获得当前对象,因此您可以调用 get 方法并拉取图像路径

<th>{% block name %}{{ admin.trans(field_description.label) }}{% endblock %}</th>
<td>
    <img src="{{ object.getFile }}" title="{{ object.getTitle }}" />
    </br>
    {% block field %}{{ value|nl2br }}{% endblock %}
</td>

要在编辑模式下显示图像,您必须覆盖fileType或者您必须在顶部创建自己的 customTypefileType

还有一些具有这种功能的包查看这个GenemuFormBundle

于 2012-07-06T21:32:33.253 回答
4

Symfony3 的解决方案

@kkochanski 的答案是迄今为止我发现的最干净的方法。这里是移植到Symfony3的版本。我还修复了一些错误。

为您的新表单类型创建一个新模板image.html.twig(完整路径:)src/AppBundle/Resources/views/Form/image.html.twig

{% block image_widget %}
    {% spaceless %}
        {% set type = type|default('file') %}
        <input type="{{ type }}" {{ block('widget_attributes') }} {% if value is not empty %}value="{{ value }}" {% endif %}/>
        {% if image_web_path is not empty %}
            <img src="{{ image_web_path }}" alt="image_photo"/>
        {% endif %}
    {% endspaceless %}
{% endblock %}

在您的中注册新的表单类型模板config.yml

twig:
    form_themes:
        - AppBundle::Form/image.html.twig

创建一个新的表单类型并将其保存为ImageType.php(完整路径:)src/AppBundle/Form/Type/ImageType.php

<?php

namespace AppBundle\Form\Type;

use Symfony\Component\Form\AbstractType;
use Symfony\Component\OptionsResolver\OptionsResolver;
use Symfony\Component\Form\FormView;
use Symfony\Component\Form\FormInterface;
use Symfony\Component\Form\FormBuilderInterface;

/**
 * Class ImageType
 *
 * @package AppBundle\Form\Type
*/
class ImageType extends AbstractType
{
    /**
     * @return string
     */
    public function getParent()
    {
        return 'file';
    }

    /**
     * @return string
     */
    public function getName()
    {
        return 'image';
    }

    /**
     * @param OptionsResolver $resolver
     */
    public function configureOptions(OptionsResolver $resolver)
    {
        $resolver->setDefaults(array(
            'image_web_path' => ''
        ));
    }

    /**
     * @param FormView $view
     * @param FormInterface $form
     * @param array $options
     */
    public function buildView(FormView $view, FormInterface $form, array $options)
    {
        $view->vars['image_web_path'] = $options['image_web_path'];
    }

    /**
     * @param FormBuilderInterface $builder
     * @param array $options
     */
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder
            ->setAttribute('image_web_path', $options['image_web_path'])
        ;
    }
}

如果你已经这样做了。您可以ImageType在实体管理类中导入新的:

use AppBundle\Form\Type\ImageType

然后,最后使用没有任何 inline-html 或样板代码的新表单类型configureFormFields

$formMapper
    ->add('imageFile', ImageType::class, ['image_web_path' => $image->getImagePath()])
;

而不是$image->getImagePath()您必须调用自己的方法来将 URL 返回到您的图像。

截图

使用奏鸣曲管理员创建一个新的图像实体:

在此处输入图像描述

使用奏鸣曲管理员编辑图像实体:

在此处输入图像描述

于 2017-02-10T11:28:32.603 回答
2

你可以通过这种方式简单地做到

    $image = $this->getSubject();
    $imageSmall = '';

    if($image){
        $container = $this->getConfigurationPool()->getContainer();
        $media = $container->get('sonata.media.twig.extension');
        $format = 'small';
        if($webPath = $image->getImageSmall()){
            $imageSmall = '<img src="'.$media->path($image->getImageSmall(), $format).'" class="admin-preview" />';
        }
    }

   $formMapper->add('imageSmall', 'sonata_media_type', array(
      'provider' => 'sonata.media.provider.image',
      'context' => 'default',
      'help' => $imageSmall
   ));
于 2015-09-21T07:02:08.620 回答
0

有一种简单的方法 - 但您会在上传按钮下方看到图片。SonataAdmin 允许将原始 HTML 放入任何给定表单字段的“帮助”选项中。您可以使用此功能嵌入图像标签:

protected function configureFormFields(FormMapper $formMapper) {

    $object = $this->getSubject();

    $container = $this->getConfigurationPool()->getContainer();

    $fullPath =     $container->get('request')->getBasePath().'/'.$object->getWebPath();


    $formMapper->add('file', 'file', array('help' => is_file($object->getAbsolutePath() . $object->getPlanPath()) ? '<img src="' . $fullPath . $object->getPlanPath() . '" class="admin-preview" />' : 'Picture is not avialable')

}
于 2015-01-28T16:52:40.353 回答
0

Teo.sk 使用 VichUploader 编写了显示图像的方法。我找到了一个选项,它允许您在没有此捆绑包的情况下显示图像。

首先,我们需要创建我们的 form_type。有教程:symfony_tutorial

在主管理类中:

namespace Your\Bundle;

//.....//

class ApplicationsAdmin extends Admin {

//...//

public function getFormTheme() {
    return array_merge(
        parent::getFormTheme(),
        array('YourBundle:Form:image_type.html.twig') //your path to form_type template
    );

protected function configureFormFields(FormMapper $formMapper)
{
     $formMapper->add('file_photo', 'image', array(
            'data_class' => 'Symfony\Component\HttpFoundation\File\File',
            'label' => 'Photo',
            'image_web_path' => $this->getRequest()->getBasePath().'/'.$subject->getWebPathPhoto()// it's a my name of common getWebPath method
        ))
        //....//
        ;
}

}

下一部分是 ImageType 类的代码。

namespace Your\Bundle\Form\Type;

use Symfony\Component\Form\AbstractType;
use Symfony\Component\OptionsResolver\OptionsResolverInterface;
use Symfony\Component\OptionsResolver\Options;
use Symfony\Component\Form\FormView;
use Symfony\Component\Form\FormInterface;
use Symfony\Component\Form\FormBuilder;
use Symfony\Component\Form\FormBuilderInterface;


class ImageType extends AbstractType
{

    public function getParent()
    {
        return 'file';
    }

    public function getName()
    {
        return 'image';
    } 

    public function setDefaultOptions(OptionsResolverInterface $resolver)
    {
        $resolver->setDefaults(array(
            'image_web_path'         => ''
        ));
    }

    public function buildView(FormView $view, FormInterface $form, array $options)
    {
        $view->vars['image_web_path'] = $options['image_web_path'];
    }

    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder
             ->setAttribute('image_web_path', $options['image_web_path'])
        ;
    }
}

以及 image_type 树枝模板的结束时间。

{% block image_widget %}
{% spaceless %}
    {% set type = type|default('file') %}
    <input type="{{ type }}" {{ block('widget_attributes') }} {% if value is not empty %}value="{{ value }}" {% endif %}/>
    <img src="{{ image_web_path }}" alt="image_photo"/>
{% endspaceless %}
{% endblock %}

对我来说,它的工作!我还使用雪崩包来调整图像大小。

于 2014-10-20T10:29:07.307 回答