ContentEntityDeriver.php

Same filename in this branch
  1. 11.x core/modules/migrate_drupal/src/Plugin/migrate/source/ContentEntityDeriver.php
Same filename in other branches
  1. 9 core/modules/migrate_drupal/src/Plugin/migrate/source/ContentEntityDeriver.php
  2. 8.9.x core/modules/migrate_drupal/src/Plugin/migrate/source/ContentEntityDeriver.php
  3. 10 core/modules/migrate_drupal/src/Plugin/migrate/source/ContentEntityDeriver.php

Namespace

Drupal\migrate\Plugin\migrate\source

File

core/modules/migrate/src/Plugin/migrate/source/ContentEntityDeriver.php

View source
<?php

namespace Drupal\migrate\Plugin\migrate\source;

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

/**
 * Deriver for content entity source plugins.
 */
class ContentEntityDeriver extends DeriverBase implements ContainerDeriverInterface {
    
    /**
     * Constructs a new ContentEntityDeriver.
     *
     * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entityTypeManager
     *   The entity type manager.
     */
    public function __construct(EntityTypeManagerInterface $entityTypeManager) {
    }
    
    /**
     * {@inheritdoc}
     */
    public static function create(ContainerInterface $container, $base_plugin_id) : static {
        return new static($container->get('entity_type.manager'));
    }
    
    /**
     * {@inheritdoc}
     */
    public function getDerivativeDefinitions($base_plugin_definition) : ?array {
        $this->derivatives = [];
        foreach ($this->entityTypeManager
            ->getDefinitions() as $id => $definition) {
            if ($definition instanceof ContentEntityTypeInterface) {
                $this->derivatives[$id] = $base_plugin_definition;
                // Provide entity_type so the source can be used apart from a deriver.
                $this->derivatives[$id]['entity_type'] = $id;
            }
        }
        return parent::getDerivativeDefinitions($base_plugin_definition);
    }

}

Classes

Title Deprecated Summary
ContentEntityDeriver Deriver for content entity source plugins.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.