addNav("Home", "./"); $this->addNav("Progress", "./"); $this->addNav("Meet The Team", "./about.php"); $this->addNav("Course Site", "https://cse.msu.edu/~cse435/"); $this->addNav("Secure", "./secure"); } public function head(){ $html = << $this->title HTML; return $html; } public function header(){ $html = <<

$this->title

HTML; return $html; } public function page(){ $html = <<Content coming soon...

HTML; return $html; } public function addNav($name, $link){ $this->links[] = array("name" => $name, "link" => $link); } public function footer(){ $html = << HTML; return $html; } public function setTitle($title){ $this->title = $title; } private $links = array(); private $title = "Not Set!"; }