function entity_features_revert in Entity API 7
Implements hook_features_revert().
Features component callback.
File
- ./
entity.features.inc, line 190 - Provides Features integration for entity types using the CRUD API.
Code
function entity_features_revert($module, $entity_type) {
return entity_features_get_controller($entity_type)
->revert($module);
}