You are here

function taxonomy_xml_csv_format_info in Taxonomy import/export via XML 6.2

Return information about this format

Implimentation of (internal) taxonomy_xml_HOOK_format_info()

File

./csv_format.inc, line 12
Include routines for CSV parsing and taxonomy/term creation.

Code

function taxonomy_xml_csv_format_info() {
  $formats = array(
    'CSV' => array(
      'id' => 'CSV',
      'name' => 'Comma Separated Values',
      'module' => 'taxonomy_xml',
      'parser_callback' => 'taxonomy_xml_csv_parse',
    ),
  );
  return $formats;
}