WPDKView::html PHP Method

html() public method

Return the HTML markup content of this view
public html ( ) : string
return string
    public function html()
    {
        ob_start();
        $this->display();
        $content = ob_get_contents();
        ob_end_clean();
        return $content;
    }