Пример #1
0
 public function generateAction($equipe_id)
 {
     $em = $this->getDoctrine()->getManager();
     $token = new RegistrationToken();
     $token->setEquipe($em->getRepository('AssoMakerBaseBundle:Equipe')->findOneById($equipe_id));
     $em->persist($token);
     $em->flush();
     return $this->render($token->getToken());
 }
Пример #2
0
 /**
  * Crée un nouveau token à partir des paramètres
  * @Route("/token/new/{e_id}/{e_count}", name="token_new")
  */
 public function newTokenAction($e_id = null, $e_count = 1)
 {
     $em = $this->getDoctrine()->getManager();
     $equipe = $em->getRepository('AssoMakerBaseBundle:Equipe')->find($e_id);
     $token = new RegistrationToken();
     $token->setEquipe($equipe);
     $token->setEmail("");
     $token->setCount($e_count);
     $em->persist($token);
     $em->flush();
     return $this->redirect($this->generateUrl('config'));
 }