You are here

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

Implements hook_commerce_line_item_type_info().

File

merci_commerce/merci_commerce.module, line 88

Code

function merci_commerce_commerce_line_item_type_info() {
  return array(
    MERCI_FEE => array(
      'name' => t('MERCI Late Fee'),
      'product' => TRUE,
      'description' => t('Adds a late fee for a checked out resource.'),
      'base' => 'merci_commerce_line_item',
    ),
  );
}