File: topnav.php

package info (click to toggle)
bamboo 1.2-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 580 kB
  • ctags: 1,338
  • sloc: php: 4,061; makefile: 44; sh: 36
file content (12 lines) | stat: -rw-r--r-- 348 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
<?php
$path = $nav->getPathInfo($page);
if ($page->path == "") return;
$breadcrumbs = "<ol class=path>\n";
$breadcrumbs .= "  <li class=first>" . alink('/','Home') . "</li>\n";
foreach($path as $entry) {
	$breadcrumbs .= "  <li>";
	$breadcrumbs .= alink($entry['path'], $entry['title']);
	$breadcrumbs .= "</li>\n";
}
$breadcrumbs .= "</ol>\n";
?>