如何在custom_comment_form_submit中获取评论ID

时间:2013-03-02 07:53:59

标签: drupal drupal-6 drupal-hooks drupal-comments

如何在comment_form_submit中获取评论ID?

我构建了一个自定义模块,用于发送包含评论详情的电子邮件,例如评论ID 网址 用户名。 但是没有获得评论ID来生成评论网址。

function custom_comment_form_submit($form, &$form_state) {
  //code
}

1 个答案:

答案 0 :(得分:1)

最简单的方法是安装这两个模块。使用令牌,您可以访问可在电子邮件模板中使用的list of tokens,包括评论ID。有关教程,请访问此处(适用于Drupal 7,但它也可用于Drupal 6):How to send email notifications for comments in Drupal 7 with actions & triggers (or the Rules module)

更不用说提供此类功能的整个已构建模块阵列。不要浪费你的时间重新发明轮子。请参阅此列表以获取可用模块的比较:Comment Notifications comparison