var $user = null;
- function init()
+ function prepare($args)
{
+ parent::prepare($args);
$nickname = $this->trimmed('nickname');
$this->user = User::staticGet('nickname', $nickname);
}
}
- function get_notices($limit=0)
+ function getNotices($limit=0)
{
$user = $this->user;
return $notices;
}
- function get_channel()
+ function getChannel()
{
$user = $this->user;
$c = array('url' => common_local_url('repliesrss',
return $c;
}
- function get_image()
+ function getImage()
{
$user = $this->user;
$profile = $user->getProfile();
$avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE);
return ($avatar) ? $avatar->url : null;
}
-}
\ No newline at end of file
+}