$part→ "; } } return $path; } /** * Render HTML header for development views */ public function writeHeader() { echo ''. $_SERVER['REQUEST_METHOD'] . ' ' .$_SERVER['REQUEST_URI'] .''; echo ''; echo ''; echo '
'; } /** * Render the information header for the view * * @param string $title * @param string $title */ public function writeInfo($title, $subtitle, $description=false) { echo '
'; echo "

$title

"; echo "

$subtitle

"; if ($description) { echo "

$description

"; } else { echo $this->Breadcrumbs(); } echo '
'; } /** * Render HTML footer for development views */ public function writeFooter() { echo ""; } } ?>