Ver Mensaje Individual
  #3 (permalink)  
Antiguo 11/11/2011, 04:57
utopiko
 
Fecha de Ingreso: marzo-2006
Mensajes: 230
Antigüedad: 18 años, 8 meses
Puntos: 2
Respuesta: Recuperar elementos de BD

Gracias por la respuesta, si que extiende el controlador del Controller...

Te pongo el codigo del controller:
Código PHP:
Ver original
  1. <?php
  2.  
  3. // src/Acme/DemoBundle/Controller/ProductoController.php
  4.  
  5. namespace Acme\DemoBundle\Controller;
  6. use Symfony\Bundle\FrameworkBundle\Controller\Controller;
  7. use Symfony\Component\HttpFoundation\RedirectResponse;
  8.  
  9. // these import the "@Route" and "@Template" annotations
  10. use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
  11. use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
  12.  
  13. class ProductoController
  14. {
  15.     /**
  16.      * @Route("/", name="_producto")
  17.      * @Template()
  18.      */
  19.     public function indexAction($name)
  20.     {
  21.       return array();
  22.     }
  23.    
  24.     /**
  25.      * @Route("/list", name="_producto_list")
  26.      * @Template()
  27.      */
  28.     public function listAction(){
  29.         $em = $this->get('doctrine.orm.entity_manager');
  30.         $productos=$em->findAll('Acme\DemoBundle\Entity\ProProductos');
  31.  
  32.         if (!$productos) {
  33.             throw $this->createNotFoundException('No product found for id '.$id);
  34.         }
  35.  
  36.         return array();
  37.     }
  38. }

Lo del lenguaje, cuidare el lenguaje, pero no creia haber perdido las formas, me lo tomo como una expresion coloquial para decir que puede parecer un avance insignificante, pero que para mi es importante, de todas formas acepto tu consejo, y procurare escribir de otra forma.

Muchas gracias, a todo el foro, me estais ayudando!