You are here

function taxonomy_xml_csvancestry_format_info in Taxonomy import/export via XML 6.2

Return information about this format

Implimentation of (internal) taxonomy_xml_HOOK_format_info()

File

./csvancestry_format.inc, line 34

Code

function taxonomy_xml_csvancestry_format_info() {
  $formats = array(
    'csvancestry' => array(
      'id' => 'csvancestry',
      'name' => 'CSV, ancestry on one line',
      'module' => 'taxonomy_xml',
      'parser_callback' => 'taxonomy_xml_csvancestry_parse',
    ),
  );
  return $formats;
}