You are here

function hook_signup_data_alter in Signup 7

Same name and namespace in other branches
  1. 6.2 signup.api.php \hook_signup_data_alter()
  2. 6 signup.api.php \hook_signup_data_alter()

Hook to alter signup data before a signup is inserted or updated.

Parameters

stdClass $signup: Reference to the fully-loaded signup object representing the signup.

array $form_values: Array of form values (if any) from the signup being inserted or updated.

2 invocations of hook_signup_data_alter()
signup_edit_form_save_submit in includes/signup_edit_form.inc
Submit callback when saving changes to an existing signup.
signup_sign_up_user in ./signup.module
Signs up a user to a node.

File

./signup.api.php, line 15
This file documents the hooks invoked by the Signup module.

Code

function hook_signup_data_alter(&$signup, $form_values) {

  // TODO
}