You are here

function taxonomy_csv_term_get_relations in Taxonomy CSV import/export 7.4

Return an array of all related term ids of a given term id or object. Wrapper of taxonomy_csv_term_get_field_values.

1 call to taxonomy_csv_term_get_relations()
taxonomy_csv_line_export in export/taxonomy_csv.export.api.inc
Export a term to a line matching the options.

File

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

Code

function taxonomy_csv_term_get_relations($term_tid) {
  return taxonomy_csv_term_get_field_terms($term_tid, 'taxonomy_relation');
}