Example #1
0
 public function SetObjet($id = NULL, $version = NULL, $commentaire = NULL, $dateProd = NULL)
 {
     parent::SetObjet($id);
     $this->Version($version);
     $this->Commentaire($commentaire);
     $this->DateProd($dateProd);
 }
Example #2
0
 public function SetObjet($fonctionnaliteId = NULL, $autorise = NULL)
 {
     parent::SetObjet();
     $this->ClePrimaire(array(COL_FONCTIONNALITE, COL_GRADE));
     $this->Fonctionnalite($fonctionnaliteId);
     $this->Autorise($autorise);
 }
 public function SetObjet($presentationId = NULL, $groupeId = NULL)
 {
     parent::SetObjet();
     $this->ClePrimaire(array(COL_PRESENTATION, COL_GROUPE));
     $this->Presentation($presentationId);
     $this->Groupe($groupeId);
 }
Example #4
0
 public function SetObjet($id = NULL, $libelle = NULL, $symbole = NULL, $active = NULL)
 {
     parent::SetObjet($id);
     $this->Libelle($libelle);
     $this->Symbole($symbole);
     $this->Active($active);
 }
Example #5
0
 public function SetObjet($id = NULL, $login = NULL, $motDePasse = NULL, $pseudo = NULL, $description = NULL, $histoire = NULL, $dateCreation = NULL, $dateDerniereConnexion = NULL, $dateSuppression = NULL, $supprime = NULL, $actif = NULL, $codeActivation = NULL, $prenom = NULL, $nom = NULL, $dateNaissance = NULL, $fuseauHoraire = NULL, $participation = NULL, $pub = NULL, $dateFinNoPub = NULL, $aide = NULL, $langueId = NULL, $communauteId = NULL, $monnaieId = NULL, $banni = NULL, $bannisseurId = NULL, $dateBannissement = NULL, $dateFinBannissement = NULL, $raisonBannissement = NULL, $superAdmin = NULL)
 {
     parent::SetObjet($id);
     $this->Login($login);
     $this->MotDePasse($motDePasse);
     $this->Pseudo($pseudo);
     $this->Description($description);
     $this->Histoire($histoire);
     $this->DateCreation($dateCreation);
     $this->DateDerniereConnexion($dateDerniereConnexion);
     $this->DateSuppression($dateSuppression);
     $this->Supprime($supprime);
     $this->Actif($actif);
     $this->CodeActivation($codeActivation);
     $this->Prenom($prenom);
     $this->Nom($nom);
     $this->DateNaissance($dateNaissance);
     $this->FuseauHoraire($fuseauHoraire);
     $this->Participation($participation);
     $this->Pub($pub);
     $this->DateFinNoPub($dateFinNoPub);
     $this->Aide($aide);
     $this->Langue($langueId);
     $this->Communaute($communauteId);
     $this->Monnaie($monnaieId);
     $this->Banni($banni);
     $this->Bannisseur($bannisseurId);
     $this->DateBannissement($dateBannissement);
     $this->DateFinBannissement($dateFinBannissement);
     $this->RaisonBannissement($raisonBannissement);
     $this->SuperAdmin($superAdmin);
 }
 public function SetObjet($menuId = NULL, $fonctionnaliteId = NULL, $ordre = NULL)
 {
     $this->noId = true;
     parent::SetObjet();
     $this->idAutoInc = false;
     $this->Menu($menuId);
     $this->Fonctionnalite($fonctionnaliteId);
 }
Example #7
0
 public function SetObjet($menuId = NULL, $contexteId = NULL, $ordre = NULL)
 {
     parent::SetObjet();
     $this->ClePrimaire(array(COL_MENU, COL_CONTEXTE));
     $this->Menu($menuId);
     $this->Contexte($contexteId);
     $this->Ordre($ordre);
 }
 public function SetObjet($presentationId = NULL, $typePresentationModuleId = NULL, $ressourceCSS = NULL, $ressourceJS = NULL)
 {
     parent::SetObjet();
     $this->ClePrimaire(array(COL_PRESENTATION, COL_TYPEPRESENTATIONMODULE));
     $this->Presentation($presentationId);
     $this->TypePresentationModule($typePresentationModuleId);
     $this->RessourceCSS($ressourceCSS);
     $this->RessourceJS($ressourceJS);
 }
Example #9
0
 public function SetObjet($id = NULL, $libelle = NULL, $langueId = NULL, $typeLibelleId = NULL, $langueOriginelle = NULL)
 {
     parent::SetObjet($id);
     $this->AutoInc(false);
     $this->Libelle($libelle);
     $this->Langue($langueId);
     $this->TypeLibelle($typeLibelleId);
     $this->LangueOriginelle($langueOriginelle);
 }
Example #10
0
 public function SetObjet($id = NULL, $nom = NULL, $createurJoueurId = NULL, $createurGroupeId = NULL, $globale = NULL, $publique = NULL, $version = NULL)
 {
     parent::SetObjet($id);
     $this->Nom($nom);
     $this->CreateurJoueur($createurJoueurId);
     $this->CreateurGroupe($createurGroupeId);
     $this->Globale($globale);
     $this->Publique($publique);
     $this->Version($version);
 }
Example #11
0
 public function SetObjet($id = NULL, $nom = NULL, $description = NULL, $icone = NULL, $niveau = NULL, $superGradeId = NULL)
 {
     parent::SetObjet($id);
     $this->Nom($nom);
     $this->Description($description);
     $this->Icone($icone);
     $this->Niveau($niveau);
     $this->SuperGrade($superGradeId);
     $this->mListeGradesJoueurs = NULL;
 }
Example #12
0
 public function SetObjet($id = NULL, $nom = NULL, $jeuId = NULL, $serveurId = NULL, $description = NULL, $histoire = NULL, $participation = NULL, $pub = NULL, $dateFinNoPub = NULL, $typeGroupeId = NULL, $etatRecrutementId = NULL, $messageRecrutement = NULL, $communauteId = NULL, $icone = NULL, $supprime = NULL)
 {
     parent::SetObjet($id);
     $this->Nom($nom);
     $this->Jeu($jeuId);
     $this->Serveur($serveurId);
     $this->Description($description);
     $this->Histoire($histoire);
     $this->Participation($participation);
     $this->Pub($pub);
     $this->DateFinNoPub($dateFinNoPub);
     $this->TypeGroupe($typeGroupeId);
     $this->EtatRecrutement($etatRecrutementId);
     $this->MessageRecrutement($messageRecrutement);
     $this->Communaute($communauteId);
     $this->Icone($icone);
     $this->Supprime($supprime);
 }
Example #13
0
 public function SetObjet($joueurId = NULL)
 {
     parent::SetObjet();
     $this->ClePrimaire(array(COL_JOUEUR, COL_GRADE));
     $this->Joueur($joueurId);
 }
Example #14
0
 public function SetObjet($id = NULL, $libelle = NULL, $libelleId = NULL, $langueId = NULL, $typeLibelleId = NULL)
 {
     parent::SetObjet($id);
     $this->Libelle($libelle, $libelleId, $langueId, $typeLibelleId);
 }
Example #15
0
 public function SetObjet($id = NULL, $nom = NULL, $icone = NULL)
 {
     parent::SetObjet($id);
     $this->Nom($nom);
     $this->Icone($icone);
 }
Example #16
0
 public function SetObjet($id = NULL, $ordre = NULL, $colOrdre = array())
 {
     parent::SetObjet($id);
     $this->colOrdre = $colOrdre;
     $this->Ordre($ordre);
 }