You are here

function context_features_revert in Features 7

Same name and namespace in other branches
  1. 6 includes/features.context.inc \context_features_revert()
  2. 7.2 includes/features.context.inc \context_features_revert()

Implements hook_features_revert().

Parameters

$module: name of module to revert content for

File

includes/features.context.inc, line 50

Code

function context_features_revert($module = NULL) {
  $return = ctools_component_features_revert('context', $module);
  context_invalidate_cache();
  return $return;
}