You are here

protected function MigrationConfigurationTrait::getFollowUpMigrationTags in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/migrate_drupal/src/MigrationConfigurationTrait.php \Drupal\migrate_drupal\MigrationConfigurationTrait::getFollowUpMigrationTags()

Returns the follow-up migration tags.

Return value

string[]

1 call to MigrationConfigurationTrait::getFollowUpMigrationTags()
MigrationConfigurationTrait::getMigrations in core/modules/migrate_drupal/src/MigrationConfigurationTrait.php
Gets the migrations for import.

File

core/modules/migrate_drupal/src/MigrationConfigurationTrait.php, line 185

Class

MigrationConfigurationTrait
Configures the appropriate migrations for a given source Drupal database.

Namespace

Drupal\migrate_drupal

Code

protected function getFollowUpMigrationTags() {
  if ($this->followUpMigrationTags === NULL) {
    $this->followUpMigrationTags = $this
      ->getConfigFactory()
      ->get('migrate_drupal.settings')
      ->get('follow_up_migration_tags') ?: [];
  }
  return $this->followUpMigrationTags;
}