创建节点后触发 Drupal 钩子
当我创建节点时,我希望它以编程方式创建一些引用刚刚创建的节点的节点。
我想我只需要更改 form_alter 提交函数来调用自定义函数来创建节点。
检查输出 $form_state 我可以看到 NID 为 Null。这对我来说意味着我的节点是在提交被触发后创建的。这是有道理的。如何在创建节点后调用代码运行,以便我可以自动创建一些引用的节点?
When I create a node I want it to programmatically create some nodes that reference the node just created.
I though I would just need to change form_alter submit function for my form to call a custom function to create the nodes.
Examining the output $form_state I can see that the NID is Null. This would mean to me that my node is created after the submit has been fired. It makes sense. How can I call code to run after the node has been created so that I can automatically create some nodes that reference?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您想使用
hook_nodeapi ()
和insert
处理程序:You want to use
hook_nodeapi()
and theinsert
handler:我编写了一个模块,可以提供您正在寻找的内容。您可以在此处找到详细信息:保存后回调?
I've written a module that provides what you're looking for. You can find the details here : Post-save callback?