You are here

function role_expire_migrate_init in Role Expire 6

Same name and namespace in other branches
  1. 7 role_expire.module \role_expire_migrate_init()

Implementation of hook_migrate_init().

File

./role_expire.module, line 170
Role Expire module

Code

function role_expire_migrate_init() {

  // Don't load migration support unless we need it
  $path = drupal_get_path('module', 'role_expire') . '/role_expire.migrate.inc';
  include_once $path;
}