Exemple #1
0
 /**
  * Thumbs relation.
  * @return PostThumb
  */
 public function getThumb()
 {
     return $this->hasOne(PostThumb::className(), ['post_id' => 'id'])->where(['user_id' => User::loggedId()]);
 }
Exemple #2
0
 public function getThumb()
 {
     return $this->hasOne(PostThumb::className(), ['post_id' => 'id'])->where(['user_id' => Yii::$app->user->id]);
 }