Falcon_Converter::parse_children PHP Method

parse_children() protected method

Parse a node's children
protected parse_children ( DOMNode $list ) : string
$list DOMNode Node to parse
return string Text representation of the node's children
    protected function parse_children($list)
    {
        $text = '';
        foreach ($list->childNodes as $element) {
            $text .= $this->get_text($element);
        }
        return rtrim($text, "\n");
    }