You are here

protected function MerciTypeProcessor::entityInfo in MERCI (Manage Equipment Reservations, Checkout and Inventory) 7.2

Implements parent::entityInfo().

File

modules/merci_import/MerciTypeProcessor.inc, line 23
Class definition of FeedsNodeProcessor.

Class

MerciTypeProcessor
Creates nodes from feed items.

Code

protected function entityInfo() {
  $info = parent::entityInfo();
  $info['label'] = t('MERCI type');
  $info['label plural'] = t('MERCI types');
  return $info;
}