public function __construct($id = NULL, $nom = "", $code = NULL)
 {
     SELF::$_PDO = $this->load->database('pdo', true);
     $this->_id = $id;
     $this->_nom = $nom;
     $this->_code = $code;
 }
 public function __construct($idActivite = null, $nomActivite = "", $descriptionActivite = "", $idTheme = null)
 {
     $this->_idActivite = $idActivite;
     $this->_nomActivite = $nomActivite;
     $this->_descriptionActivite = $descriptionActivite;
     $this->_idTheme = $idTheme;
     SELF::$_PDO = $this->load->database('pdo', true);
 }
 public function __construct($id = NULL, $nom = "", $prenom = "", $ddn = "", $idClasse = "")
 {
     SELF::$_PDO = $this->load->database('pdo', true);
     $this->_id = $id;
     $this->_nom = $nom;
     $this->_prenom = $prenom;
     $this->_ddn = $ddn;
     $this->_idClasse = $idClasse;
 }
 public function __construct($id = NULL, $nom = "", $prof = "", $niveau = "", $responsable = "")
 {
     SELF::$_PDO = $this->load->database('pdo', true);
     $this->_idClasse = $id;
     $this->_nomClasse = $nom;
     $this->_professeur = $prof;
     $this->_niveau = $niveau;
     $this->_profRespClasse = $responsable;
 }
 public function __construct($idAgenda = null, $idActivite = null, $dateDebutActivite = "", $dateFinActivite = "", $jour = null, $horaireDebutActivite = "", $horaireFinActivite = "")
 {
     $this->_idAgenda = $idAgenda;
     $this->_idActivite = $idActivite;
     $this->_dateDebutActivite = $dateDebutActivite;
     $this->_dateFinActivite = $dateFinActivite;
     $this->_jour = $jour;
     $this->_horaireDebutActivite = $horaireDebutActivite;
     $this->_horaireFinActivite = $horaireFinActivite;
     SELF::$_PDO = $this->load->database('pdo', true);
 }
 public function __construct($idAdulteResponsable = NULL, $nom = "", $prenom = "", $idVille = NULL, $login = "", $motDePasse = "", $adresseMail = "", $telephone = "", $rang = NULL)
 {
     SELF::$_PDO = $this->load->database('pdo', true);
     $this->_idAdulteResponsable = $idAdulteResponsable;
     $this->_nom = $nom;
     $this->_prenom = $prenom;
     $this->_idVille = $idVille;
     $this->_login = $login;
     $this->_motDePasse = $motDePasse;
     $this->_adresseMail = $adresseMail;
     $this->_telephone = $telephone;
     $this->_rang = $rang;
 }
 public function __construct()
 {
     parent::__construct();
     require_once "Activite.php";
     SELF::$_PDO = $this->load->database('pdo', true);
 }
 public function __construct($idTheme = null, $nomTheme = "")
 {
     $this->_idTheme = $idTheme;
     $this->_nomTheme = $nomTheme;
     SELF::$_PDO = $this->load->database('pdo', true);
 }