12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?php
- namespace Translatable\Fixture\Document\Personal;
- use Doctrine\ODM\MongoDB\Mapping\Annotations as MongoODM;
- use Gedmo\Mapping\Annotation as Gedmo;
- /**
- * @Gedmo\TranslationEntity(class="Translatable\Fixture\Document\Personal\ArticleTranslation")
- * @MongoODM\Document(collection="articles")
- */
- class Article
- {
- /** @MongoODM\Id */
- private $id;
- /**
- * @Gedmo\Translatable
- * @MongoODM\String
- */
- private $title;
- /**
- * @MongoODM\ReferenceMany(targetDocument="ArticleTranslation", 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;
- }
- public function setCode($code)
- {
- $this->code = $code;
- }
- public function getCode()
- {
- return $this->code;
- }
- public function getSlug()
- {
- return $this->slug;
- }
- }
|