src/Drupal/Driver/Cores/Drupal6.php 1 location
|
@@ 355-361 (lines=7) @@
|
| 352 |
|
} |
| 353 |
|
|
| 354 |
|
// If `parent` is set, look up a term in this vocab with that name. |
| 355 |
|
if (isset($term->parent)) { |
| 356 |
|
$parent = \taxonomy_get_term_by_name($term->parent); |
| 357 |
|
if (!empty($parent)) { |
| 358 |
|
$parent = reset($parent); |
| 359 |
|
$term->parent = $parent->tid; |
| 360 |
|
} |
| 361 |
|
} |
| 362 |
|
|
| 363 |
|
if (empty($term->vid)) { |
| 364 |
|
throw new \Exception(sprintf('No "%s" vocabulary found.')); |
src/Drupal/Driver/Cores/Drupal7.php 1 location
|
@@ 376-382 (lines=7) @@
|
| 373 |
|
} |
| 374 |
|
|
| 375 |
|
// If `parent` is set, look up a term in this vocab with that name. |
| 376 |
|
if (isset($term->parent)) { |
| 377 |
|
$parent = \taxonomy_get_term_by_name($term->parent, $term->vocabulary_machine_name); |
| 378 |
|
if (!empty($parent)) { |
| 379 |
|
$parent = reset($parent); |
| 380 |
|
$term->parent = $parent->tid; |
| 381 |
|
} |
| 382 |
|
} |
| 383 |
|
|
| 384 |
|
if (empty($term->vid)) { |
| 385 |
|
throw new \Exception(sprintf('No "%s" vocabulary found.')); |