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 (11 lines) | stat: -rw-r--r-- 293 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
<?php
$path = $nav->getPathInfo($page);
if ($page->path == "") return;
$breadcrumbs .= alink('/','Home');
foreach($path as $entry) {
	$breadcrumbs .= "&nbsp;";
	$breadcrumbs .= img('triangle.png');
	$breadcrumbs .= "&nbsp;";
	$breadcrumbs .= alink($entry['path'] . '/', $entry['title']);
}
?>