You are here

function ocupload_templates_features_revert in One Click Upload 7

Same name and namespace in other branches
  1. 7.2 ocupload.features.inc \ocupload_templates_features_revert()

Implements hook_features_revert().

File

./ocupload.features.inc, line 48

Code

function ocupload_templates_features_revert($module) {
  $defaults = features_get_default('ocupload_templates', $module);

  // Revert.
  foreach ($defaults as $template) {
    _ocupload_templates_save_template($template);
  }
}