src/Entity/SiteCustomization.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\SiteCustomizationRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=SiteCustomizationRepository::class)
  7.  */
  8. class SiteCustomization
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="string", length=255)
  18.      */
  19.     private $menuBackgroundColor;
  20.     /**
  21.      * @ORM\Column(type="string", length=255)
  22.      */
  23.     private $buttonBackgroundColor;
  24.     /**
  25.      * @ORM\Column(type="string", length=255)
  26.      */
  27.     private $pageBackgroundColor;
  28.     /**
  29.      * @ORM\Column(type="string", length=255)
  30.      */
  31.     private $menuForegroundColor;
  32.     /**
  33.      * @ORM\Column(type="string", length=255)
  34.      */
  35.     private $buttonForegroundColor;
  36.     /**
  37.      * @ORM\Column(type="string", length=255)
  38.      */
  39.     private $pageForegroundColor;
  40.     /**
  41.      * @ORM\Column(type="string", length=255)
  42.      */
  43.     private $pageTitleColor;
  44.     public function getId(): ?int
  45.     {
  46.         return $this->id;
  47.     }
  48.     public function getMenuBackgroundColor(): ?string
  49.     {
  50.         return $this->menuBackgroundColor;
  51.     }
  52.     public function setMenuBackgroundColor(string $menuBackgroundColor): self
  53.     {
  54.         $this->menuBackgroundColor $menuBackgroundColor;
  55.         return $this;
  56.     }
  57.     public function getButtonBackgroundColor(): ?string
  58.     {
  59.         return $this->buttonBackgroundColor;
  60.     }
  61.     public function setButtonBackgroundColor(string $buttonBackgroundColor): self
  62.     {
  63.         $this->buttonBackgroundColor $buttonBackgroundColor;
  64.         return $this;
  65.     }
  66.     public function getPageBackgroundColor(): ?string
  67.     {
  68.         return $this->pageBackgroundColor;
  69.     }
  70.     public function setPageBackgroundColor(string $pageBackgroundColor): self
  71.     {
  72.         $this->pageBackgroundColor $pageBackgroundColor;
  73.         return $this;
  74.     }
  75.     public function getMenuForegroundColor(): ?string
  76.     {
  77.         return $this->menuForegroundColor;
  78.     }
  79.     public function setMenuForegroundColor(string $menuForegroundColor): self
  80.     {
  81.         $this->menuForegroundColor $menuForegroundColor;
  82.         return $this;
  83.     }
  84.     public function getButtonForegroundColor(): ?string
  85.     {
  86.         return $this->buttonForegroundColor;
  87.     }
  88.     public function setButtonForegroundColor(string $buttonForegroundColor): self
  89.     {
  90.         $this->buttonForegroundColor $buttonForegroundColor;
  91.         return $this;
  92.     }
  93.     public function getPageForegroundColor(): ?string
  94.     {
  95.         return $this->pageForegroundColor;
  96.     }
  97.     public function setPageForegroundColor(string $pageForegroundColor): self
  98.     {
  99.         $this->pageForegroundColor $pageForegroundColor;
  100.         return $this;
  101.     }
  102.     public function getPageTitleColor(): ?string
  103.     {
  104.         return $this->pageTitleColor;
  105.     }
  106.     public function setPageTitleColor(string $pageTitleColor): self
  107.     {
  108.         $this->pageTitleColor $pageTitleColor;
  109.         return $this;
  110.     }
  111. }