ZF Zend 表单验证器检查是否允许用户更改字段?
是否可以为 zend 表单编写一个验证器,检查用户是否有权更改表单字段?意味着用户看到该字段,但如果在未经许可的情况下尝试(没有 acl 权限),他会收到错误消息?随后,这意味着如果不允许用户更改该字段,则该字段将被停用。
is it possible to write a validator for a zend form, which checks if the user has the right to change a form field? Means the user sees the field, but if tries even without permission (no acl right), he receives an error message? subsequent this means a field is deactivated if the user is not permitted to change the field.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您将需要使用
Zend_Acl
来检查权限。你会想要这样的东西:Your going to want to use
Zend_Acl
to check permissions. You will want something like this: