rsvp_addedit

Definition

rsvp_addedit($edit)
rsvp/rsvp.module, line 936

Code

<?php
function rsvp_addedit($edit) {
  // if the rsvp already exists
  if ($edit['rid']) {
   return rsvp_update($edit); 
  }
  else {
    $rid = rsvp_create($edit); 
    drupal_goto('node/'. $edit['nid'] .'/rsvp/'. $rid .'/attendees');
  }
}
?>