You are here

function taxonomy_csv_term_get_relations_tids in Taxonomy CSV import/export 7.4

Same name and namespace in other branches
  1. 6.5 taxonomy_csv.term.api.inc \taxonomy_csv_term_get_relations_tids()
  2. 6.2 taxonomy_csv.term.api.inc \taxonomy_csv_term_get_relations_tids()
  3. 6.3 taxonomy_csv.term.api.inc \taxonomy_csv_term_get_relations_tids()
  4. 6.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 or object. Wrapper of taxonomy_csv_term_get_field_values.

File

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

Code

function taxonomy_csv_term_get_relations_tids($term_tid) {
  return taxonomy_csv_term_get_field_values($term_tid, 'taxonomy_relation');
}