function __construct($idCommentaire, $commentaire, $validationCommentaire) { if (!isset(self::$database)) { self::$database = new PdoBDD(); } $this->idCommentaire = $idCommentaire; $this->commentaire = $commentaire; $this->validationCommentaire = $validationCommentaire; }
private function validerCommentaire($idCommentaire) { $oVueDefaut = new VueDefaut(); $oVueAdmin = new VueAdmin(); $oCommentaires = new MCommentaires('', '', '', ''); $oCommentaires->validerCommentaire($idCommentaire); $nbreCommentairesNonValides = $oCommentaires->nbreCommentairesNonValides(); if ($nbreCommentairesNonValides != 0) { $aCommentairesAValider = $oCommentaires->listeCommentairesAValider(); } else { $aCommentairesAValider = ''; } $oVueAdmin->afficheHeaderAdmin(); $oVueAdmin->afficheModCommentaires($aCommentairesAValider, $nbreCommentairesNonValides); $oVueDefaut->afficheFooter(false, true, false, true); }