You are here

public function FeedsProcessor::bundle in Feeds 7.2

Bundle type this processor operates on.

Defaults to the entity type for entities that do not define bundles.

Return value

string|null The bundle type this processor operates on, or NULL if it is undefined.

12 calls to FeedsProcessor::bundle()
FeedsNodeProcessor::existingEntityId in plugins/FeedsNodeProcessor.inc
Get nid of an existing feed item node if available.
FeedsNodeProcessor::getMappingTargets in plugins/FeedsNodeProcessor.inc
Return available mapping targets.
FeedsNodeProcessor::languageOptions in plugins/FeedsNodeProcessor.inc
Overrides parent::languageOptions().
FeedsNodeProcessor::newEntity in plugins/FeedsNodeProcessor.inc
Creates a new node in memory and returns it.
FeedsNodeProcessor::setTargetElement in plugins/FeedsNodeProcessor.inc
Override setTargetElement to operate on a target item that is a node.

... See full list

File

plugins/FeedsProcessor.inc, line 63
Contains FeedsProcessor and related classes.

Class

FeedsProcessor
Abstract class, defines interface for processors.

Code

public function bundle() {
  return $this->config['bundle'];
}