You are here

migrate_extras.module in Migrate Extras 6.2

Same filename and directory in other branches
  1. 6 migrate_extras.module
  2. 7.2 migrate_extras.module

Not much here. See the include files in this directory.

File

migrate_extras.module
View source
<?php

/**
 * @file
 * Not much here. See the include files in this directory.
 */
function migrate_extras_init() {

  // Set variable to FALSE to disable rules processing.
  if (module_exists('rules') && !variable_get('migrate_extras_rules', TRUE)) {
    foreach (rules_get_event_sets() as $key => $set) {
      $GLOBALS['conf']['rules_inactive_sets'][] = $key;
    }
  }
}

/*
 * Implementation of hook_migrate_api().
 */
function migrate_extras_migrate_api() {
  $api = array(
    'api' => 2,
    'destination handlers' => array(
      'MigratePathautoHandler',
      'MigrateNodewordsNodeHandler',
      'MigratePageTitleNodeHandler',
      'MigrateUuidHandler',
      'MigrateUuidNodeHandler',
    ),
    'field handlers' => array(
      'MigrateCckPhoneHandler',
      'MigrateContentTaxonomyFieldHandler',
      'MigrateDateFieldHandler',
      'MigrateEmvideoHandler',
    ),
  );
  return $api;
}

Functions

Namesort descending Description
migrate_extras_init @file Not much here. See the include files in this directory.
migrate_extras_migrate_api