get('showHere', 1)) { echo '
  1. ' . JText::_('MOD_BREADCRUMBS_HERE') . '
  2. '; } else { echo '
  3. '; } // Get rid of duplicated entries on trail including home page when using multilanguage for ($i = 0; $i < $count; $i++) { if ($i == 1 && !empty($list[$i]->link) && !empty($list[$i - 1]->link) && $list[$i]->link == $list[$i - 1]->link) { unset($list[$i]); } } // Find last and penultimate items in breadcrumbs list end($list); $last_item_key = key($list); prev($list); $penult_item_key = key($list); // Make a link if not the last item in the breadcrumbs $show_last = $params->get('showLast', 1); // Generate the trail foreach ($list as $key => $item) : if ($key != $last_item_key) { // Render all but last item - along with separator echo '
  4. '; if (!empty($item->link)) { echo '' . $item->name . ''; } else { echo '' . $item->name . ''; } if (($key != $penult_item_key) || $show_last) { echo ''; } echo '
  5. '; } elseif ($show_last) { // Render last item if reqd. echo '
  6. '; echo $item->name; echo '
  7. '; } endforeach; ?>