nicovogelaar / crud-controller-module
CRUD controller module
Package info
github.com/nicovogelaar/crud-controller-module
pkg:composer/nicovogelaar/crud-controller-module
dev-master
2014-06-28 15:26 UTC
Requires
- zendframework/zendframework: >=2.1.5
Suggests
- nicovogelaar/paginator-module: Paginator module for ZF2
This package is not auto-updated.
Last update: 2026-03-24 08:06:55 UTC
README
Introduction
This CRUD controller module is intended to easily create controllers with CRUD functionality.
The module works also very good with the paginator module.
Usage
Requirements
Installation
Install with composer
./composer.phar require nicovogelaar/crud-controller-module
#when asked for a version, type "*".
Enable module
Enable the module in your application.config.php file.
<?php return array( 'modules' => array( // ... 'Nicovogelaar\CrudController', ), // ... );