Issue #2213451 by andypost, bdone, benjy, penyaskito, chx, claudiu.cristea, damiankloip, gregboggs, InternetDevels, jessehs, jhedstrom, marvil07, mikeryan, pcambra, Xano, YesCT: Update Migrate API in core
2014-03-19 18:56:48 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implements hook_entity_type_alter().
|
|
|
|
*/
|
|
|
|
function migrate_drupal_entity_type_alter(array &$entity_types) {
|
|
|
|
/** @var \Drupal\Core\Config\Entity\ConfigEntityType[] $entity_types */
|
|
|
|
$entity_types['migration']
|
|
|
|
->setClass('Drupal\migrate_drupal\Entity\Migration')
|
2014-03-27 11:54:40 +00:00
|
|
|
->setControllerClass('storage', 'Drupal\migrate_drupal\MigrationStorage');
|
Issue #2213451 by andypost, bdone, benjy, penyaskito, chx, claudiu.cristea, damiankloip, gregboggs, InternetDevels, jessehs, jhedstrom, marvil07, mikeryan, pcambra, Xano, YesCT: Update Migrate API in core
2014-03-19 18:56:48 +00:00
|
|
|
}
|