src/Entity/BannerTranslation.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Symfony\Component\Validator\Constraints as Assert;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Knp\DoctrineBehaviors\Contract\Entity\TranslationInterface;
  6. use Knp\DoctrineBehaviors\Model\Translatable\TranslationTrait;
  7. use App\Repository\BannerTranslationRepository;
  8. #[ORM\Entity(repositoryClassBannerTranslationRepository::class)]
  9. class BannerTranslation implements TranslationInterface
  10. {
  11.     use TranslationTrait;
  12.     #[ORM\Id]
  13.     #[ORM\GeneratedValue]
  14.     #[ORM\Column]
  15.     private ?int $id null;
  16.     #[ORM\Column(length255)]
  17.     #[Assert\NotNull()]
  18.     private ?string $title null;
  19.     #[ORM\Column(length255nullabletrue)]
  20.     #[Assert\Length(max255)]
  21.     private ?string $description null;
  22.     #[ORM\Column(length255nullabletrue)]
  23.     private ?string $button_text null;
  24.     #[ORM\Column(length255nullabletrue)]
  25.     private ?string $link null;
  26.     #[ORM\OneToOne(cascade: ['persist''remove'])]
  27.     #[Assert\NotNull()]
  28.     private ?Media $image null;
  29.     public function getId(): ?int
  30.     {
  31.         return $this->id;
  32.     }
  33.     public function getTitle(): ?string
  34.     {
  35.         return $this->title;
  36.     }
  37.     public function setTitle(string $title): self
  38.     {
  39.         $this->title $title;
  40.         return $this;
  41.     }
  42.     public function getDescription(): ?string
  43.     {
  44.         return $this->description;
  45.     }
  46.     public function setDescription(?string $description): self
  47.     {
  48.         $this->description $description;
  49.         return $this;
  50.     }
  51.     public function getButtonText(): ?string
  52.     {
  53.         return $this->button_text;
  54.     }
  55.     public function setButtonText(?string $button_text): self
  56.     {
  57.         $this->button_text $button_text;
  58.         return $this;
  59.     }
  60.     public function getLink(): ?string
  61.     {
  62.         return $this->link;
  63.     }
  64.     public function setLink(?string $link): self
  65.     {
  66.         $this->link $link;
  67.         return $this;
  68.     }
  69.     public function getImage(): ?Media
  70.     {
  71.         return $this->image;
  72.     }
  73.     public function setImage(Media $image): self
  74.     {
  75.         $image->setDirectory('banner');
  76.         $this->image $image;
  77.         return $this;
  78.     }
  79. }