Enumeration management with zend framework (ZF)?

Is there any existing project or incubator for managing user-managed user lists? We have several 100 lists (most populated drop-down lists in our application), many of them are quite short, 50 elements, several of which contain several hundred elements and several thousand (<30,000) entries.

We are looking for a database structure and user interface that allows the user to make changes to records.

We looked at the Xyster enumeration, but it does not have any user interface, and it will need work to make it accessible to the database.

A custom “module” can satisfy many of our needs.

+3
source share
1 answer

I do not think that the Zend Framework has what you are looking for. Perhaps you should take a look at some full-text frameworks that automatically create administration pages for Rails-like archives based on model / table definitions. Try looking at CakePHP , Symfony or QCodo in PHP or Ruby on Rails , Django if you are not worried about using PHP. Don't get me wrong, the Zend Framework may do what you want, but it will require a fair bit of custom code.

+2
source

All Articles