You are here

public function EntityProcessorBase::bundleKey in Feeds 8.3

The entity's bundle key.

Return value

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

File

src/Feeds/Processor/EntityProcessorBase.php, line 339

Class

EntityProcessorBase
Defines a base entity processor.

Namespace

Drupal\feeds\Feeds\Processor

Code

public function bundleKey() {
  return $this->entityType
    ->getKey('bundle');
}