You are here

function taxonomy_xml_rdf_format_info in Taxonomy import/export via XML 6.2

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

Return information about this format

Implimentation of (internal) taxonomy_xml_HOOK_format_info()

File

./rdf_format.inc, line 56
Include routines for RDF parsing and taxonomy/term creation. @author dman http://coders.co.nz

Code

function taxonomy_xml_rdf_format_info() {
  $formats = array(
    'RDF' => array(
      'id' => 'RDF',
      'name' => 'RDF/XML',
      'module' => 'taxonomy_xml',
      'parser_callback' => 'taxonomy_xml_rdf_parse',
    ),
  );
  return $formats;
}