Skip to content
Snippets Groups Projects
Commit b5e43a99 authored by Angie Byron's avatar Angie Byron
Browse files

#876762 follow-up by yched: Move taxonomy vocabulary rename checking logic to...

#876762 follow-up by yched: Move taxonomy vocabulary rename checking logic to hook_taxonomy_vocabulary_update().
parent aa301ada
No related branches found
No related tags found
No related merge requests found
......@@ -441,19 +441,19 @@ function taxonomy_vocabulary_delete($vid) {
}
/**
* Implements hook_field_attach_rename_bundle().
* Implements hook_taxonomy_vocabulary_update().
*/
function taxonomy_field_attach_rename_bundle($entity_type, $bundle_old, $bundle_new) {
if ($entity_type == 'taxonomy_term') {
// Reflect machine name changes in the definitions of existing 'taxonomy'
// fields.
function taxonomy_taxonomy_vocabulary_update($vocabulary) {
// Reflect machine name changes in the definitions of existing 'taxonomy'
// fields.
if (!empty($vocabulary->old_machine_name) && $vocabulary->old_machine_name != $vocabulary->machine_name) {
$fields = field_read_fields();
foreach ($fields as $field_name => $field) {
$update = FALSE;
if ($field['type'] == 'taxonomy_term_reference') {
foreach ($field['settings']['allowed_values'] as $key => &$value) {
if ($value['vocabulary'] == $bundle_old) {
$value['vocabulary'] = $bundle_new;
if ($value['vocabulary'] == $vocabulary->old_machine_name) {
$value['vocabulary'] = $vocabulary->machine_name;
$update = TRUE;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment