symfony2admingenerator/form-extensions-bundle

Add additional form types to symfony2

Package info

github.com/symfony2admingenerator/FormExtensionsBundle

Language:JavaScript

Type:symfony-bundle

pkg:composer/symfony2admingenerator/form-extensions-bundle

Statistics

Installs: 32 200

Dependents: 0

Suggesters: 2

Stars: 12

Open Issues: 12

v4.1.2 2026-02-24 19:57 UTC

Requires

Requires (Dev)

None

Suggests

Provides

None

Conflicts

None

Replaces

None

MIT and Apache-2.0 d7beaa354995d083679e71c17356087c119bbceb


README

👁 Latest Stable Version
👁 Total Downloads

Symfony2 form extensions for Admingenerator project inspired by genemu/GenemuFormBundle.

Documentation

For a full list of form types and extensions (and related notes) see documentation.

Installation

Add this to your composer.json:

"require": {
 "symfony2admingenerator/form-extensions-bundle": "^2.0"
}

For Symfony version lower than 2.7 or Twig lower than 1.12 add the following to your composer.json:

"require": {
 "symfony2admingenerator/form-extensions-bundle": "v2.0-beta.21"
}

And then enable the bundle in your AppKernel.php:

<?php
// AppKernel.php
public function registerBundles()
{
 $bundles = array(
 // ...
 new Admingenerator\FormBundle\AdmingeneratorFormBundle(),
 new Admingenerator\FormExtensionsBundle\AdmingeneratorFormExtensionsBundle(),
 // AdmingeneratorGeneratorBundle is optional, however if you're useing it
 // make sure it is loaded AFTER AdmingeneratorFormExtensionsBundle
 new Admingenerator\GeneratorBundle\AdmingeneratorGeneratorBundle(),
 );
}
?>

To make symfony2admingenerator/form-extensions-bundle forms work, you need to edit your base template, and include static and dynamic stylesheets and javascripts.

For Admingenerator users:

{% extends 'AdmingeneratorGeneratorBundle::base_admin.html.twig' %}

{% block stylesheets %}
 {{ parent() }}

 {% include '@AdmingeneratorFormExtensions/stylesheets.html.twig' %}
 {% if form is defined and form is not empty %}
 {{ form_css(form) }}
 {% endif %}
{% endblock %}

{% block javascripts %}
 {{ parent() }}

 {% include '@AdmingeneratorFormExtensions/javascripts.html.twig' %}
 {% if form is defined and form is not empty %}
 {{ form_js(form) }}
 {% endif %}
{% endblock %}

For others:

{% block stylesheets %}
 {% include '@AdmingeneratorFormExtensions/stylesheets.html.twig' %}
 
 {% if form is defined and form is not empty %}
 {{ form_css(form) }}
 {% endif %}
{% endblock %}

{% block javascripts %}
 {% include '@AdmingeneratorFormExtensions/javascripts.html.twig' %}
 
 {% if form is defined and form is not empty %}
 {{ form_js(form) }}
 {% endif %}
{% endblock %}

Note that the templates above are only usable if you've configured assetic for you project (with the correct filters enabled, uglifyjs2 and uglifycss). This bundle also offers a view without filters and without assetic. Simple append _assetic_basic or assetic_less to the template name.

Configure assetic packages (only if you use base.html.twig template)

Symfony <2.7:

framework:
 templating:
 packages:
 formextensions_css:
 version: 1.0
 version_format: "%%1$s?v%%2$s"
 formextensions_js:
 version: 1.0
 version_format: "%%1$s?v%%2$s"

Symfony 2.7 or higher:

framework:
 assets:
 packages:
 formextensions_css:
 version: 1.0
 version_format: "%%1$s?v%%2$s"
 formextensions_js:
 version: 1.0
 version_format: "%%1$s?v%%2$s"

Translators needed!

We need your support to translate forms messages :) If you want to help open a pull request and submit a package for your language.

License

For license information read carefully LICENSE file.