コード例 #1
0
ファイル: User.php プロジェクト: artkost/yii2-starter-kit
 public function getAvatarUrl()
 {
     if ($this->profile && $this->profile->avatar) {
         return $this->profile->avatar->url;
     } else {
         return Module::avatarDefaultUrl();
     }
 }