Drupal 7.12/有机组 7.x-1.3
有谁知道当用户成功创建组时,我如何使用一些 POST 变量(如组 ID、组名等)对站点进行快速 cURL 命中?
我不知道钩子系统在这种情况下是如何工作的。
有机组在 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
}
}
希望有帮助