Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my symfony2 project, i use FosUserBundle, SonataUserBundle and SonataAdminBundle. I have my User entity in Application\Sonata\UserBundle\Entity\User for some reasons... that is linked to another entity "download" by a ManyToOne relation (one user can have many download).

Now i want to embed the user registration form and the download form (which contain 3 boolean to choose which file to download and a date) in one form, so people can register and fill the download form at the same time.

From what i have read, i have to create a new form type for the user registration, configure the form and override form handlers ( FosUserBundle documentation )

But i only want this functionality for a form in my download page, not in other registration form. How to separate these functionalities ?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.