I'm using A2lix translation form among with KNP Doctrine behaviors.
The fields are displayed correctly in the form and they're sent correctly as well (I've checked in the debug) but they're not saved in the database.
Here's my code:
Form Type
/**
* Buildform function
*
* @param FormBuilderInterface $builder the formBuilder
* @param array $options the options for this form
*/
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('code', 'text', [
'required' => true,
])
->add('translations', 'a2lix_translations');
}
Accesory entity
<?php
namespace SocialCar\CoreBundle\Entity;
use Knp\DoctrineBehaviors\Model as ORMBehaviors;
class Accessory
{
use ORMBehaviors\Translatable\Translatable;
/**
* @var integer
*/
private $id;
/**
* @var string
*/
private $code;
/**
* Get id
*
* @return integer
*/
public function getId()
{
return $this->id;
}
/**
* Set code
*
* @param string $code
* @return Accessory
*/
public function setCode($code)
{
$this->code = $code;
return $this;
}
/**
* Get code
*
* @return string
*/
public function getCode()
{
return $this->code;
}
}
Accessory translation
<?php
namespace SocialCar\CoreBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
use Knp\DoctrineBehaviors\Model as ORMBehaviors;
/**
* AccessoryTranslation
*/
class AccessoryTranslation
{
use ORMBehaviors\Translatable\Translation;
/**
* @var string
*/
private $name;
/**
* Set name
*
* @param string $name
* @return AccessoryTranslation
*/
public function setName($name)
{
$this->name = $name;
return $this;
}
/**
* Get name
*
* @return string
*/
public function getName()
{
return $this->name;
}
}
Any ideas?
You need to define relation between your entity and translation entity:
Accessory:
Accessory Translation: