You are here

function taxonomy_xml_xml_format_info in Taxonomy import/export via XML 6.2

Same name and namespace in other branches
  1. 7 formats/xml_format.inc \taxonomy_xml_xml_format_info()

Return information about this format

Implimentation of (internal) taxonomy_xml_HOOK_format_info()

File

./xml_format.inc, line 16
Include routines for the original XML parsing and taxonomy/term creation.

Code

function taxonomy_xml_xml_format_info() {
  $formats = array(
    'XML' => array(
      'id' => 'XML',
      'name' => 'Legacy Drupal-only XML',
      'module' => 'taxonomy_xml',
      'parser_callback' => 'taxonomy_xml_xml_parse',
    ),
  );
  return $formats;
}