protected function FeedsFieldCollectionProcessor::entityInfo in Field collection feeds 7
Implements parent::entityInfo().
File
- plugins/
FeedsFieldCollectionProcessor.inc, line 21 - Class definition of FeedsFieldCollectionProcessor.
Class
- FeedsFieldCollectionProcessor
- Creates field collection from feed items.
Code
protected function entityInfo() {
$info = parent::entityInfo();
$info += array(
'label plural' => $info['label'],
);
return $info;
}