You are here

function configuration_detect_overrides in Configuration Management 7

Detect differences between DB and code components of a feature.

1 call to configuration_detect_overrides()
configuration_diff in ./configuration.admin.inc
Page callback to display the differences between what's in code and what is in the db.

File

./configuration.export.inc, line 223

Code

function configuration_detect_overrides($component, $identifier) {
  if (!($cache = cache_get("{$component}:{$identifier}", 'cache_configuration'))) {
    drupal_set_message(t("Could not find diff {$component}:{$identifier}"), 'error');
    return FALSE;
  }
  return $cache->data;
}