function JSimpleXML::_endElement in Ubercart 5
Handler function for the end of a tag
@access protected
Parameters
resource $parser:
string $name:
File
- uc_store/
includes/ simplexml.php, line 326
Class
- JSimpleXML
- SimpleXML implementation.
Code
function _endElement($parser, $name) {
//Update stack by removing the end value from it as the parent
array_pop($this->_stack);
}