Exemplo n.º 1
0
 public function portadaAction()
 {
     $captcha = new Captcha($this->getRequest()->getSession());
     $captcha->build(realpath('bundles/comun/images') . '/captcha.png');
     return $this->render('ComunBundle:Default:portada.html.twig');
 }
Exemplo n.º 2
0
 /**
  * @return Response
  */
 public function refreshImageAction()
 {
     // $this->refreshCaptcha();
     $captcha = new Captcha($this->getRequest()->getSession());
     $captcha->build(realpath('bundles/comun/images') . '/captcha.png');
     //return  $this->render('ComunBundle::captcha.html.twig', array('time' => time()));
     return $this->render('ComunBundle::captcha.html.twig');
 }