The context
- I need to link my users to companies.
- These companies are stored in an other db (mssql :().
- I have a stored procedure that gives me the list of companies.
What I did
- Configured the dbal to be able to call the stored procedure.
- Extended SonataUser's Entity and added an Integer field for the company id.
Extended SonataUser's Admin
configureFormFields()with$formMapper #... ->add('company', 'choice', array('choices' => $companies)) #...
$companies should contain the company list but not sure it's the right way to do it, and I don't even know how to call the stored procedure from this class...
Questions
- How can I list these companies into SonataUser's form ?
- How can I show the selected company name in the list ?