回答:
この機能はDrupal 8では非推奨のようです。代わりにtaxonomy_term_load_multiple_by_name関数を
使用してください。
例
<?php
/**
* Utility: find term by name and vid.
* @param null $name
* Term name
* @param null $vid
* Term vid
* @return int
* Term id or 0 if none.
*/
protected function getTidByName($name = NULL, $vid = NULL) {
$properties = [];
if (!empty($name)) {
$properties['name'] = $name;
}
if (!empty($vid)) {
$properties['vid'] = $vid;
}
$terms = \Drupal::entityManager()->getStorage('taxonomy_term')->loadByProperties($properties);
$term = reset($terms);
return !empty($term) ? $term->id() : 0;
}
?>
entityTypeManagerを使用するなどして、スニペットコードを使用できます。
$term_name = 'Term Name';
$term = \Drupal::entityTypeManager()
->getStorage('taxonomy_term')
->loadByProperties(['name' => $term_name]);
ごとに複数の値を返さ分類機能を改名、taxonomy_get_term_by_name($name, $vocabulary = NULL)
名前が変更されましたtaxonomy_term_load_multiple_by_name($name, $vocabulary = NULL)
。最初の関数のコードを見て、それを2番目の関数のコードと比較すると、最も関連性の高い違いは、の呼び出しをの呼び出しに置き換えたtaxonomy_term_load_multiple(array(), $conditions)
ことentity_load_multiple_by_properties('taxonomy_term', $values)
です。
// Drupal 7
function taxonomy_get_term_by_name($name, $vocabulary = NULL) {
$conditions = array('name' => trim($name));
if (isset($vocabulary)) {
$vocabularies = taxonomy_vocabulary_get_names();
if (isset($vocabularies[$vocabulary])) {
$conditions['vid'] = $vocabularies[$vocabulary]->vid;
}
else {
// Return an empty array when filtering by a non-existing vocabulary.
return array();
}
}
return taxonomy_term_load_multiple(array(), $conditions);
}
// Drupal 8
function taxonomy_term_load_multiple_by_name($name, $vocabulary = NULL) {
$values = array('name' => trim($name));
if (isset($vocabulary)) {
$vocabularies = taxonomy_vocabulary_get_names();
if (isset($vocabularies[$vocabulary])) {
$values['vid'] = $vocabulary;
}
else {
// Return an empty array when filtering by a non-existing vocabulary.
return array();
}
}
return entity_load_multiple_by_properties('taxonomy_term', $values);
}
以来taxonomy_term_load_multiple_by_name()
、非推奨としてマークされていない、あなたはまだあなたが使用するために使用される機能を使用することができますtaxonomy_get_term_by_name()
。どちらも同じ引数を必要とするため、Drupal 7のコードをDrupal 8のコードに変換するには、この場合、関数名を置き換えるだけです。