You are here

public function EntityProcessorBase::entityTypeLabelPlural in Feeds 8.3

Returns the plural label of the entity type being processed.

Return value

string The plural label of the entity type.

1 call to EntityProcessorBase::entityTypeLabelPlural()
EntityProcessorBase::getItemLabelPlural in src/Feeds/Processor/EntityProcessorBase.php
Returns the plural label for items being created, updated, or deleted.

File

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

Class

EntityProcessorBase
Defines a base entity processor.

Namespace

Drupal\feeds\Feeds\Processor

Code

public function entityTypeLabelPlural() {
  return $this->entityType
    ->getPluralLabel();
}