You are here

function hook_features_disable_feature in Features 7.2

Component hook. Called when a feature gets disabled.

Parameters

string $module_name: Name of the feature that was disabled.

See also

\_features_restore()

1 function implements hook_features_disable_feature()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

node_features_disable_feature in includes/features.node.inc
Implements hook_features_disable_feature().

File

./features.api.php, line 281
Hooks provided by the features module.

Code

function hook_features_disable_feature($module_name) {

  // React to the feature being disabled.
}