Skip to content

Instantly share code, notes, and snippets.

@stvkoch
Created February 5, 2009 14:42
Show Gist options
  • Save stvkoch/58735 to your computer and use it in GitHub Desktop.
Save stvkoch/58735 to your computer and use it in GitHub Desktop.
function breadcrumb($page, $html){
$page_model_o = new edPages();
$html = ' > <a href="?pt='.$page[$page_model_o->F_TITLEURL].'">' . $page[$page_model_o->F_TITLE.$this->getlang()] . "</a>" . $html;
if($aRecord = $page_model_o->getParentPage($page)){
$html = $this->breadcrumb($aRecord , $html);
}
return $html;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment