12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- namespace Translatable\Fixture\Issue75;
- use Gedmo\Mapping\Annotation as Gedmo;
- use Doctrine\ORM\Mapping as ORM;
- /**
- * @ORM\Entity
- */
- class Image
- {
- /**
- * @ORM\Id
- * @ORM\GeneratedValue
- * @ORM\Column(type="integer")
- */
- private $id;
- /**
- * @Gedmo\Translatable
- * @ORM\Column(name="title", type="string", length=128)
- */
- private $title;
- /**
- * @ORM\ManyToMany(targetEntity="Article", mappedBy="images")
- */
- private $articles;
- public function getId()
- {
- return $this->id;
- }
- public function addArticle(Article $article)
- {
- $this->articles[] = $article;
- }
- public function getArticles()
- {
- return $this->articles;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- }
|