You are here

function comment_migrate_types in Migrate 6

Implementation of hook_migrate_types().

File

modules/comment.migrate.inc, line 11
Implementation of comment destination handling

Code

function comment_migrate_types() {
  $types = array(
    'comment' => t('Comment'),
  );
  return $types;
}