创建节点后触发 Drupal 钩子

发布于 2024-09-19 04:08:28 字数 194 浏览 9 评论 0原文

当我创建节点时,我希望它以编程方式创建一些引用刚刚创建的节点的节点。

我想我只需要更改 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 技术交流群。

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

发布评论

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

评论(2

心在旅行 2024-09-26 04:08:28

您想使用 hook_nodeapi ()insert 处理程序:

function mymodule_nodeapi(&$node, $op, $a3 = NULL, $a4 = NULL) {
  switch ($op) {
    case 'insert':
      // $node contains the newly created node
      break;
  }
}

You want to use hook_nodeapi() and the insert handler:

function mymodule_nodeapi(&$node, $op, $a3 = NULL, $a4 = NULL) {
  switch ($op) {
    case 'insert':
      // $node contains the newly created node
      break;
  }
}
水水月牙 2024-09-26 04:08:28

我编写了一个模块,可以提供您正在寻找的内容。您可以在此处找到详细信息:保存后回调?

I've written a module that provides what you're looking for. You can find the details here : Post-save callback?

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