Cml\dBug::xmlEndElement PHP Method

xmlEndElement() private method

xml: initiated when an end tag is encountered
private xmlEndElement ( $parser, $name )
    private function xmlEndElement($parser, $name)
    {
        for ($i = 0; $i < $this->xmlCount; $i++) {
            eval($this->xmlSData[$i]);
            $this->makeTDHeader("xml", "xmlText");
            echo !empty($this->xmlCData[$i]) ? $this->xmlCData[$i] : "&nbsp;";
            echo $this->closeTDRow();
            $this->makeTDHeader("xml", "xmlComment");
            echo !empty($this->xmlDData[$i]) ? $this->xmlDData[$i] : "&nbsp;";
            echo $this->closeTDRow();
            $this->makeTDHeader("xml", "xmlChildren");
            unset($this->xmlCData[$i], $this->xmlDData[$i]);
        }
        echo $this->closeTDRow();
        echo "</table>";
        $this->xmlCount = 0;
    }