function taxonomy_xml_tcs_format_info in Taxonomy import/export via XML 6.2
Same name and namespace in other branches
- 7 formats/tcs_format.inc \taxonomy_xml_tcs_format_info()
Return information about this format
Implimentation of (internal) taxonomy_xml_HOOK_format_info()
File
- ./
tcs_format.inc, line 15 - Include routines for the Taxon Concepts Schema as used by "the Encyclopedia of Life" original XML parsing and taxonomy/term creation. and others.
Code
function taxonomy_xml_tcs_format_info() {
$formats = array(
'TCS' => array(
'id' => 'TCS',
'name' => 'Taxon Concept Scheme',
'module' => 'taxonomy_xml',
'parser_callback' => 'taxonomy_xml_tcs_parse',
),
);
return $formats;
}