-
Website
http://www.mikkolehtinen.com/ -
Original page
http://www.mikkolehtinen.com/drupal/drupal-snippets/ -
Subscribe
All Comments -
Community
-
Top Commenters
-
kosmikko
1 comment · 1 points
-
-
Popular Threads
function phptemplate_breadcrumb($breadcrumb) {
$site = $_SERVER["HTTP_HOST"];
$language = explode('/',$_REQUEST['q']);
if (($site == 'myswissdomain.ch' && $language[0] == 'fr') || ($site == 'www.myswissdomain.ch' && $language[0] == 'fr')){ $home = 'd’accueil'; }
else {$home = 'Home';}
$sep = ' » ';
$breadcrumb[0] = l(t($home), '');
return ''.implode($sep, $breadcrumb).'';
}