예제 #1
0
 function __construct($idUser)
 {
     if ($idUser_Organisateur != null) {
         parent::__construct($idUser);
         $dao = new DAO();
     }
 }
예제 #2
0
 function __construct()
 {
     if ($idUser_Groupe != null) {
         parent::__construct($this->idUser_Groupe);
         $dao = new DAO();
     }
 }
예제 #3
0
 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;
 }