function taxonomy_xml_element_end in Taxonomy import/export via XML 7
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()
- 6 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 formats/
xml_format.inc - Initiate the parser on the custom XML schema.
File
- formats/
xml_format.inc, line 107 - 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 = '';
}
}