src/Entity/Alumni.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\AlumniRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Gedmo\Mapping\Annotation as Gedmo;
  6. use App\Traits\SeoTrait;
  7. #[ORM\Entity(repositoryClassAlumniRepository::class)]
  8. #[ORM\HasLifecycleCallbacks]
  9. class Alumni
  10. {
  11.     use \App\Traits\EntityDateTimeAbleTrait;
  12.     use SeoTrait;
  13.     const STATUS_ACTIVE 1;
  14.     const STATUS_INACTIVE 0;
  15.     #[ORM\Id]
  16.     #[ORM\GeneratedValue]
  17.     #[ORM\Column(type'integer')]
  18.     private $id;
  19.     /**
  20.      * @Gedmo\Translatable
  21.      */
  22.     #[ORM\Column(type'string'length255nullabletrue)]
  23.     private ?string $title null;
  24.     /**
  25.      * @Gedmo\Translatable
  26.      */
  27.     #[ORM\Column(type'text'nullabletrue)]
  28.     private ?string $description null;
  29.     /**
  30.      * @Gedmo\Translatable
  31.      */
  32.     #[ORM\Column(type'text'nullabletrue)]
  33.     private ?string $content null;
  34.     #[ORM\Column(type'string'length255nullabletrue)]
  35.     private ?string $photo null;
  36.     #[ORM\Column(type'string'length255nullabletrue)]
  37.     private ?string $video null;
  38.     #[ORM\Column(type'float')]
  39.     private ?float $status null;
  40.     public function getId(): ?int
  41.     {
  42.         return $this->id;
  43.     }
  44.     public function getTitle(): ?string
  45.     {
  46.         return $this->title;
  47.     }
  48.     public function setTitle(?string $title): self
  49.     {
  50.         $this->title $title;
  51.         return $this;
  52.     }
  53.     public function getContent(): ?string
  54.     {
  55.         return $this->content;
  56.     }
  57.     public function setDescription(?string $description): self
  58.     {
  59.         $this->description $description;
  60.         return $this;
  61.     }
  62.     public function getDescription(): ?string
  63.     {
  64.         return $this->description;
  65.     }
  66.     public function setContent(?string $content): self
  67.     {
  68.         $this->content $content;
  69.         return $this;
  70.     }
  71.     public function getPhoto(): ?string
  72.     {
  73.         return $this->photo;
  74.     }
  75.     public function setPhoto(?string $photo): self
  76.     {
  77.         $this->photo $photo;
  78.         return $this;
  79.     }
  80.     public function getVideo(): ?string
  81.     {
  82.         return $this->video;
  83.     }
  84.     public function setVideo(?string $video): self
  85.     {
  86.         $this->video $video;
  87.         return $this;
  88.     }
  89.     public function getStatus(): ?float
  90.     {
  91.         return $this->status;
  92.     }
  93.     public function setStatus(float $status): self
  94.     {
  95.         $this->status $status;
  96.         return $this;
  97.     }
  98. }