diff --git a/core/modules/migrate/migrate.module b/core/modules/migrate/migrate.module index e69de29..a931b89 100644 --- a/core/modules/migrate/migrate.module +++ b/core/modules/migrate/migrate.module @@ -0,0 +1,23 @@ +' . t('About') . ''; + $output .= '

'; + $output .= t('The Migration API provides services for migrating data from one place to another (usually, importing it into Drupal entities). The migrate module implements the general-purpose framework.'); + $output .= '

'; + $output .= t('The easiest way to understand migrate is to start with import: the source plugin provides rows. Each row is handed over to a series of process plugins and finally to the destination plugin for saving.'); + $output .= '

'; + $output .= '

' . t('Usage') . '

'; + $output .= t(''); + $output .= '

' . t('See') . ' '; + $output .= l('drupal.org/node/2127611', 'https://drupal.org/node/2127611'); + $output .= ' ' . t('for more information.') . '

'; + return $output; + } +}