You are here

function merci_theme_conflict_grid in MERCI (Manage Equipment Reservations, Checkout and Inventory) 7.2

Same name and namespace in other branches
  1. 6.2 merci.module \merci_theme_conflict_grid()

@todo Please document this function.

See also

http://drupal.org/node/1354

1 call to merci_theme_conflict_grid()
merci_validate_merci_selected_items in includes/api.inc
@file MERCI - Managed Equipment Reservation Checkout and Inventory

File

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

Code

function merci_theme_conflict_grid($type, $title, $start, $end, $value, $vid) {
  return theme('merci_conflict_grid', array(
    'type' => $type,
    'title' => $title,
    'start' => $start,
    'end' => $end,
    'nid' => $value,
    'reservation_nid' => $vid,
  ));
}