You are here

function _crm_core_data_import_migration_statistic_reset in CRM Core 7

Clear cache statistic.

2 calls to _crm_core_data_import_migration_statistic_reset()
crm_core_data_import_dashboard_form_submit in modules/crm_core_data_import/crm_core_data_import.admin.inc
Submit handler for data import dashboard.
crm_core_data_import_migration_batch_finish in modules/crm_core_data_import/crm_core_data_import.admin.inc
Batch API finished callback. Trigger controllers for settings.

File

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

Code

function _crm_core_data_import_migration_statistic_reset($importer) {
  cache_clear_all('crm_core_data_import_statistic:' . $importer->id, 'cache');
}