First, Symfony 2 Embedded Forms. And more I have seen and read it. Looks like What's easier...
Error when I trying to save register form:
Catchable Fatal Error: Argument 1 passed to Xcompl\AdminBundle\Entity\User::setProfile() must be an instance of Xcompl\AdminBundle\Entity\Profile, instance of Xcompl\Web4dBundle\Entity\Profile given, called in /home/webmaster/projects/php/web4d/vendor/symfony/symfony/src/Symfony/Component/Form/Util/PropertyPath.php on line 537 and defined in /home/webmaster/projects/php/web4d/src/Xcompl/AdminBundle/Entity/User.php line 120
I have two entities in different bundles: User and Profile(user extra data).
User Entity:
namespace Xcompl\AdminBundle\Entity;
use FOS\UserBundle\Entity\User as BaseUser;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Validator\Constraints as Assert;
/**
* Xcompl\AdminBundle\Entity\User
*
* @ORM\Table(name="fos_user")
* @ORM\Entity
*/
class User extends BaseUser
{
/**
* @var integer $id
*
* @ORM\Column(name="id", type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $id;
/**
* @ORM\Column(type="string", length=255)
*
* @Assert\NotBlank(message="Please enter your name.", groups={"Registration", "Profile"})
* @Assert\MinLength(limit="3", message="The name is too short.", groups={"Registration", "Profile"})
* @Assert\MaxLength(limit="255", message="The name is too long.", groups={"Registration", "Profile"})
*/
private $firstname;
/**
* @ORM\Column(type="string", length=255)
*
* ...Here is some asserts again
*/
private $lastname;
/**
*
* @ORM\OneToOne(targetEntity="Xcompl\Web4dBundle\Entity\Profile")
* @ORM\JoinColumn(name="id", referencedColumnName="user_id")
*/
private $profile;
public function __construct()
{
parent::__construct();
//$this->setProfile($this->profile);
}
/**
* Get id
*
* @return integer
*/
public function getId()
{
return $this->id;
}
.......etc.
Profile entity:
namespace Xcompl\Web4dBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* Xcompl\Web4dBundle\Entity\Profile
*
* @ORM\Table(name="profile")
* @ORM\Entity
*/
class Profile
{
/**
* @var integer $user_id
*
* @ORM\Column(name="user_id", type="integer")
* @ORM\Id
*/
private $user_id;
/**
* @var float $bill
*
* @ORM\Column(name="bill", type="decimal", precision=18, scale=2)
*/
private $bill;
/**
* @var integer $rating
*
* @ORM\Column(name="rating", type="integer")
*/
private $rating;
/**
* @var string $cell_phone_number
*
* @ORM\Column(name="cell_phone_number", type="string", length=255)
*/
private $cell_phone_number;
public function __construct()
{
}
... etc. Generated.
Now is RegisterFormType(as FosUserBundle Manual - https://github.com/FriendsOfSymfony/FOSUserBundle/blob/master/Resources/doc/overriding_forms.md)
namespace Xcompl\Web4dBundle\Form\Type;
use Symfony\Component\Form\FormBuilderInterface;
use FOS\UserBundle\Form\Type\RegistrationFormType as BaseType;
use Symfony\Component\OptionsResolver\OptionsResolverInterface;
class RegistrationFormType extends BaseType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
parent::buildForm($builder, $options);
// add your custom field
$builder->add('firstname')
->add('lastname')
->add('profile', new ProfileType())
;
}
public function setDefaultOptions(OptionsResolverInterface $resolver)
{
$resolver->setDefaults(array(
'data_class' => 'Xcompl\AdminBundle\Entity\User'
));
}
public function getName()
{
return 'web4d_user_registration';
}
}
Profile Type:
<?php
namespace Xcompl\Web4dBundle\Form\Type;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolverInterface;
class ProfileType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
//->add('user_id')
->add('cell_phone_number')
;
}
public function setDefaultOptions(OptionsResolverInterface $resolver)
{
$resolver->setDefaults(array(
'data_class' => 'Xcompl\Web4dBundle\Entity\Profile'
));
}
public function getName()
{
return 'xcompl_web4d_profile';
}
}
Profile will contain more other fields and that "why you don't put Profile fields in User". Undirectional (http://doctrine-orm.readthedocs.org/en/2.1/reference/association-mapping.html#one-to-one-unidirectional) because I don't want multiply fields(like [id, profile_id]-> <-[user_id,!!!id!!!.....phone, icq, and more more]).
Can i do something, but don't write my own handler for registration form?
Brothers, need somebody help! Thank in advance.