You are here

function pathauto_i18n_set_bundle_default in Pathauto i18n 8

Same name and namespace in other branches
  1. 7 pathauto_i18n.module \pathauto_i18n_set_bundle_default()

Sets a default value for a bundle.

File

./pathauto_i18n.module, line 69
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);
}