You are here

function hook_migrate_overview in Migrate 6.2

Same name and namespace in other branches
  1. 7.2 migrate.api.php \hook_migrate_overview()

Provides text to be displayed at the top of the dashboard page (migrate_ui).

1 invocation of hook_migrate_overview()
migrate_overview in ./migrate.module
Call hook_migrate_overview for overall documentation on implemented migrations.

File

./migrate.api.php, line 21
Documentation for hooks defined by Migrate.

Code

function hook_migrate_overview() {
  return t('<p>Listed below are all the migration processes defined for migration
    of our old site to Drupal. Open issues applying to specific migrations
    can be viewed by clicking the migration name. Also, details on how each
    migration will behave when incrementally migrated are provided.</p>
    <p><a href="http://issuetracker.example.com/?project=migration&status=open">Open migration tickets</a></p>');
}