1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?php
- namespace Translatable\Fixture\Personal;
- use Gedmo\Mapping\Annotation as Gedmo;
- use Doctrine\ORM\Mapping as ORM;
- /**
- * @Gedmo\TranslationEntity(class="Translatable\Fixture\Personal\PersonalArticleTranslation")
- * @ORM\Entity
- */
- class Article
- {
- /**
- * @ORM\Id
- * @ORM\GeneratedValue
- * @ORM\Column(type="integer")
- */
- private $id;
- /**
- * @Gedmo\Translatable
- * @ORM\Column(length=128)
- */
- private $title;
- /**
- * @ORM\OneToMany(targetEntity="PersonalArticleTranslation", mappedBy="object")
- */
- private $translations;
- public function getTranslations()
- {
- return $this->translations;
- }
- public function addTranslation(PersonalArticleTranslation $t)
- {
- if (!$this->translations->contains($t)) {
- $this->translations[] = $t;
- $t->setObject($this);
- }
- }
- public function getId()
- {
- return $this->id;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- }
|