Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. function simplenews_statistics_node_insert($node) {
  2. if ($node->type == 'simplenews') {
  3. // Create corresponding record in {simplenews_statistics} table.
  4. $record = array(
  5. 'nid' => $node->nid,
  6. );
  7. drupal_write_record('simplenews_statistics', $record);
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement