profile block can have actions

This commit is contained in:
Evan Prodromou 2011-03-14 16:39:14 -04:00
parent a661b22fad
commit 051e374792

View File

@ -106,6 +106,8 @@ abstract class ProfileBlock extends Widget
$description); $description);
} }
$this->showActions();
$this->out->elementEnd('div'); $this->out->elementEnd('div');
} }
@ -114,4 +116,7 @@ abstract class ProfileBlock extends Widget
return AVATAR_PROFILE_SIZE; return AVATAR_PROFILE_SIZE;
} }
function showActions()
{
}
} }