You are here

function migrate_upgrade_help in Migrate Upgrade 8

Implements hook_help().

File

./migrate_upgrade.module, line 13
Alert administrators before starting the import process.

Code

function migrate_upgrade_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.migrate_upgrade':
      $output = '<p>' . t('The Drupal Upgrade module provides a one-click upgrade from an earlier version of Drupal. For details, see the <a href=":migrate">online documentation for the Drupal Upgrade module</a> in the handbook on upgrading from previous versions.', [
        ':migrate' => 'https://www.drupal.org/upgrade/migrate',
      ]) . '</p>';
      return $output;
  }
}