get('showHere', 1)) { echo '
  • '; } // 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 '
  • '; if (!empty($item->link)) { echo '' . $item->name . ''; } else { echo '' . $item->name . ''; } if (($key != $penult_item_key) || $show_last) { echo '' . $separator . ''; } echo '
  • '; } elseif ($show_last) { // Render last item if reqd. echo '
  • '; echo '' . $item->name . ''; echo '
  • '; } endforeach; ?>