lagged/zf_crud

Crud controller for ZendFramework(1)

0.7.0 2014-06-20 09:20 UTC

This package is auto-updated.

Last update: 2024-04-11 13:11:57 UTC


README

WORK IN PROGRESS

Requirements

Use your own bootstrap css files within your setup. See twitter bootstrap homepage (tags) for versions.

Installation

Add lagged/Zf_Crud to your composer.json!

Usage

...

<?php

class MyController extends \Lagged\Zf\Crud\Controller
{
    protected $model      = 'My_Zend_Db_Table_Model';
    protected $title      = 'My Interface';
    // Optional
    protected $dbAdapter  = 'db';
    protected $count      = 15;
    protected $bulkDelete = true;
}