nicovogelaar / crud-controller-module
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: 2025-04-22 03:43:24 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', ), // ... );