dongnue4923 2016-10-09 14:45
浏览 74
已采纳

向Symfony 3添加所有表单类型的帮助选项

How could I add custom 'help' option to all existing Symfony3 Type's?

In Symfony2, I did it like this http://toni.uebernickel.info/2012/11/03/how-to-extend-form-fields-in-symfony2.1.html but now I'm upgrading to Symfony3 and it does not work any more - it gives me The option "help" does not exist.

http://symfony.com/doc/current/form/form_customization.html#adding-help-messages would work, but it would require to move all help texts into template:

{{ form_widget(form.title, {'help': 'foobar'}) }}

...from Type classes:

->add(
    'periodFrom',
    TextType::class,
    [
        'label' => 'period-from',
        'required' => false,
        'help' => 'period-from.help'
    ]
)

I'd like to avoid that. Thanks.

  • 写回答

1条回答 默认 最新

  • doushi9376 2016-10-10 00:35
    关注

    To do that and after this http://symfony.com/doc/current/form/form_customization.html#adding-help-messages you can create a form type extension to pass help option to all form fields:

    <?php
    // src/AppBundle/Form/Extension/FormTypeExtension.php
    namespace AppBundle\Form\Extension;
    use Symfony\Component\Form\AbstractTypeExtension;
    use Symfony\Component\Form\Extension\Core\Type\FormType;
    use Symfony\Component\Form\FormInterface;
    use Symfony\Component\Form\FormView;
    use Symfony\Component\OptionsResolver\OptionsResolver;
    
    class FormTypeExtension extends AbstractTypeExtension
    {
        public function buildView(FormView $view, FormInterface $form, array $options)
        {
            $view->vars['help'] = $options['help'];
        }
    
        public function configureOptions(OptionsResolver $resolver)
        {
            $resolver->setDefaults(array(
                'help' => null,
            ));
        }
    
        public function getExtendedType()
        {
            return FormType::class;
        }
    }
    

    Now register the form type extension:

    services:
        app.form_type_extension:
            class: AppBundle\Form\Extension\FormTypeExtension
            tags:
                - { name: form.type_extension, extended_type: Symfony\Component\Form\Extension\Core\Type\FormType }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 想通过pywinauto自动电机应用程序按钮,但是找不到应用程序按钮信息
  • ¥15 MATLAB中streamslice问题
  • ¥15 如何在炒股软件中,爬到我想看的日k线
  • ¥15 51单片机中C语言怎么做到下面类似的功能的函数(相关搜索:c语言)
  • ¥15 seatunnel 怎么配置Elasticsearch
  • ¥15 PSCAD安装问题 ERROR: Visual Studio 2013, 2015, 2017 or 2019 is not found in the system.
  • ¥15 (标签-MATLAB|关键词-多址)
  • ¥15 关于#MATLAB#的问题,如何解决?(相关搜索:信噪比,系统容量)
  • ¥500 52810做蓝牙接受端
  • ¥15 基于PLC的三轴机械手程序