Ejemplo n.º 1
0
 public function getUser()
 {
     return $this->hasOne(User::className(), ['id' => 'user_id']);
 }
Ejemplo n.º 2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCommentAuthor()
 {
     return $this->hasOne(User::className(), ['id' => 'comment_author']);
 }
Ejemplo n.º 3
0
 /**
  * @return Автор страницы.
  */
 public function getAuthor()
 {
     return $this->hasOne(User::className(), ['id' => 'author_id']);
 }