protected $profile = null;
protected $user = null;
- function __construct(HTMLOutputter $out, Profile $profile)
+ function __construct(Action $out, Profile $profile)
{
parent::__construct($out);
$this->profile = $profile;
*
* @param Notice $notice The notice we'll display
*/
- function __construct(Notice $notice, HTMLOutputter $out=null)
+ function __construct(Notice $notice, Action $out=null)
{
parent::__construct($out);
if (!empty($notice->repeat_of)) {
{
protected $userProfile;
- function __construct(Notice $notice, HTMLOutputter $out=null, $profile=-1)
+ function __construct(Notice $notice, Action $out=null, $profile=-1)
{
parent::__construct($notice, $out);
if (is_int($profile) && $profile == -1) {
{
protected $userProfile = null;
- function __construct(Notice $notice, HTMLOutputter $out=null, $profile=null)
+ function __construct(Notice $notice, Action $out=null, $profile=null)
{
parent::__construct($notice, $out);
$this->userProfile = $profile;
{
protected $cnt;
- function __construct(Notice $notice, HTMLOutputter $out, $cnt)
+ function __construct(Notice $notice, Action $out, $cnt)
{
parent::__construct($notice, $out);
$this->cnt = $cnt;
protected $avatarSize = AVATAR_STREAM_SIZE;
/**
- * HTMLOutputter to use for output
+ * Action (HTMLOutputter) to use for output
*/
var $out = null;
/**
* Prepare the widget for use
*
- * @param HTMLOutputter $out output helper, defaults to null
+ * @param Action $out output helper, defaults to null
*/
- function __construct(HTMLOutputter $out=null)
+ function __construct(Action $out=null)
{
$this->out = $out;
}