我有使用 DoctrineExtensions 中的可翻译字段的实体。这是它的外观:
/**
* @ORM\Table
* @ORM\Entity(repositoryClass="AppBundle\Entity\Repository\SurveyAnswerRepository")
* @Gedmo\Loggable
*/
class SurveyAnswer
{
/**
* @var integer
*
* @ORM\Column(name="id", type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $id;
/**
* @var string
*
* @ORM\Column(type="string", length=200)
* @Gedmo\Versioned
* @Gedmo\Translatable
*/
private $name;
/**
* @Gedmo\Locale
* Used locale to override Translation listener`s locale
* this is not a mapped field of entity metadata, just a simple property
* and it is not necessary because globally locale can be set in listener
*/
private $locale;
public function __clone()
{
if ($this->getId())
{
$this->id = null;
}
}
public function setTranslatableLocale($locale)
{
$this->locale = $locale;
}
public function getId()
{
return $this->id;
}
public function setName($name)
{
$this->name = $name;
return $this;
}
public function getName()
{
return $this->name;
}
}
当我克隆这样的实体时,新实体只包含 Symfony 应用程序中当前语言环境中的翻译。缺少所有其他语言的翻译。