lagged / zf_crud
Crud controller for ZendFramework(1)
Installs: 43
Dependents: 0
Suggesters: 0
Security: 0
Stars: 6
Watchers: 4
Forks: 3
Open Issues: 1
pkg:composer/lagged/zf_crud
Requires (Dev)
- pear-easybib/easybib_form_decorator: 0.3.2
- zendframework/zendframework1: 1.*
This package is auto-updated.
Last update: 2025-09-11 16:36:01 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;
}