function pathauto_i18n_set_bundle_default in Pathauto i18n 7
Same name and namespace in other branches
- 8 pathauto_i18n.module \pathauto_i18n_set_bundle_default()
Sets a default value for a bundle.
File
- ./
pathauto_i18n.module, line 61 - Provides common functions and callbacks for pathauto_i18n submodules.
Code
function pathauto_i18n_set_bundle_default($entity_type, $bundle, $value) {
variable_set('pathauto_i18n_default_' . $entity_type . '_' . $bundle, $value);
}