1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <?php
- namespace Translatable\Fixture\Issue173;
- use Gedmo\Mapping\Annotation as Gedmo;
- use Doctrine\ORM\Mapping as ORM;
- /**
- * @ORM\Entity
- */
- class Category
- {
- /**
- * @ORM\Id
- * @ORM\GeneratedValue
- * @ORM\Column(type="integer")
- */
- private $id;
- /**
- * @Gedmo\Translatable
- * @ORM\Column(name="title", type="string", length=128)
- */
- private $title;
-
- /**
- * @ORM\OneToMany(targetEntity="Article", mappedBy="category", cascade={"persist", "remove"})
- */
- private $articles;
- /**
- * @ORM\OneToMany(targetEntity="Product", mappedBy="category", cascade={"persist", "remove"})
- */
- private $products;
-
- public function getId()
- {
- return $this->id;
- }
-
- public function setTitle($title)
- {
- $this->title = $title;
- }
-
- public function getTitle()
- {
- return $this->title;
- }
-
- public function addArticles(Article $article)
- {
- $this->articles[] = $article;
- }
-
- public function getArticles()
- {
- return $this->articles;
- }
- public function addProducts(Product $product)
- {
- $this->products[] = $product;
- }
- public function getProducts()
- {
- return $this->products;
- }
- }
|