WPDKView::html PHP 메소드

html() 공개 메소드

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