DISQUS

DISQUS Hello! MikkoLehtinen.com is using DISQUS, a powerful comment system, to manage its comments. Learn more.

Community Page

Jump to original thread »
Author

Drupal snippets

Started by kosmikko · 7 months ago

Small useful snippets to add to your template.php ... Continue reading »

1 comment

  • Changed a little for multisite breadcrumbs and language codes. Thank You :-)

    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).'';

    }

Add New Comment

Returning? Login