profile block can have actions

This commit is contained in:
Evan Prodromou 2011-03-14 16:39:14 -04:00
parent a661b22fad
commit 051e374792
1 changed files with 5 additions and 0 deletions

View File

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