You are here

function taxonomy_xml_element_end in Taxonomy import/export via XML 5.2

Same name and namespace in other branches
  1. 5 xml_format.inc \taxonomy_xml_element_end()
  2. 6.2 xml_format.inc \taxonomy_xml_element_end()
  3. 6 xml_format.inc \taxonomy_xml_element_end()
  4. 7 formats/xml_format.inc \taxonomy_xml_element_end()

Call-back function used by the XML parser.

1 string reference to 'taxonomy_xml_element_end'
taxonomy_xml_xml_parse in ./xml_format.inc
Initiate the parser on the custom XML schema.

File

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

Code

function taxonomy_xml_element_end($parser, $name) {
  global $_tx_element;
  switch ($name) {
    case 'vocabulary':
    case 'term':
      $_tx_element = '';
  }
}