web-dev-qa-db-ja.com

名前から分類用語のIDを取得するにはどうすればよいですか?

taxonomy.module functionsのリスト 上の唯一の関数は、私が望んでいるように見えますが、プライベート関数( _ taxonomy_get_tid_from_term )のようです。

分類用語の名前だけがわかっていて、そのIDを調べる必要がある場合、どの機能を使用する必要がありますか?

18
beth

それは taxonomy_get_term_by_name() で、次のコードのように使用します。

$term_array = taxonomy_get_term_by_name('Foo');
$term = reset($term_array); # get the first element of the array which is our term object
print $term->name;
14
Jimajamma

taxonomy_get_term_by_name() トリックを行います:

$terms = taxonomy_get_term_by_name($row->field_term_name);
if (!empty($terms)) {
  $first_term = array_shift($terms);
  print $first_term->tid;
}
22
Clive

この機能は私のために働きました:

/**
 * Return the term id for a given term name.
 */
function _get_tid_from_term_name($term_name) {
  $vocabulary = 'tags';
  $arr_terms = taxonomy_get_term_by_name($term_name, $vocabulary);
  if (!empty($arr_terms)) {
    $arr_terms = array_values($arr_terms);
    $tid = $arr_terms[0]->tid;
  }
  else {
    $vobj = taxonomy_vocabulary_machine_name_load($vocabulary);
    $term = new stdClass();
    $term->name = $term_name;
    $term->vid = $vobj->vid;
    taxonomy_term_save($term);
    $tid = $term->tid;
  }
  return $tid;
}

別の語彙(タグとは異なる)を使用している場合は、次の行の上のコードを変更します。

$vocabulary = 'tags';
1
dashohoxha