Parent Directory
|
Revision Log
|
Revision Graph
Initial Release for Drupal 6
| 1 | <?php |
| 2 | |
| 3 | function alchemist_breadcrumb($breadcrumb) { |
| 4 | if (!empty($breadcrumb)) { |
| 5 | $bcimage = ' <img src="'. base_path() . path_to_theme() .'/images/arrow.png"> '; |
| 6 | return '<div class="breadcrumb">'. implode($bcimage, $breadcrumb) .'</div>'; |
| 7 | } |
| 8 | } |
| 9 | |
| 10 | ?> |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |