You are here

function defaultconfig_rebuild_all in Default config 7

Rebuild all default components.

1 call to defaultconfig_rebuild_all()
drush_defaultconfig_rebuild_all in ./defaultconfig.drush.inc
Command callback for defaultconfig-rebuild-all.

File

./defaultconfig.module, line 324
main module file.

Code

function defaultconfig_rebuild_all() {
  features_include();
  $components = defaultconfig_get_components();
  foreach ($components as $name => $component) {
    $component['name'] = $component;
    defaultconfig_component_rebuild($component);
  }
}