header = new Header(); $this->footer = new Footer(); } // Setea el body obtenido por pageController public function setBody($html) { $this->body = $html; } // Retorna layout HTML public function getHTML() { $page = $this->header->render(); $page .= $this->body; $page .= $this->footer->render(); return $page; } } ?>