Is there any existing project or incubator to manage user administratable lists of options? We have several 100 lists (most populate dropdowns in our application), many are quite short < 50 items, several with a few hundred items and a handful with thousands (<30,000) entries.
是否有任何现有项目或孵化器来管理用户可管理的选项列表?我们有几百个列表(在我们的应用程序中大多数填充下拉列表),很多是非常短的<50个项目,几个有几百个项目和一些有数千(<30,000)条目。
What we are looking for is a database based structure and UI that lets a user make edits to entries.
我们要寻找的是基于数据库的结构和UI,允许用户对条目进行编辑。
We took a look at Xyster enum but is lacks any UI and would need work to make it DB capable.
我们看了一下Xyster枚举,但缺少任何UI,需要工作才能使其具备数据库功能。
A user preferences "module" might meet many of our needs.
用户首选项“模块”可能满足我们的许多需求。
1 个解决方案
#1
2
I don't think that Zend Framework has what you are looking for. You might be better off looking at some full-stack frameworks that will generate Rails-like scaffold admin pages automatically based on model/table definitions. Try looking at CakePHP, Symfony or QCodo in PHP or Ruby on Rails, Django if you are not bothered about using PHP. Don't get me wrong, Zend Framework can do what you want but it will require a fair bit of custom code.
我不认为Zend Framework有你想要的东西。您可能最好不要查看一些基于模型/表定义自动生成类似Rails的脚手架管理页面的全栈框架。尝试在PHP或Ruby on Rails,Django中查看CakePHP,Symfony或QCodo,如果您不想使用PHP。不要误会我的意思,Zend Framework可以做你想要的,但它需要相当多的自定义代码。
#1
2
I don't think that Zend Framework has what you are looking for. You might be better off looking at some full-stack frameworks that will generate Rails-like scaffold admin pages automatically based on model/table definitions. Try looking at CakePHP, Symfony or QCodo in PHP or Ruby on Rails, Django if you are not bothered about using PHP. Don't get me wrong, Zend Framework can do what you want but it will require a fair bit of custom code.
我不认为Zend Framework有你想要的东西。您可能最好不要查看一些基于模型/表定义自动生成类似Rails的脚手架管理页面的全栈框架。尝试在PHP或Ruby on Rails,Django中查看CakePHP,Symfony或QCodo,如果您不想使用PHP。不要误会我的意思,Zend Framework可以做你想要的,但它需要相当多的自定义代码。