You are here

protected function Upgrade6Test::getAvailablePaths in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/migrate_drupal_ui/tests/src/Functional/d6/Upgrade6Test.php \Drupal\Tests\migrate_drupal_ui\Functional\d6\Upgrade6Test::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/d6/Upgrade6Test.php, line 142

Class

Upgrade6Test
Tests Drupal 6 upgrade using the migrate UI.

Namespace

Drupal\Tests\migrate_drupal_ui\Functional\d6

Code

protected function getAvailablePaths() {
  return [
    'aggregator',
    'block',
    'book',
    'comment',
    'contact',
    'content',
    'date',
    'email',
    'filefield',
    'filter',
    'forum',
    'i18nblocks',
    'i18ncontent',
    'i18nmenu',
    'i18nprofile',
    'i18nsync',
    'imagecache',
    'imagefield',
    'menu',
    'node',
    'nodereference',
    'optionwidgets',
    'path',
    'search',
    'statistics',
    'system',
    'taxonomy',
    'text',
    'translation',
    'upload',
    'user',
    'userreference',
    // Include modules that do not have an upgrade path and are enabled in the
    // source database'.
    'date_api',
    'date_timezone',
    'event',
    'imageapi',
    'number',
    'php',
    'profile',
    'variable_admin',
  ];
}