コード例 #1
0
 function __construct($idUser)
 {
     if ($idUser_Organisateur != null) {
         parent::__construct($idUser);
         $dao = new DAO();
     }
 }
コード例 #2
0
ファイル: groupe.class.php プロジェクト: ZeZombini/Molpe
 function __construct()
 {
     if ($idUser_Groupe != null) {
         parent::__construct($this->idUser_Groupe);
         $dao = new DAO();
     }
 }
コード例 #3
0
ファイル: booker.class.php プロジェクト: ZeZombini/Molpe
 function __construct()
 {
     if ($idUser_Booker != null) {
         parent::__construct($this->idUser_Booker);
         $dao = new DAO();
     }
 }
コード例 #4
0
ファイル: Admin.php プロジェクト: sooheib/WEB
 function __construc($nom, $prenom, $age, $login, $password)
 {
     parent::__construct($nom, $prenom, $age);
     $this->login = $login;
     $this->password = $password;
 }