You are here

migrate_extras.module in Migrate Extras 7.2

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

File

migrate_extras.module
View source
<?php

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;
    }
  }
}

Functions