You are here

function configuration_enable_configuration in Configuration Management 7

Wrapper around _configuration_restore().

1 string reference to 'configuration_enable_configuration'
_configuration_restore in ./configuration.module
Restore the specified modules to the default state.

File

./configuration.module, line 900
Module file for the configuration module, which enables the capture and management of configuration in Drupal.

Code

function configuration_enable_configuration($module) {
  $configuration = configuration_load($module);
  $items[$module] = array_keys($configuration->info['configuration']);
  return _configuration_restore('enable', $items);
}