getMessage(); } $this->html_content = $output; return $this; } /** * Display the html content */ function display() { print $this->html_content; } /** * get the content to render * @return string */ function get() { return $this->html_content; } }