2017 © Pedro Peláez
 

symfony-bundle form-theme-bundle

Bundle enables ability to define form theme in form type classes.

image

bml/form-theme-bundle

Bundle enables ability to define form theme in form type classes.

  • Tuesday, January 30, 2018
  • by bmL
  • Repository
  • 1 Watchers
  • 0 Stars
  • 40 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 82 % Grown

The README.md

About

Form theme bundle enables ability to define form theme in FormType classes., (*1)

There is pull request implementing this feature awaiting review: https://github.com/symfony/symfony/pull/23990, (*2)

Installation

  1. composer require bml/form-theme-bundle
  2. If you are not using symfony flex add new Bml\FormThemeBundle\BmlFormThemeBundle() to your AppKernel.php

Usage

To define form type theme define theme option for the form. For example in Type class:, (*3)

class YourType extends AbstractType
{
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder
           ->add('field')
           [...]
    }
    public function configureOptions(OptionsResolver $resolver)
    {
        $resolver->setDefaults([
            'theme' => 'app/form/my_type_theme.html.twig'
        ]);
    }
}

When you call createView() on your form this bundle will call equivalent to {% form_theme form 'app/form/my_type_theme.html.twig' %} on your form in background., (*4)

The Versions

30/01 2018

dev-master

9999999-dev

Bundle enables ability to define form theme in form type classes.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Damian Wróblewski

29/01 2018

1.0.0

1.0.0.0

Bundle enables ability to define form theme in form type classes.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Damian Wróblewski