src/Entity/News.php line 19

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Gedmo\Mapping\Annotation as Gedmo;
  5. /**
  6.  * @ORM\Entity(repositoryClass="App\Repository\NewsRepository")
  7.  *
  8.  * @ORM\Table(
  9.  *     name="news",
  10.  *     indexes={
  11.  *
  12.  *         @ORM\Index(columns={"type"})
  13.  *     }
  14.  * )
  15.  */
  16. class News
  17. {
  18.     public const TYPE_B2C 'B2C';
  19.     public const TYPE_B2B 'B2B';
  20.     /**
  21.      * @ORM\Id
  22.      *
  23.      * @ORM\Column(type="bigint")
  24.      *
  25.      * @ORM\GeneratedValue(strategy="AUTO")
  26.      */
  27.     protected $id;
  28.     /**
  29.      * @ORM\Column(type="string")
  30.      *
  31.      * @Gedmo\Translatable
  32.      */
  33.     protected $title;
  34.     /**
  35.      * @ORM\Column(type="string")
  36.      */
  37.     protected $image;
  38.     /**
  39.      * @ORM\Column(type="string")
  40.      */
  41.     protected $link;
  42.     /**
  43.      * Locale.
  44.      *
  45.      * @Gedmo\Locale
  46.      */
  47.     protected $locale;
  48.     /** @var array */
  49.     private $translations;
  50.     public function __construct(
  51.         /**
  52.          * @ORM\Column(type="string")
  53.          */
  54.         protected $type
  55.     ) {
  56.     }
  57.     public static function getAvailableTypes()
  58.     {
  59.         return [
  60.             self::TYPE_B2C,
  61.             self::TYPE_B2B,
  62.         ];
  63.     }
  64.     public function getId()
  65.     {
  66.         return $this->id;
  67.     }
  68.     public function getTitle()
  69.     {
  70.         return $this->title;
  71.     }
  72.     public function setTitle($title): void
  73.     {
  74.         $this->title $title;
  75.     }
  76.     public function getLink()
  77.     {
  78.         return $this->link;
  79.     }
  80.     public function setLink($link): void
  81.     {
  82.         $this->link $link;
  83.     }
  84.     public function getImage()
  85.     {
  86.         return $this->image;
  87.     }
  88.     public function setImage($image): void
  89.     {
  90.         $this->image $image;
  91.     }
  92.     public function getType()
  93.     {
  94.         return $this->type;
  95.     }
  96.     public function setType($type): void
  97.     {
  98.         $this->type $type;
  99.     }
  100.     public function getLocale()
  101.     {
  102.         return $this->locale;
  103.     }
  104.     public function setLocale($locale): void
  105.     {
  106.         $this->locale $locale;
  107.     }
  108.     public function setTranslatableLocale($locale): void
  109.     {
  110.         $this->locale $locale;
  111.     }
  112.     public function setTranslations(array $translations): void
  113.     {
  114.         $this->translations $translations;
  115.     }
  116. }