CommentNode::renderConditionalComment PHP Method

renderConditionalComment() private method

    private function renderConditionalComment()
    {
        $output = $this->getSpaces() . "<!--[" . $this->_conditionalMatches[1] . "]>";
        $output .= $this->renderHtmlCommentBody();
        $output .= "<![endif]-->";
        return $output;
    }