You are here

function migrate_extras_migrate_api in Migrate Extras 6

Same name and namespace in other branches
  1. 6.2 migrate_extras.module \migrate_extras_migrate_api()
  2. 7.2 migrate_extras.migrate.inc \migrate_extras_migrate_api()

File

./migrate_extras.module, line 6

Code

function migrate_extras_migrate_api() {

  // Note we enable content (CCK) by default, since almost everyone will need
  // it, but disable the others to avoid function redeclaration errors if/when
  // those modules support migrate directly.
  $api = array(
    'api' => 1,
    'integration modules' => array(
      'content',
      'content_profile' => array(
        'status' => FALSE,
      ),
      'email_registration' => array(
        'status' => FALSE,
      ),
      'filefield' => array(
        'status' => FALSE,
      ),
      'location' => array(
        'status' => FALSE,
      ),
      'location_user' => array(
        'status' => FALSE,
      ),
      'privatemsg' => array(
        'status' => FALSE,
      ),
    ),
  );
  return $api;
}