如何在application.ini中设置zend表单详细信息
有没有办法在 Zend Framework 的应用程序配置文件(application.ini)中设置 zend 表单详细信息。我正在寻找一种方法将以下详细信息移动到配置默认
- 情况下禁用表单装饰器的方法
- 设置元素前缀路径
- 默认装饰器用于不同元素类型
- 验证器路径
- 插件详细信息
Is there a way to set zend form details in the application config file (application.ini) in Zend Framework. I am looking for a way to move following details to config
- A way to disable form decorators by default
- set element Prefix Path
- default decorator for different element type
- validator path
- plugin details
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以从 Zend 手册本身查看此链接。它讨论了使用 ini 文件来配置表单:
使用 Zend_Config 对象
可以将各种配置添加到您的 ini 文件并将它们应用到表单本身。
Well you can check this link from the Zend Manual itself. It talks about using ini files to configure a form:
Using a Zend_Config Object
You can add various configurations to your ini file and apply them to the form itself.