function taxonomy_csv_term_get_relations_tids in Taxonomy CSV import/export 6.2
Same name and namespace in other branches
- 6.5 taxonomy_csv.term.api.inc \taxonomy_csv_term_get_relations_tids()
- 6.3 taxonomy_csv.term.api.inc \taxonomy_csv_term_get_relations_tids()
- 6.4 taxonomy_csv.term.api.inc \taxonomy_csv_term_get_relations_tids()
- 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 236 - 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));
}