addNav("Home", "./");
$this->addNav("Progress", "./");
$this->addNav("Meet The Team", "./");
$this->addNav("Course Site", "https://cse.msu.edu/~cse435/");
}
public function head(){
$html = <<
$this->title
HTML;
return $html;
}
public function header(){
$html = <<
$this->title
HTML;
return $html;
}
public function page(){
$html = <<
Roster:
- Project Manager - James
- Artifacts Manager - Sean
- Project Facilitator- Stephen
- Safety/Security Engineer - Logan
- Domain Expert/Customer Liaison - Colin
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!";
}