src/Entity/CustomerContentHowTo.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\CustomerContentHowToRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassCustomerContentHowToRepository::class)]
  7. class CustomerContentHowTo
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column]
  14.     private ?bool $active null;
  15.     #[ORM\ManyToOne(targetEntityIcon::class)]
  16.     #[ORM\JoinColumn(name'fk_icon_1'nullabletrue)]
  17.     private ?Icon $howToIcon1 null;
  18.     #[ORM\Column(typeTypes::TEXT)]
  19.     private ?string $howToText1 null;
  20.     #[ORM\ManyToOne(targetEntityIcon::class)]
  21.     #[ORM\JoinColumn(name'fk_icon_2'nullabletrue)]
  22.     private ?Icon $howToIcon2 null;
  23.     #[ORM\Column(typeTypes::TEXT)]
  24.     private ?string $howToText2 null;
  25.     #[ORM\ManyToOne(targetEntityIcon::class)]
  26.     #[ORM\JoinColumn(name'fk_icon_3'nullabletrue)]
  27.     private ?Icon $howToIcon3 null;
  28.     #[ORM\Column(typeTypes::TEXT)]
  29.     private ?string $howToText3 null;
  30.     #[ORM\OneToOne(targetEntityImage::class, cascade: ['persist''remove'])]
  31.     #[ORM\JoinColumn(nullabletrueonDelete'SET NULL')]
  32.     private ?Image $backgroundImage null;
  33.     #[ORM\Column]
  34.     private ?string $backgroundColor null;
  35.     #[ORM\Column]
  36.     private ?string $iconColor null;
  37.     public function getId(): ?int
  38.     {
  39.         return $this->id;
  40.     }
  41.     public function isActive(): ?bool
  42.     {
  43.         return $this->active;
  44.     }
  45.     public function setActive(bool $active): self
  46.     {
  47.         $this->active $active;
  48.         return $this;
  49.     }
  50.     public function getHowToText1(): ?string
  51.     {
  52.         return $this->howToText1;
  53.     }
  54.     public function setHowToText1(string $howToText1): self
  55.     {
  56.         $this->howToText1 $howToText1;
  57.         return $this;
  58.     }
  59.     public function getHowToText2(): ?string
  60.     {
  61.         return $this->howToText2;
  62.     }
  63.     public function setHowToText2(string $howToText2): self
  64.     {
  65.         $this->howToText2 $howToText2;
  66.         return $this;
  67.     }
  68.     public function getHowToText3(): ?string
  69.     {
  70.         return $this->howToText3;
  71.     }
  72.     public function setHowToText3(string $howToText3): self
  73.     {
  74.         $this->howToText3 $howToText3;
  75.         return $this;
  76.     }
  77.     public function getHowToIcon1(): ?Icon
  78.     {
  79.         return $this->howToIcon1;
  80.     }
  81.     public function setHowToIcon1(?Icon $howToIcon1): self
  82.     {
  83.         $this->howToIcon1 $howToIcon1;
  84.         return $this;
  85.     }
  86.     public function getHowToIcon2(): ?Icon
  87.     {
  88.         return $this->howToIcon2;
  89.     }
  90.     public function setHowToIcon2(?Icon $howToIcon2): self
  91.     {
  92.         $this->howToIcon2 $howToIcon2;
  93.         return $this;
  94.     }
  95.     public function getHowToIcon3(): ?Icon
  96.     {
  97.         return $this->howToIcon3;
  98.     }
  99.     public function setHowToIcon3(?Icon $howToIcon3): self
  100.     {
  101.         $this->howToIcon3 $howToIcon3;
  102.         return $this;
  103.     }
  104.     public function getBackgroundImage(): ?Image
  105.     {
  106.         return $this->backgroundImage;
  107.     }
  108.     public function setBackgroundImage(?Image $backgroundImage): self
  109.     {
  110.         $this->backgroundImage $backgroundImage;
  111.         return $this;
  112.     }
  113.     public function getBackgroundColor(): ?string
  114.     {
  115.         return $this->backgroundColor;
  116.     }
  117.     public function setBackgroundColor(string $backgroundColor): self
  118.     {
  119.         $this->backgroundColor $backgroundColor;
  120.         return $this;
  121.     }
  122.     public function getIconColor(): ?string
  123.     {
  124.         return $this->iconColor;
  125.     }
  126.     public function setIconColor(string $iconColor): self
  127.     {
  128.         $this->iconColor $iconColor;
  129.         return $this;
  130.     }
  131. }