Home

Awesome

#Introduction Zend Framework now misses an important functionality - quick application scaffolding and record management. The project aims at filling this gap with a set of useful components. You may track the project development through the official ZF wiki here: http://framework.zend.com/wiki/display/ZFPROP/Zend_Controller_Scaffolding+-+Alex+Oroshchuk

Overview

This Zend controller extension class allows you to quickly scaffold an feature-rich record management interface using Zend MVC core components. The controllers you would like to scaffold must extend this one, and you will automatically have create, update, delete and list actions with search, sorting and pagination. Current scaffolding implementation is fully based on ZF MVC stack and depends on ALL the components (models, views and certainly controllers).

Please, use the latest beta/RC (see it under Tags).

Features

Is it extensible?

Is it stable?

About 15 functional tests (60+ assertions) are available now, and new tests are added periodically. The component has been used in at least three real-world projects of my own, and will be used in upcoming as well.

How to start using?

It's really easy to use. The only code you have to write to have basic CRUD is the one that extends your controller from Zend_Controller_Scaffolding class and calls

$this->scaffold(new Custom_Model_Extending_Zend_Db_Table())

from its init or any other relevant method. You should take a look at docs folder, but if you are fond of learning by example a demo application showing all major features is available under tests folder Use this app for demo/quick start purposes. Note: PHPUnit tests use it as well.