You are here

function taxonomy_xml_mesh_format_info in Taxonomy import/export via XML 6.2

Return information about this format

Implimentation of (internal) taxonomy_xml_HOOK_format_info()

File

./mesh_format.inc, line 23
Include routines for the Medical Subject Headings Schema [MeSH] as used by http://www.nlm.nih.gov/mesh/

Code

function taxonomy_xml_mesh_format_info() {
  $formats = array(
    'mesh' => array(
      'id' => 'mesh',
      'name' => 'MEdical Subject Headings, XML format',
      'module' => 'taxonomy_xml',
      'parser_callback' => 'taxonomy_xml_mesh_parse',
    ),
  );
  return $formats;
}