コード例 #1
0
ファイル: Group.php プロジェクト: mrhat24/site-for-pm
 public function getCurrentDisciplines()
 {
     return $this->hasMany(GroupHasDiscipline::className(), ['group_id' => 'id'])->where(['semester_number' => $this->currentSemester->semester_number]);
 }
コード例 #2
0
ファイル: Discipline.php プロジェクト: mrhat24/site-for-pm
 /**
  * @get grops has discipline
  */
 public function getGroupHasDisciplines()
 {
     return $this->hasMany(GroupHasDiscipline::className(), ['discipline_id' => 'id']);
 }
コード例 #3
0
ファイル: Lesson.php プロジェクト: mrhat24/site-for-pm
 /**
  * @get ghd
  */
 public function getGroupHasDiscipline()
 {
     return $this->hasOne(GroupHasDiscipline::className(), ['id' => 'ghd_id']);
 }