_template_file = $template_file; } public function renderContent() { ob_start(); require $this->_template_file; $this->_contents = ob_get_clean(); return $this->_contents; } public function contents() { return $this->_contents; } }