src/Entity/CustomerTemplate.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\CustomerTemplateRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassCustomerTemplateRepository::class)]
  6. class CustomerTemplate
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\Column(length10)]
  13.     private ?string $primaryColor;
  14.     #[ORM\Column(length10)]
  15.     private ?string $secondaryColor;
  16.     #[ORM\Column(length100)]
  17.     private ?string $footerBackgroundColor;
  18.     #[ORM\Column(length100)]
  19.     private ?string $footerTextColor;
  20.     #[ORM\OneToOne(targetEntityImage::class, cascade: ['persist''remove'])]
  21.     #[ORM\JoinColumn(nullabletrue)]
  22.     private ?Image $headerImage null;
  23.     public function getId(): ?int
  24.     {
  25.         return $this->id;
  26.     }
  27.     public function getSecondaryColor(): ?string
  28.     {
  29.         return $this->secondaryColor;
  30.     }
  31.     public function setSecondaryColor(string $secondaryColor): self
  32.     {
  33.         $this->secondaryColor $secondaryColor;
  34.         return $this;
  35.     }
  36.     public function getHeaderImage(): ?Image
  37.     {
  38.         return $this->headerImage;
  39.     }
  40.     public function setHeaderImage(?Image $headerImage): self
  41.     {
  42.         $this->headerImage $headerImage;
  43.         return $this;
  44.     }
  45.     public function getPrimaryColor(): ?string
  46.     {
  47.         return $this->primaryColor;
  48.     }
  49.     public function setPrimaryColor(string $primaryColor): self
  50.     {
  51.         $this->primaryColor $primaryColor;
  52.         return $this;
  53.     }
  54.     public function getFooterBackgroundColor(): ?string
  55.     {
  56.         return $this->footerBackgroundColor;
  57.     }
  58.     public function setFooterBackgroundColor(string $footerBackgroundColor): self
  59.     {
  60.         $this->footerBackgroundColor $footerBackgroundColor;
  61.         return $this;
  62.     }
  63.     public function getFooterTextColor(): ?string
  64.     {
  65.         return $this->footerTextColor;
  66.     }
  67.     public function setFooterTextColor(string $footerTextColor): self
  68.     {
  69.         $this->footerTextColor $footerTextColor;
  70.         return $this;
  71.     }
  72. }