templateName = $templateName; $this->viewData = $viewData; } public function render() { ob_start(); include WPAM_BASE_DIRECTORY . "/html/{$this->templateName}.php"; $buffer = ob_get_contents(); ob_end_clean(); return $buffer; } }