elao/form-bundle

Various Form improvements

Installs: 35 497

Dependents: 0

Suggesters: 2

Security: 0

Stars: 6

Watchers: 24

Forks: 1

Open Issues: 0

Type:symfony-bundle

v2.1.1 2018-11-08 14:55 UTC

README

Best served with Elao/form.js!

Tools & enhancements for Symfony 2 forms

Installation:

Add ElaoFormBundle to your composer.json:

$ composer require "elao/form-bundle":"~2.1"

Enable the bundle in the kernel:

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Elao\Bundle\FormBundle\ElaoFormBundle(),
    );
}

Usage:

Use the provided form template, globally:

# Twig Configuration
twig:
    form_themes:
        - "@ElaoForm/Form/form_elao_layout.html.twig"

Or on a specific form:

{% form_theme form '@ElaoForm/Form/form_elao_layout.html.twig' %}

Features:

Collections:

Provide support for collection:

$('[data-collection]').collection();

Note: For more details, see Elao/form.js collection documentation.

Help:

Provide an help option that automatically adds an help block to the field. Use as below:

$builder->add('email', EmailType::class, array('help' => "A valid email address"));

Note: The help string is gonna be translated by default just like the label of the field.

Buttons:

Provide sortcut for adding submit and reset buttons: All form have now an optional option "submit" and "reset", setting it to true adds a default submit/reset button

$form = $this->createForm(PostType::class, $post, array('submit' => true, 'reset' => true));