Beispiel #1
0
 public function __construct($n = "", $u = "", $id = false)
 {
     parent::__construct();
     $this->nom = $n;
     $this->utilisateur_id = $u;
     $this->id = $id;
 }
Beispiel #2
0
 public function __construct($pseudo = "", $mail = "", $motpasse = "", $cookie = "", $id = false)
 {
     parent::__construct();
     $this->pseudo = $pseudo;
     $this->motdepasse = $motpasse;
     $this->mail = $mail;
     $this->id = $id;
     $this->cookie = $cookie;
 }
Beispiel #3
0
 /**
  * Utilisateur constructor.
  * @param $login
  * @param $email
  * @param $password
  */
 public function __construct($login = "", $email = "", $password = "", $cookie = "", $id = false)
 {
     parent::__construct();
     $this->login = $login;
     $this->email = $email;
     $this->password = $password;
     $this->cookie = $cookie;
     $this->id = $id;
 }
Beispiel #4
0
 public function __construct($n = "", $f = "", $p = "", $s = "", $u = "", $id = false)
 {
     parent::__construct();
     $this->nom = $n;
     $this->fichier = $f;
     $this->post_date = $p;
     $this->style = $s;
     $this->utilisateur_id = $u;
     $this->user = false;
 }
Beispiel #5
0
 public function __construct($a = "", $c = "", $id = false)
 {
     parent::__construct();
     $this->album_id = $a;
     $this->photo_id = $c;
 }
Beispiel #6
0
 public function __construct($suiveur = "", $suivi = "", $id = false)
 {
     parent::__construct();
     $this->suiveur_id = $suiveur;
     $this->suivi_id = $suivi;
 }