You are here

GenericContentEntityProcessor.php in Feeds 8.3

File

src/Plugin/Derivative/GenericContentEntityProcessor.php
View source
<?php

namespace Drupal\feeds\Plugin\Derivative;

use Drupal\Component\Plugin\Derivative\DeriverBase;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Entity\ContentEntityTypeInterface;
use Drupal\Core\Plugin\Discovery\ContainerDeriverInterface;
use Drupal\Core\StringTranslation\StringTranslationTrait;
use Symfony\Component\DependencyInjection\ContainerInterface;

/**
 * Provides generic Feeds processor plugin definitions for content entities.
 *
 * @see \Drupal\feeds\Feeds\Processor\GenericContentEntityProcessor
 */
class GenericContentEntityProcessor extends DeriverBase implements ContainerDeriverInterface {
  use StringTranslationTrait;

  /**
   * The entity type manager.
   *
   * @var \Drupal\Core\Entity\EntityTypeManagerInterface
   */
  protected $entityTypeManager;

  /**
   * Constructs new GenericEntityProcessor.
   *
   * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
   *   The entity type manager.
   */
  public function __construct(EntityTypeManagerInterface $entity_type_manager) {
    $this->entityTypeManager = $entity_type_manager;
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container, $base_plugin_id) {
    return new static($container
      ->get('entity_type.manager'));
  }

  /**
   * {@inheritdoc}
   */
  public function getDerivativeDefinitions($base_plugin_definition) {
    foreach ($this->entityTypeManager
      ->getDefinitions() as $entity_type_id => $entity_type) {
      if ($entity_type instanceof ContentEntityTypeInterface) {
        $this->derivatives[$entity_type_id] = $base_plugin_definition;
        $this->derivatives[$entity_type_id]['title'] = $entity_type
          ->getLabel();
        $this->derivatives[$entity_type_id]['description'] = $this
          ->t('Creates @plural_label from feed items.', [
          '@plural_label' => $entity_type
            ->getPluralLabel(),
        ]);
        $this->derivatives[$entity_type_id]['entity_type'] = $entity_type_id;
      }
    }
    return $this->derivatives;
  }

}

Classes

Namesort descending Description
GenericContentEntityProcessor Provides generic Feeds processor plugin definitions for content entities.