You are here

function merci_template_node_info in MERCI (Manage Equipment Reservations, Checkout and Inventory) 6

Implementation of hook_node_info().

File

modules/merci_template/merci_template.module, line 11
merci_template functions

Code

function merci_template_node_info() {
  return array(
    // Reservation nodes.
    'merci_reservation_template' => array(
      'name' => t('Reservation Template'),
      'module' => 'node',
      'has_body' => TRUE,
      'description' => t("A reservation template pre-populates MERCI with the items reserved in a previous reservation."),
    ),
  );
}