src/Entity/News.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\NewsRepository;
  4. use App\Traits\EntityDateTimeAbleTrait;
  5. use App\Traits\SeoTrait;
  6. use Doctrine\ORM\Mapping as ORM;
  7. use Gedmo\Mapping\Annotation as Gedmo;
  8. #[ORM\Entity(repositoryClassNewsRepository::class)]
  9. #[ORM\HasLifecycleCallbacks]
  10. class News
  11. {
  12.     const STATUS_ACTIVE 1;
  13.     const STATUS_INACTIVE 0;
  14.     use EntityDateTimeAbleTrait;
  15.     use SeoTrait;
  16.     /**
  17.      * @Gedmo\Locale
  18.      * Used locale to override Translation listener`s locale
  19.      * this is not a mapped field of entity metadata, just a simple property
  20.      */
  21.     private $locale;
  22.     #[ORM\Id]
  23.     #[ORM\GeneratedValue]
  24.     #[ORM\Column(type'integer')]
  25.     private $id;
  26.     /**
  27.      * @Gedmo\Translatable
  28.      */
  29.     #[ORM\Column(type'string'length255)]
  30.     private ?string $title null;
  31.     /**
  32.      * @Gedmo\Translatable
  33.      */
  34.     #[ORM\Column(type'text'nullabletrue)]
  35.     private ?string $description null;
  36.     #[ORM\Column(type'text'nullabletrue)]
  37.     private ?string $content null;
  38.     #[ORM\Column(type'integer')]
  39.     private ?int $status null;
  40.     #[ORM\Column(type'integer')]
  41.     private ?int $priority null;
  42.     #[ORM\OneToOne(targetEntityMedia::class, orphanRemovaltruecascade: ['persist'])]
  43.     #[ORM\JoinColumn(nullabletrue)]
  44.     private ?\App\Entity\Media $media null;
  45.     public function getId(): ?int
  46.     {
  47.         return $this->id;
  48.     }
  49.     public function getTitle(): ?string
  50.     {
  51.         return $this->title;
  52.     }
  53.     public function setTitle(string $title): self
  54.     {
  55.         $this->title $title;
  56.         return $this;
  57.     }
  58.     public function getDescription(): ?string
  59.     {
  60.         return $this->description;
  61.     }
  62.     public function setDescription(string $description): self
  63.     {
  64.         $this->description $description;
  65.         return $this;
  66.     }
  67.     public function getContent(): ?string
  68.     {
  69.         return $this->content;
  70.     }
  71.     public function setContent(string $content): self
  72.     {
  73.         $this->content $content;
  74.         return $this;
  75.     }
  76.     public function getStatus(): ?int
  77.     {
  78.         return $this->status;
  79.     }
  80.     public function setStatus(int $status): self
  81.     {
  82.         $this->status $status;
  83.         return $this;
  84.     }
  85.     public function getPriority(): ?int
  86.     {
  87.         return $this->priority;
  88.     }
  89.     public function setPriority(int $priority): self
  90.     {
  91.         $this->priority $priority;
  92.         return $this;
  93.     }
  94.     public function getMedia(): ?Media
  95.     {
  96.         return $this->media;
  97.     }
  98.     public function setMedia(?Media $media): self
  99.     {
  100.         $this->media $media;
  101.         return $this;
  102.     }
  103. }