Drupal完成挂钩(og)

时间:2012-04-10 16:41:35

标签: php drupal

Drupal 7.12 /有机组7.x-1.3

当用户成功创建群组时,是否有人知道如何对具有少量POST变量的网站(例如群组ID,群组名称等)进行快速cURL点击?

我不知道在这种情况下钩子系统是如何工作的。

1 个答案:

答案 0 :(得分:0)

有机组在Drupal 7中定义为实体,因此您可以在自定义模块中实现hook_entity_insert以对成功创建组进行响应:

function MYMODULE_entity_insert($entity, $type) {
  if ($type == 'group') {
    $group_id = $entity->gid;

    // Install the Devel module and run the following code to get a full
    // breakdown of what's available in the $entity object
    dpm($entity);

    // Perform your cURL here
  }
}

希望有所帮助