You are here

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

Implements hook_field_formatter_info().

File

merci_commerce/merci_commerce.module, line 227

Code

function merci_commerce_field_formatter_info() {
  return array(
    'merci_commerce_reference_view' => array(
      'label' => t('Product View'),
      'description' => t('Display the products showing checkout status.'),
      'field types' => array(
        'commerce_product_reference',
      ),
    ),
  );
}