function hook_field_attach_rename_bundle

hook_field_attach_rename_bundle($entity_type, $bundle_old, $bundle_new)

Act on field_attach_rename_bundle().

This hook is invoked after the field module has performed the operation.

See field_attach_rename_bundle() for details and arguments.

Related topics

File

modules/field/field.api.php, line 1608
Hooks provided by the Field module.

Code

function hook_field_attach_rename_bundle($entity_type, $bundle_old, $bundle_new) {
  // Update the extra weights variable with new information.
  if ($bundle_old !== $bundle_new) {
    $extra_weights = variable_get('field_extra_weights', array());
    if (isset($info[$entity_type][$bundle_old])) {
      $extra_weights[$entity_type][$bundle_new] = $extra_weights[$entity_type][$bundle_old];
      unset($extra_weights[$entity_type][$bundle_old]);
      variable_set('field_extra_weights', $extra_weights);
    }
  }
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!field!field.api.php/function/hook_field_attach_rename_bundle/7.x