I am attempting to override the RegistrationFormType in the Symfony2 FOSUserBundle. I am following the documentation and believe i've covered everything. I've created a bundle to contain my overrides to the FOSUserBundle and the following code is from this bundle as well as the application config.

Has anyone experienced this when overriding FOSUserBundle, or see anything in my code that would help explain why I keep getting this error. I'm on symfony v2.0.4

RegistrationFormType.php

<?php

/*
 * This file is part of the FOSUserBundle package.
 *
 * (c) FriendsOfSymfony <http://friendsofsymfony.github.com/>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Thrive\SaasBundle\Form\Type;

use Symfony\Component\Form\FormBuilder;
use FOS\UserBundle\Form\Type\RegistrationFormType as BaseType;

class RegistrationFormType extends BaseType
{

    public function buildForm(FormBuilder $builder, array $options)
    {
        $builder
            ->add('firstname', null, array('error_bubbling' => true))
            ->add('lastname', null, array('error_bubbling' => true))
            ->add('company', null, array('error_bubbling' => true))
            ->add('email', 'email', array('error_bubbling' => true))
            ->add('username', null, array('error_bubbling' => true))
            ->add('plainPassword', 'repeated', array('type' => 'password', 'error_bubbling' => true))
            ;
    }

    public function getName()
    {
        return 'thrive_user_registration';
    }

}

Services.yml

services:
  thrive_saas_registration.form.type:
    class: Thrive\SaasBundle\Form\Type\RegistrationFormType
    arguments: [%fos_user.model.user.class%]
    tags:
        - { name: form.type, alias: thrive_user_registration}

Application's Config File

fos_user:
     ...
    registration: 
      form:
        type: thrive_user_registration
link|improve this question

65% accept rate
How about using this parameter %fos_user.model.user.form_data_class% instead of %fos_user.model.user.class% in the service definition ? – William DURAND Nov 2 '11 at 19:52
feedback

2 Answers

up vote 2 down vote accepted

Turns out my services.yml file wasn't being loaded via dependency injection. After digging around i realized my extension.php file for this bundle was named incorrectly. Early on I had renamed the bundle and made a typo when renaming the extension.php file inside the DependencyInjection folder. After correcting the mispelling everything works again.

link|improve this answer
Perfect, I missed my extension file too. – jmoz Dec 12 '11 at 15:12
feedback

Did you tried to just add one new field and look if it works?

public function buildForm(FormBuilder $builder, array $options)
{
    parent::buildForm($builder, $options);

    // add your custom field
    $builder->add('name');
}

Also remember to clear your prod cache if you're testing from there...

link|improve this answer
I have and it didn't seem to help. I've even tried extending from Symfony\Component\Form\AbstractType; while adding in the constructor and getDefaultOptions logic that FOS' RegistrationFormType uses. This didn't seem to fix it either. – Jeremy Oct 30 '11 at 16:14
It looks so weird. If this would happen to me I try to follow the documentation of FOSUserBundle "as is", then go with small changes towards needed configuration... – dlondero Oct 31 '11 at 8:36
Yea, it is weird... I'm going to try rolling back my code and implement the bundle again that has my FOS customizations. – Jeremy Oct 31 '11 at 12:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.