public function ModifierCommentaires($id)
 {
     $this->allowTo(['admin', 'staff']);
     /*-> limite l'accès à l'admin ou au staff */
     $commentairesManager = new \manager\CommentairesManager();
     if (isset($_REQUEST['statut']) == 'on') {
         $Commentaires = $commentairesManager->update(['moderation' => 1], $id);
     } elseif (!isset($_REQUEST['statut'])) {
         $Commentaires = $commentairesManager->update(['moderation' => 0], $id);
     }
     if (isset($_REQUEST['supprimer'])) {
         $Commentaires = $commentairesManager->delete($id);
     }
     $this->redirectToRoute('administration_commentaires');
 }
 /**
  * Page d'accueil par défaut
  */
 public function home()
 {
     $insertCommentaire = '';
     $commentairesManager = new \manager\CommentairesManager();
     $TarifsManager = new \manager\TarifsManager();
     $produitManager = new \manager\ProduitsManager();
     $images_slidersManager = new \manager\images_slidersManager();
     $Images_sitesManager = new \manager\Images_sitesManager();
     $show_images_lookbook = new \Manager\images_lookbooksManager();
     if (isset($_REQUEST) && !empty($_REQUEST)) {
         $insertCommentaire = $commentairesManager->insertCommentaireHome($_REQUEST['name'], $_REQUEST['email'], $_REQUEST['message']);
     }
     $showCommentaire = $commentairesManager->showCommentairesHome();
     $tarif = $TarifsManager->showTarif();
     $produit = $produitManager->showProduit();
     $slider = $images_slidersManager->showSliderHome();
     $imageSite = $Images_sitesManager->showImagesSiteHome();
     $show_lookbook = $show_images_lookbook->show_image_lookbook();
     $this->show('default/home', ['insertCommentaire' => $insertCommentaire, 'showCommentaire' => $showCommentaire, 'tarif' => $tarif, 'produit' => $produit, 'slider' => $slider, 'imageSite' => $imageSite, 'show_lookbook' => $show_lookbook]);
 }