You are here

function taxonomy_csv_term_get_relations_tids in Taxonomy CSV import/export 6.5

Same name and namespace in other branches
  1. 6.2 taxonomy_csv.term.api.inc \taxonomy_csv_term_get_relations_tids()
  2. 6.3 taxonomy_csv.term.api.inc \taxonomy_csv_term_get_relations_tids()
  3. 6.4 taxonomy_csv.term.api.inc \taxonomy_csv_term_get_relations_tids()
  4. 7.4 taxonomy_csv.term.api.inc \taxonomy_csv_term_get_relations_tids()

Return an array of all related term ids of a given term id.

1 call to taxonomy_csv_term_get_relations_tids()
taxonomy_csv_term_get_full in ./taxonomy_csv.term.api.inc
Complete a base term object.

File

./taxonomy_csv.term.api.inc, line 286
Find, get and set full or detail term items.

Code

function taxonomy_csv_term_get_relations_tids($tid) {
  return array_keys(taxonomy_get_related($tid));
}