Symfony2 form extensions for Admingenerator project inspired by genemu/GenemuFormBundle.
For a full list of form types and extensions (and related notes) see documentation.
Add this to your composer.json:
"require": {
"symfony2admingenerator/form-extensions-bundle": "dev-master"
}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 'AdmingeneratorFormExtensionsBundle::stylesheets.html.twig' %}
{% if form is defined and form is not empty %}
{{ form_css(form) }}
{% endif %}
{% endblock %}
{% block javascripts %}
{{ parent() }}
{% include 'AdmingeneratorFormExtensionsBundle::javascripts.html.twig' %}
{% if form is defined and form is not empty %}
{{ form_js(form) }}
{% endif %}
{% endblock %}For others:
{% block stylesheets %}
{% include 'AdmingeneratorFormExtensionsBundle::stylesheets.html.twig' %}
{% if form is defined and form is not empty %}
{{ form_css(form) }}
{% endif %}
{% endblock %}
{% block javascripts %}
{% include 'AdmingeneratorFormExtensionsBundle::javascripts.html.twig' %}
{% if form is defined and form is not empty %}
{{ form_js(form) }}
{% endif %}
{% endblock %}We need your support to translate forms messages :) If you want to help open a pull request and submit a package for your language.
For license information read carefully LICENSE file.

