You are here

function merci_line_item_field_formatter_info in MERCI (Manage Equipment Reservations, Checkout and Inventory) 7.3

Implements hook_field_formatter_info().

File

merci_line_item/merci_line_item.module, line 657
Defines the core MERCI line item entity and API functions interact with line items.

Code

function merci_line_item_field_formatter_info() {
  return array(
    'merci_line_item_label' => array(
      'label' => t('Label with statuses'),
      'description' => t('Display the label of the referenced line items sorted by statuses.'),
      'field types' => array(
        'entityreference',
      ),
      'settings' => array(
        'link' => FALSE,
      ),
    ),
  );
}