2017 © Pedro Peláez
 

library crudify-bundle

Symfony 2 bundle that provides a simple CRUD interface

image

bravesheep/crudify-bundle

Symfony 2 bundle that provides a simple CRUD interface

  • Wednesday, March 22, 2017
  • by marlon
  • Repository
  • 2 Watchers
  • 1 Stars
  • 2,025 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 5 Open issues
  • 18 Versions
  • 6 % Grown

The README.md

BravesheepCrudifyBundle

The Bravesheep crudify bundle provides an easy way to quickly get a CRUD interface (Create-Read-Update-Delete) for simple entities. The bundle has several extension points and options to customize behavior. Most functionality can be customized quickly via the configuration. For a more generalized (be it more verbose) approach you should take a look at the SonataAdminBundle. Currently the BravesheepCrudifyBundle only supports Doctrine ORM as a backend for retrieving data., (*1)

Documentation

Read more about the bundle here:, (*2)

Installation and configuration

Using Composer add the bundle to your requirements:, (*3)

{
    "require": {
        "bravesheep/crudify-bundle": "dev-master"
    }
}

Then run composer update bravesheep/crudify-bundle, (*4)

Basic configuration

Define mappings in your configuration file app/config/config.yml:, (*5)

bravesheep_crudify:
    mappings: ~

A full listing of the default config is available in the documentation., (*6)

Add routes to your routing file

In app/config/routing.yml, add the routes for the crudify administrator interface:, (*7)

crudify_admin:
    prefix: /admin/
    type: crudify
    resource: .

Add the bundle to your AppKernel

Finally add the bundle in app/AppKernel.php:, (*8)

public function registerBundles()
{
    return array(
        // ...
        new Knp\Bundle\PaginatorBundle\KnpPaginatorBundle(),
        new Bravesheep\CrudifyBundle\BravesheepCrudifyBundle(),
        // ...
    );
}

Don't forget to further configure the KnpPaginatorBundle, following their guide. If you are already using the KnpPaginatorBundle in your AppKernel, then you don't need to add it again., (*9)

The Versions

28/02 2014

dev-bootstrap-v3

dev-bootstrap-v3

Symfony 2 bundle that provides a simple CRUD interface

  Sources   Download

MIT

The Requires

 

by Marlon Baeten