WORK IN PROGRESS
- Twitter Bootstrap (version 3)
Use your own bootstrap css files within your setup. See twitter bootstrap homepage (tags) for versions.
Add lagged/Zf_Crud
to your composer.json
!
...
<?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;
}