Ejemplo n.º 1
0
 public function form_test()
 {
     $response = new Response();
     $twig = $this->sm->get('pegase.component.template.twig');
     $router = $this->sm->get('pegase.core.router');
     //$form = new \Pegase\Security\Form\Objects\Form('form');
     $form = $this->sm->get('form_builder')->generate('form');
     $form->add('ma_chaine', 'string')->add('ma_textarea', 'text')->add('submit', 'submit', array('value' => 'send'));
     if ($this->sm->get('pegase.core.request')->get_method() == 'POST') {
         $form->read_post();
         //var_dump($form->token);
         //echo $form->token->get_id();
         if ($form->is_valid()) {
             // supprime le token
             //echo "formulaire valide.<br />";
         }
         /*
               else {
                 echo "formulaire invalide<br />";
               }*/
     }
     $formView = $form->generate();
     $response->write($twig->render('src/Demo/Demo/Views/Demo/form_test.twig.html', array('form' => $formView)));
     return $response;
 }
Ejemplo n.º 2
0
 public function __construct($params, $base_dir)
 {
     // Construction of the AbstractApplication
     parent::__construct($params, $base_dir);
     $mm = $this->sm->get('pegase.core.module_manager');
     // Services are now loaded
     try {
         // We send the event
         $event = new ApplicationEvent('application.loaded');
         $response = $this->sm->get('pegase.core.event_manager')->send($event);
         if ($response != null) {
             $response->send();
             return;
         }
         // get the router
         $router = $this->sm->get('pegase.core.router');
         $uri = $this->sm->get('pegase.core.request')->get_uri();
         $controller_and_method = $router->get_with_uri($uri);
         if ($controller_and_method == null) {
             echo "Router Error: The URI '" . $uri . "' doesn't match with any route !";
         } else {
             $controller = $controller_and_method[0];
             $method = $controller_and_method[1];
             $params = $controller_and_method[2];
             $response = call_user_func_array(array($controller, $method), $params);
             //PegaseException new NGException("test");
             $response->send();
         }
         $event = new ApplicationEvent('application.end');
         $this->sm->get('pegase.core.event_manager')->send($event);
     } catch (PegaseException $e) {
         $content = "<p>Caught PegaseException ('" . str_replace("\n", '<br />', $e->getMessage()) . "'):<br />" . str_replace("\n", '<br />', $e) . "</p>";
         $event = new ExceptionEvent("application.exception", $content);
         $response = $this->sm->get('pegase.core.event_manager')->send($event);
         if ($response == null) {
             $response = new Response();
             // Getting the 'twig' service
             $twig = $this->sm->get('pegase.component.template.twig');
             // creating a response
             $response = new Response();
             $response->write($twig->render($mm->get_file('Pegase/Core', 'Application/Views/exception.twig.html'), array('content' => $content)));
         }
         $response->send();
     } catch (\Exception $e) {
         $content = "<p>Caught " . get_class($e) . " ('" . str_replace("\n", '<br />', $e->getMessage()) . "'):<br />" . str_replace("\n", '<br />', $e) . "</p>";
         $event = new ExceptionEvent("application.exception", $content);
         $response = $this->sm->get('pegase.core.event_manager')->send($event);
         if ($response == null) {
             $response = new Response();
             // Getting the 'twig' service
             $twig = $this->sm->get('pegase.component.template.twig');
             // creating a response
             $response = new Response();
             $response->write($twig->render($mm->get_file('Pegase/Core', 'Application/Views/exception.twig.html'), array('content' => $content)));
         }
         $response->send();
     }
 }