Pull merge.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / field_attach_delete_bundle.twig
1 /**
2  * Implements hook_field_attach_delete_bundle().
3  */
4 function {{ machine_name }}_field_attach_delete_bundle($entity_type, $bundle, $instances) {
5   // Remove the extra weights variable information for this bundle.
6   $extra_weights = variable_get('field_extra_weights', array());
7   if (isset($extra_weights[$entity_type][$bundle])) {
8     unset($extra_weights[$entity_type][$bundle]);
9     variable_set('field_extra_weights', $extra_weights);
10   }
11 }