fourcoders / generatecrud-bundle
A custom crud with pagination, sort and filter for Symfony2
Installs: 76
Dependents: 1
Suggesters: 0
Security: 0
Stars: 3
Watchers: 4
Forks: 0
Open Issues: 0
Language:HTML
Type:symfony-bundle
Requires
- php: >=5.3.2
- knplabs/knp-paginator-bundle: dev-master
- symfony/framework-bundle: >=2.3.0
This package is not auto-updated.
Last update: 2024-11-19 05:18:44 UTC
README
A custom crud with pagination, sort and filter for Symfony2
IMPORTANT!!!!!!!!!!! Symfony >= 2.3.0
Add in your composer.json
{
"require": {
"fourcoders/generatecrud-bundle": "dev-master"
}
}
Add in your app/AppKernel.php
<?php
// app/AppKernel.php
public function registerBundles()
{
return array(
// ...
new Fourcoders\Bundle\CrudgenerateBundle\FourcodersCrudgenerateBundle(),
// ...
);
}
Use KnpPaginatorBundle for pagination. View https://github.com/KnpLabs/KnpPaginatorBundle for configure it.