You are here

function signup_node_update in Signup 7

Implements hook_node_update().

File

./signup.module, line 802
The Signup module (http://drupal.org/project/signup) manages replies to nodes. In particular, it's good for event management. Signup supports sending reminder emails and automatically closing signups for nodes with a start time, via the Event…

Code

function signup_node_update($node) {
  module_load_include('inc', 'signup', 'includes/node_form');
  signup_save_node($node, 'update');
}