function taxonomy_csv_term_load_geotaxonomy in Taxonomy CSV import/export 6.4
Same name and namespace in other branches
- 6.5 formats/geotaxonomy.format.inc \taxonomy_csv_term_load_geotaxonomy()
- 6.2 formats/geotaxonomy.format.inc \taxonomy_csv_term_load_geotaxonomy()
- 6.3 formats/geotaxonomy.format.inc \taxonomy_csv_term_load_geotaxonomy()
Get full term with specific geotaxonomy fields from a term id.
Parameters
$tid: The term id to get.
Return value
Full term object with specific fields.
File
- formats/
geotaxonomy.format.inc, line 253 - Plug-in that manages geotaxonomy vocabularies import/export.
Code
function taxonomy_csv_term_load_geotaxonomy($tid) {
$term = taxonomy_csv_term_load($tid);
return $term ? taxonomy_csv_term_get_full_geotaxonomy($term) : FALSE;
}