You are here

function _crm_core_data_import_migration_machine_name in CRM Core 7

Returns machine name.

9 calls to _crm_core_data_import_migration_machine_name()
CivicrmDataSourceHandler::getSourceResourceData in modules/crm_core_data_import/plugins/source/CivicrmDataSourceHandler.inc
Returns source resource data for settings plugin.
CRMCoreDataImport::getMigrationInstances in modules/crm_core_data_import/includes/controllers/CRMCoreDataImport.inc
Returns all available migration instances.
CRMCoreMigrateSQLMap::saveIDMapping in modules/crm_core_data_import/includes/controllers/CRMCoreMigrateSQLMap.inc
Called upon import of one record, we record a mapping from the source key to the destination key. Also may be called, setting the third parameter to NEEDS_UPDATE, to signal an existing record should be remigrated.
crm_core_data_import_deregister_migration in modules/crm_core_data_import/crm_core_data_import.module
Deregister CRM Core data migration.
crm_core_data_import_register_migration in modules/crm_core_data_import/crm_core_data_import.module
Register CRM Core data migration.

... See full list

File

modules/crm_core_data_import/crm_core_data_import.module, line 313
Provides basic functionality for a CRM Core Data Import.

Code

function _crm_core_data_import_migration_machine_name($importer_id, $entity_type, $entity_bundle, $bundle_delta) {
  return _crm_core_data_import_convert_to_machine_name($importer_id . '_' . $entity_type . '_' . $entity_bundle . '_' . $bundle_delta);
}