Skip to content

Latest commit

 

History

History
44 lines (31 loc) · 841 Bytes

README.md

File metadata and controls

44 lines (31 loc) · 841 Bytes

CRUD controller module

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',
    ),
    // ...
);