You are here

function socialmedia_profile_features_revert in Social media 7

Implementation of hook_features_revert()

1 call to socialmedia_profile_features_revert()
socialmedia_profile_features_rebuild in ./socialmedia.features.inc
Implementation of hook_features_rebuild()

File

./socialmedia.features.inc, line 79

Code

function socialmedia_profile_features_revert($module) {
  if ($data = features_get_default('socialmedia_profile', $module)) {
    foreach ($data as $name => $profile) {
      socialmedia_profile_save($profile);
    }
  }
}