将验证限制在创建页面而不是编辑页面
将自定义验证检查限制在添加页面而不是编辑页面的最佳方法是什么?
What is the best way to limit your custom validation check to the add page and not the edit page?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 arg() 函数检查您是否位于 /node/add/... 页面。尝试将 hook_form_alter 实现中的第一行更改为读取...
You could use the arg() function to check that you're on the /node/add/... page. Try changing the first line inside your hook_form_alter implementation to read...