idci/admin-generator-bundle

Symfony AdminGeneratorBundle

v2.2.0 2013-07-30 16:09 UTC

This package is auto-updated.

Last update: 2024-03-24 19:30:30 UTC


README

Add Symfony2 command to extends crud generator

Requirements:

This bundle extends Sensio\Bundle\GeneratorBundle\Generator\DoctrineCrudGenerator And need php5-intl. The pagination is made with the pagerfanta bundle provide by white october

Installation

To install this bundle please follow the next steps:

First add the dependencies to your composer.json file:

"require": {
    ...
    "pagerfanta/pagerfanta":           "dev-master",
    "white-october/pagerfanta-bundle": "dev-master",
    "idci/admin-generator-bundle":     "dev-master"
},

Then install the bundle with the command:

php composer update

Enable the bundle in your application kernel:

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new WhiteOctober\PagerfantaBundle\WhiteOctoberPagerfantaBundle(),
        new IDCI\Bundle\AdminGeneratorBundle\IDCIAdminGeneratorBundle(),
    );
}

As you can see, we use WhiteOctoberPagerFantaBundle to paginate list results. So you have to define the max_per_page parameter in your app/config/parameters.yml

parameters:
    ...
    max_per_page:  25

Now, you have to install bootstrap. You can either:

Or

Add bootstrap_source to your app/config/parameters.yml

parameters:
    ...
    bootstrap_source:  http://twitter.github.com/bootstrap/assets/bootstrap.zip

Then run the following command to automatically install bootstrap assets in your web directory:

php app/console admin-generator:install:bootstrap-files

Generate CRUD backoffice

A CRUD interface, already stylized with bootstrap, can be easily generated with this command.

php app/console doctrine:generate:crud:twitter-bootstrap

Then you have to:

  • Indicate for which entity you want to generate a CRUD (Ex: MyBundle:Entity)
  • Indicate weather or not you want to generate "write actions" such as "new, update and delete"
  • Determine the format to use (annotation, yml, php, xml)
  • Determine the route prefix

Your CRUD entity is generated, as well as the layout.

Enjoy !