在 Symfony 1.2 (PHP) 中,如何向管理生成的控制面板添加验证?
我在控制面板应用程序中创建了具有以下结构的模块(测试):
- 配置
- 操作(包含generator.yml)
- 模板
我使用管理生成器来生成控制面板。如何向控制面板中显示的表单添加验证?
I have created module ( test ) having following structure within control panel application:
- config
- actions ( contains generator.yml)
- templates
I have used admin generator to generate the control panel. How can I add validation to the form displayed in control panel?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须在表单的配置方法中设置验证。
阅读更多相关信息:http://www.symfony-project。 org/forms/1_2/en/02-Form-Validation
您将在 /lib/form/ 中找到所有表单
you will have to setup the validation inside the configure method of your form.
read more about here: http://www.symfony-project.org/forms/1_2/en/02-Form-Validation
you will find all forms in /lib/form/