Exemplo n.º 1
0
 public function getStudent()
 {
     //a medical certificate has one student
     return $this->hasOne(Student::className(), ['student_id' => 'student_id']);
 }
Exemplo n.º 2
0
 public function getStudent()
 {
     return $this->hasMany(Student::className(), ['program_id' => 'program_id']);
 }
Exemplo n.º 3
0
 public function getStudent()
 {
     return $this->hasOne(Student::className(), ['student_id' => 'student_id']);
 }
Exemplo n.º 4
0
 public function getStudent()
 {
     return $this->hasMany(Student::className(), ['campus_id' => 'campus_id']);
 }