Ver Mensaje Individual
  #8 (permalink)  
Antiguo 20/03/2014, 07:35
Avatar de masterpuppet
masterpuppet
Software Craftsman
 
Fecha de Ingreso: enero-2008
Ubicación: Montevideo, Uruguay
Mensajes: 3.550
Antigüedad: 16 años, 10 meses
Puntos: 845
Respuesta: Doctrine ORM + FormBuilder en Silex para crear un formulario

En tu lugar le buscaría la vuelta, para mi seria algo asi:

Código PHP:
Ver original
  1. class VehicleType
  2. {
  3.     public function __construct(RepositoryInterface $repository)
  4.     {
  5.         $this->repository = $repository;
  6.     }
  7.  
  8.     public function buildForm(FormBuilderInterface $builder, array $options)
  9.     {      
  10.         $builder            
  11.             ->add('entities', array(), array('choices' => $this->repository->findAll()))
  12.         ;
  13.  
  14.     }  
  15. }
  16.  
  17. new VehicleType($app['repository']);
__________________
http://es.phptherightway.com/
thats us riders :)