function taxonomy_xml_element_end in Taxonomy import/export via XML 6
Same name and namespace in other branches
- 5.2 xml_format.inc \taxonomy_xml_element_end()
- 5 xml_format.inc \taxonomy_xml_element_end()
- 6.2 xml_format.inc \taxonomy_xml_element_end()
- 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 89 - 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 = '';
}
}