function encrypt_config_features_rebuild in Encrypt 7.3
Same name and namespace in other branches
- 7.2 includes/encrypt.features.inc \encrypt_config_features_rebuild()
Implements hook_features_rebuild().
1 call to encrypt_config_features_rebuild()
- encrypt_config_features_revert in includes/
encrypt.features.inc - Implements hook_features_revert().
File
- includes/
encrypt.features.inc, line 62 - Provides Features integration for managing configurations.
Code
function encrypt_config_features_rebuild($module) {
$configs = module_invoke($module, 'encrypt_default_configs');
foreach ($configs as $key => $config) {
encrypt_save_config($config, FALSE);
}
}