コード例 #1
0
 public function getParticipants($reset = false)
 {
     if ($reset || !isset($this->_participants)) {
         $this->_participants = $this->hasMany(Participant::className(), ['shift_id' => 'id']);
     }
     return $this->_participants;
 }
コード例 #2
0
ファイル: Activity.php プロジェクト: ninetor/23
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getParticipants()
 {
     return $this->hasMany(Participant::className(), ['activity' => 'id']);
 }
コード例 #3
0
 /**
  * Get the shift participation this user is a part of 
  */
 public function getParticipation()
 {
     return $this->hasMany(Participant::className(), ['user_id' => 'id']);
 }