You are here

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

Implementation of hook_content_extra_fields.

File

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

Code

function merci_content_extra_fields() {
  $extras['merci'] = array(
    'label' => t('MERCI Settings'),
    'description' => t('Allows user to select Reservation status.'),
    'weight' => 100,
  );
  $extras['choice_wrapper'] = array(
    'label' => t('MERCI Choices'),
    'description' => t('Child items included in the Reservation.'),
    'weight' => 80,
  );
  return $extras;
}