コード例 #1
0
ファイル: matieresModel.php プロジェクト: Bdiallo16/Be
 public static function findByFormation($id)
 {
     if (is_numeric($id)) {
         return MatiereDAO::findByFormation($id);
     }
     return false;
 }
コード例 #2
0
ファイル: formationsModel.php プロジェクト: Bdiallo16/Be
 public function loadMatieres()
 {
     Load::DAO("matiere");
     $this->matieres = MatiereDAO::findByFormation($this->id);
 }