nicovogelaar/crud-controller-module

dev-master 2014-06-28 15:26 UTC

This package is not auto-updated.

Last update: 2024-10-08 01:20:02 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',
    ),
    // ...
);