lagged / zf_crud
Crud controller for ZendFramework(1)
0.7.0
2014-06-20 09:20 UTC
Requires (Dev)
- pear-easybib/easybib_form_decorator: 0.3.2
- zendframework/zendframework1: 1.*
This package is auto-updated.
Last update: 2024-10-11 14:23:17 UTC
README
WORK IN PROGRESS
Requirements
- Twitter Bootstrap (version 3)
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;
}