You are here

function answers_notifications_node_insert in Answers 7.4

Implements hook_node_insert().

Notify subscribers of new answer.

File

answers_notifications/answers_notifications.module, line 18

Code

function answers_notifications_node_insert($node) {
  if ($node->type == 'answers_answer') {
    answers_notifications_new_answer_notify($node);
  }
}