You are here

protected function EntityProcessorBase::getTypeProcessorManager in Content Synchronizer 8

Same name and namespace in other branches
  1. 8.2 src/Processors/Entity/EntityProcessorBase.php \Drupal\content_synchronizer\Processors\Entity\EntityProcessorBase::getTypeProcessorManager()
  2. 3.x src/Processors/Entity/EntityProcessorBase.php \Drupal\content_synchronizer\Processors\Entity\EntityProcessorBase::getTypeProcessorManager()

Get the TypeProcessor plugin manager.

Return value

\Drupal\content_synchronizer\Processors\Type\TypeProcessorPluginManager The type processor manager service.

File

src/Processors/Entity/EntityProcessorBase.php, line 537

Class

EntityProcessorBase
The entity processor base.

Namespace

Drupal\content_synchronizer\Processors\Entity

Code

protected function getTypeProcessorManager() {
  if (!$this->typeProcessorManager) {
    $this->typeProcessorManager = \Drupal::service(TypeProcessorPluginManager::SERVICE_NAME);
  }
  return $this->typeProcessorManager;
}