use stream-sized avatar for default profileblock

This commit is contained in:
Evan Prodromou 2011-03-14 15:19:56 -05:00
parent fbc11b72d7
commit a661b22fad
1 changed files with 16 additions and 0 deletions

View File

@ -56,6 +56,22 @@ class DefaultProfileBlock extends AccountProfileBlock
parent::__construct($out, $user->getProfile());
}
function avatarSize()
{
return AVATAR_STREAM_SIZE;
}
function avatar()
{
$avatar = $this->profile->getAvatar(AVATAR_STREAM_SIZE);
if (empty($avatar)) {
$avatar = $this->profile->getAvatar(73);
}
return (!empty($avatar)) ?
$avatar->displayUrl() :
Avatar::defaultImage(AVATAR_STREAM_SIZE);
}
function canEdit()
{
return true;