You are here

function scald_context_config_features_revert in Scald: Media Management made easy 7

Reverts context config.

This function overrides the fallback function defined in features/includes/features.ctools.inc to clear Scald cache after a features-revert.

File

./scald.module, line 2469
The Scald Core, which handles all Scald Registries and dispatch.

Code

function scald_context_config_features_revert($module) {
  ctools_component_features_revert('scald_context_config', $module);
  cache_clear_all('*', 'cache_scald', TRUE);
}