You are here

function migrate_init in Migrate 6

File

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

Code

function migrate_init() {

  // Loads the hooks for the supported modules.
  // TODO: Be more lazy - only load when really needed
  migrate_module_include();

  // Add main CSS functionality.
  drupal_add_css(drupal_get_path('module', 'migrate') . '/migrate.css');
}