Show
Ignore:
Timestamp:
04/13/07 14:58:17 (2 years ago)
Author:
ben
Message:

You can now include the user's icon in the toolbar.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • devel/mod/toolbar/lib.php

    r1027 r1067  
    3232        $toolbar = str_replace("{{poweredby}}", __gettext("Powered by Elgg"), $toolbar); 
    3333        $toolbar = str_replace("{{remember}}", __gettext("Remember me"), $toolbar); 
     34        if (isloggedin()) { 
     35            $toolbar =  str_replace("{{usericon}}", "<a href=\"{$CFG->wwwroot}{$_SESSION['username']}\">" . user_icon_html($_SESSION['userid'], 50) . "</a>", $toolbar); 
     36        } else { 
     37            $toolbar = str_replace("{{usericon}}", user_icon_html(-1, 50), $toolbar); 
     38        } 
    3439         
    3540        return $toolbar;