将验证限制在创建页面而不是编辑页面

发布于 2024-10-18 05:09:23 字数 38 浏览 1 评论 0原文

将自定义验证检查限制在添加页面而不是编辑页面的最佳方法是什么?

What is the best way to limit your custom validation check to the add page and not the edit page?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

七婞 2024-10-25 05:09:23

您可以使用 arg() 函数检查您是否位于 /node/add/... 页面。尝试将 hook_form_alter 实现中的第一行更改为读取...

if($form_id === 'external_favourite_node_form' && arg(1) == 'add') {

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...

if($form_id === 'external_favourite_node_form' && arg(1) == 'add') {
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文