Gracias por la respuesta, si que extiende el controlador del Controller...
Te pongo el codigo del controller:
Código PHP:
Ver original<?php
// src/Acme/DemoBundle/Controller/ProductoController.php
namespace Acme\DemoBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpFoundation\RedirectResponse;
// these import the "@Route" and "@Template" annotations
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
class ProductoController
{
/**
* @Route("/", name="_producto")
* @Template()
*/
public function indexAction($name)
{
}
/**
* @Route("/list", name="_producto_list")
* @Template()
*/
public function listAction(){
$em = $this->get('doctrine.orm.entity_manager');
$productos=$em->findAll('Acme\DemoBundle\Entity\ProProductos');
if (!$productos) {
throw $this->createNotFoundException('No product found for id '.$id);
}
}
}
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!