You are here

function migrate_extras_profile2_uninstall in Migrate Extras 7.2

File

migrate_extras_examples/migrate_extras_profile2/migrate_extras_profile2.install, line 13

Code

function migrate_extras_profile2_uninstall() {
  if ($entities = entity_load_multiple_by_name('profile2_type', array(
    'migrate_extras_profile2',
  ))) {
    list($id) = entity_extract_ids('profile2_type', reset($entities));
    entity_delete('profile2_type', $id);
  }
}