You are here

function migrate_help in Migrate 6

Same name and namespace in other branches
  1. 7.2 migrate.module \migrate_help()

Implementation of hook_help().

File

./migrate.module, line 1128
This module provides tools at "administer >> content >> migrate" for analyzing data from various sources and importing them into Drupal tables.

Code

function migrate_help($page, $arg) {
  switch ($page) {
    case 'admin/content/migrate':
      return t('<p>Defined content sets are listed here. New content sets may be added
        below, and tasks may be executed directly in the browser. A process that is
        actively running will be <span class="migrate-running">highlighted</span>.</p>');
  }
}