如何捕捉一般节点/添加形式?

发布于 2024-11-18 01:43:18 字数 136 浏览 1 评论 0原文

我有一个自定义模块,想要捕获 node/add ,但在表单 hook_nodeapi() 中它没有显示。

我需要这个来限制对一般节点创建概述表单的访问。设置权限对我来说不是解决方案,因为我的用户需要正确的“创建内容”

I have a custom module and want to catch node/add , but inside form hook_nodeapi() it doesn't show up.

I need this, to restrict access to the general node creation overview form. Setting the rights is no solution for me, because my users need the right "create content"

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

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

发布评论

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

评论(2

落花随流水 2024-11-25 01:43:18

看看 hook_form_alter 。它应该能够做你正在寻找的事情。

Take a look at hook_form_alter. It should be able to do what you're looking for.

手长情犹 2024-11-25 01:43:18

Drupal 节点模块已经提供了每种内容类型的权限,因此您可以在管理/用户/权限页面中定义权限。或者,您可以在自定义模块中使用 hook_perm 定义自己的权限,并在自定义模块中使用该权限。

Drupal node module already provides the permissions for each content type so you can define permissions in admin/user/permissions page. Alternatively you can define your own permission using hook_perm in your custom module and use that permissions in your custom module.

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