function drush_defaultconfig_rebuild_all in Default config 7
Command callback for defaultconfig-rebuild-all.
File
- ./
defaultconfig.drush.inc, line 23  - Drush integration for default config.
 
Code
function drush_defaultconfig_rebuild_all() {
  if (drush_confirm(dt('All configuration will be rebuilt. Do you want to continue?'))) {
    defaultconfig_rebuild_all();
    drush_log(dt('All components have been rebuilt.'), 'ok');
  }
}