Guest User

Untitled

a guest
Nov 20th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. $verif = $this->get('app.verifOrder');
  2. if($verif->verifAfternoon($commandeInSession))
  3. {
  4. $this->addFlash("error2", "Il n'est pas possible de commander le billet journée entière après 14h.");
  5. return $this->redirectToRoute('louvre_commande');
  6. }
  7.  
  8. if( $verif->verifPastDate($commandeInSession))
  9. {
  10. $this->addFlash("error1", "Il n'est pas possible de commander pour une date passée.");
  11. return $this->redirectToRoute('louvre_commande');
  12.  
  13. }
Add Comment
Please, Sign In to add comment