Esempio n. 1
0
File: User.php Progetto: npk/v2sex
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getReplyList()
 {
     return $this->hasMany(Reply::className(), ['user_id' => 'id'])->orderBy(['id' => SORT_DESC])->limit(10);
 }
Esempio n. 2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getReplyList()
 {
     return $this->hasMany(Reply::className(), ['topic_id' => 'id']);
 }
Esempio n. 3
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getReplies()
 {
     return $this->hasMany(Reply::className(), ['comment_id' => 'id']);
 }