You are here

protected function FeedsTermProcessor::entityInfo in Feeds 7.2

Implements parent::entityInfo().

Overrides FeedsProcessor::entityInfo

File

plugins/FeedsTermProcessor.inc, line 23
FeedsTermProcessor class.

Class

FeedsTermProcessor
Feeds processor plugin. Create taxonomy terms from feed items.

Code

protected function entityInfo() {
  $info = parent::entityInfo();
  $info['label plural'] = t('Terms');
  $info['bundle name'] = t('Vocabulary');
  return $info;
}