public function user_avatar()
 {
     return $this->user->getAvatarUrl();
 }
 public function __construct(PFUser $user)
 {
     $this->user_name = $user->getUserName();
     $this->real_name = $user->getRealName();
     $this->avatar = $user->getAvatarUrl();
 }