You are here

public function MigratePull::__construct in CMS Content Sync 2.0.x

Same name and namespace in other branches
  1. 8 modules/cms_content_sync_migrate_acquia_content_hub/src/Form/MigratePull.php \Drupal\cms_content_sync_migrate_acquia_content_hub\Form\MigratePull::__construct()
  2. 2.1.x modules/cms_content_sync_migrate_acquia_content_hub/src/Form/MigratePull.php \Drupal\cms_content_sync_migrate_acquia_content_hub\Form\MigratePull::__construct()

Constructs a new FieldStorageAddForm object.

@internal param \Drupal\Core\Entity\EntityManagerInterface $entity_manager The entity manager.* The entity manager.

Parameters

\Drupal\acquia_contenthub\EntityManager $acquia_entity_manager:

\Drupal\Core\Entity\EntityTypeBundleInfoInterface $entity_type_bundle_info:

\Drupal\Core\Field\FieldTypePluginManagerInterface $field_type_plugin_manager: The field type plugin manager.

\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The configuration factory.

\Drupal\Core\Extension\ModuleHandler $module_handler:

\Drupal\Core\Entity\EntityTypeManager $entity_type_manager:

Overrides MigrationBase::__construct

File

modules/cms_content_sync_migrate_acquia_content_hub/src/Form/MigratePull.php, line 26

Class

MigratePull
Migrate a Acquia Content Hub Filter to Content Sync.

Namespace

Drupal\cms_content_sync_migrate_acquia_content_hub\Form

Code

public function __construct(EntityManager $acquia_entity_manager, EntityTypeBundleInfoInterface $entity_type_bundle_info, FieldTypePluginManagerInterface $field_type_plugin_manager, ConfigFactoryInterface $config_factory, ModuleHandler $moduleHandler, EntityTypeManager $entity_type_manager) {
  parent::__construct($acquia_entity_manager, $entity_type_bundle_info, $field_type_plugin_manager, $config_factory, $moduleHandler, $entity_type_manager);
}