You are here

protected function Upgrade7Test::getAvailablePaths in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/migrate_drupal_ui/tests/src/Functional/d7/Upgrade7Test.php \Drupal\Tests\migrate_drupal_ui\Functional\d7\Upgrade7Test::getAvailablePaths()

Gets the available upgrade paths.

Return value

string[] An array of available upgrade paths.

Overrides MigrateUpgradeTestBase::getAvailablePaths

File

core/modules/migrate_drupal_ui/tests/src/Functional/d7/Upgrade7Test.php, line 141

Class

Upgrade7Test
Tests Drupal 7 upgrade using the migrate UI.

Namespace

Drupal\Tests\migrate_drupal_ui\Functional\d7

Code

protected function getAvailablePaths() {
  return [
    'aggregator',
    'block',
    'book',
    'color',
    'comment',
    'contact',
    'ctools',
    'date',
    'dblog',
    'email',
    'entity_translation',
    'entityreference',
    'field',
    'field_sql_storage',
    'file',
    'filter',
    'forum',
    'i18n_block',
    'i18n_sync',
    'i18n_variable',
    'image',
    'link',
    'list',
    'menu',
    'node',
    'number',
    'options',
    'path',
    'phone',
    'rdf',
    'search',
    'shortcut',
    'statistics',
    'system',
    'taxonomy',
    'text',
    'title',
    'user',
    // Include modules that do not have an upgrade path and are enabled in the
    // source database.
    'blog',
    'contextual',
    'date_api',
    'entity',
    'field_ui',
    'help',
    'php',
    'simpletest',
    'toolbar',
    'translation',
    'trigger',
  ];
}