You are here

function merci_insert in MERCI (Manage Equipment Reservations, Checkout and Inventory) 6.2

Same name and namespace in other branches
  1. 6 merci.module \merci_insert()
  2. 7.2 merci.module \merci_insert()

Implementation of hook_insert().

File

./merci.module, line 238
MERCI - Managed Equipment Reservation Checkout and Inventory

Code

function merci_insert($node) {
  drupal_write_record("merci_reservation", $node);
  merci_add_reservation_items($node);
}