如何捕捉一般节点/添加形式?
我有一个自定义模块,想要捕获 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看看 hook_form_alter 。它应该能够做你正在寻找的事情。
Take a look at hook_form_alter. It should be able to do what you're looking for.
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.