名前で用語を読み込む


21

Drupal 7では、exの名前を使用して用語をロードできます。 taxonomy_get_term_by_name($name)

Drupal 8で名を指定して用語をロードする方法はありますか?

回答:


19

この機能は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;
  }

?>

リンクされたブログ投稿はもうロードされていないようです。これを見つけようとしている他の人に役立つかもしれないこの1つを見つけました。btmash.com/article/2016-04-26/...
gcalex5

34

entityTypeManagerを使用するなどして、スニペットコードを使用できます。

$term_name = 'Term Name';
$term = \Drupal::entityTypeManager()
      ->getStorage('taxonomy_term')
      ->loadByProperties(['name' => $term_name]);

2

ごとに複数の値を返さ分類機能を改名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のコードに変換するには、この場合、関数名を置き換えるだけです。


0

エンティティフィールドクエリを使用して、用語のフィールドごとに読み込むこともできます

$result = \Drupal::entityQuery('taxonomy_term')
          ->condition('field_my_field_name', 'Whatever Value')
          ->execute();

0

Drupal 8で用語名で単一の用語IDをロードするには-

$term = \Drupal::entityTypeManager() ->getStorage('taxonomy_term') ->loadByProperties(['name' => $term_name, 'vid' => 'job_category']); $term = reset($term); $term_id = $term->id();

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.