function domain_locale_features_wipe_tables in Domain Locale 7
Tells Features revert whether to perform a wipe/rebuild.
Parameters
&$defaults: The default values from the feature, passed by reference.
Return value
boolean
File
- ./
domain_locale.module, line 672 - Provides domain specific language settings.
Code
function domain_locale_features_wipe_tables(&$defaults) {
if (!empty($defaults['wipe-domain-locale-tables'])) {
return TRUE;
}
return FALSE;
}