<?php
namespace App\Entity;
use App\Repository\StyleConfigurationRepository;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: StyleConfigurationRepository::class)]
class StyleConfiguration
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $headerBg = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $headerLink = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $headerLink2 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $footerBg = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $footerLink = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $footerLink2 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $color1 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $color2 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $color3 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $color4 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $color5 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $color6 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $color7 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $color8 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $colorBody = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $colorLight = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $colorDark = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $colorValid = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $colorValid2 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $colorDelete = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $colorDelete2 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $colorCancel = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $colorCancel2 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $colorShow = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $colorShow2 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $svgSizeDefault = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $svgSize1 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $svgSize2 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $svgSize3 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $sizeValue1 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $sizeValue2 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $sizeValue3 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $borderWidth1 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $borderWidth2 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $borderWidth3 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $rad1 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $rad2 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $rad3 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $trans1 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $trans2 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $trans3 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $trans4 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $delay1 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $delay2 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $delay3 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $delay4 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $scale1 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $scale2 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $scale3 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $scale4 = null;
#[ORM\Column(length: 255)]
private ?string $name = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $linkColor = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $linkColor2 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $bxSh = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $bxSh2 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $import = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $font = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $font2 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $additionnal = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $header = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $footer = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $formtheme = null;
#[ORM\Column(nullable: true)]
private ?array $content = null;
#[ORM\Column(nullable: true)]
private ?bool $is_active = null;
public function getId(): ?int
{
return $this->id;
}
public function getHeaderBg(): ?string
{
return $this->headerBg;
}
public function setHeaderBg(?string $headerBg): self
{
$this->headerBg = $headerBg;
return $this;
}
public function getHeaderLink(): ?string
{
return $this->headerLink;
}
public function setheaderLink(?string $headerLink): self
{
$this->headerLink = $headerLink;
return $this;
}
public function getHeaderLink2(): ?string
{
return $this->headerLink2;
}
public function setheaderLink2(?string $headerLink2): self
{
$this->headerLink2 = $headerLink2;
return $this;
}
public function getFooterBg(): ?string
{
return $this->footerBg;
}
public function setFooterBg(?string $footerBg): self
{
$this->footerBg = $footerBg;
return $this;
}
public function getFooterLink(): ?string
{
return $this->footerLink;
}
public function setFooterLink(?string $footerLink): self
{
$this->footerLink = $footerLink;
return $this;
}
public function getFooterLink2(): ?string
{
return $this->footerLink2;
}
public function setFooterLink2(?string $footerLink2): self
{
$this->footerLink2 = $footerLink2;
return $this;
}
public function getColor1(): ?string
{
return $this->color1;
}
public function setColor1(?string $color1): self
{
$this->color1 = $color1;
return $this;
}
public function getColor2(): ?string
{
return $this->color2;
}
public function setColor2(?string $color2): self
{
$this->color2 = $color2;
return $this;
}
public function getColor3(): ?string
{
return $this->color3;
}
public function setColor3(?string $color3): self
{
$this->color3 = $color3;
return $this;
}
public function getColor4(): ?string
{
return $this->color4;
}
public function setColor4(?string $color4): self
{
$this->color4 = $color4;
return $this;
}
public function getColor5(): ?string
{
return $this->color5;
}
public function setColor5(?string $color5): self
{
$this->color5 = $color5;
return $this;
}
public function getColor6(): ?string
{
return $this->color6;
}
public function setColor6(?string $color6): self
{
$this->color6 = $color6;
return $this;
}
public function getColor7(): ?string
{
return $this->color7;
}
public function setColor7(?string $color7): self
{
$this->color7 = $color7;
return $this;
}
public function getColor8(): ?string
{
return $this->color8;
}
public function setColor8(?string $color8): self
{
$this->color8 = $color8;
return $this;
}
public function getColorBody(): ?string
{
return $this->colorBody;
}
public function setColorBody(?string $colorBody): self
{
$this->colorBody = $colorBody;
return $this;
}
public function getColorLight(): ?string
{
return $this->colorLight;
}
public function setColorLight(?string $colorLight): self
{
$this->colorLight = $colorLight;
return $this;
}
public function getColorDark(): ?string
{
return $this->colorDark;
}
public function setColorDark(?string $colorDark): self
{
$this->colorDark = $colorDark;
return $this;
}
public function getColorValid(): ?string
{
return $this->colorValid;
}
public function setColorValid(?string $colorValid): self
{
$this->colorValid = $colorValid;
return $this;
}
public function getColorValid2(): ?string
{
return $this->colorValid2;
}
public function setColorValid2(?string $colorValid2): self
{
$this->colorValid2 = $colorValid2;
return $this;
}
public function getColorDelete(): ?string
{
return $this->colorDelete;
}
public function setColorDelete(?string $colorDelete): self
{
$this->colorDelete = $colorDelete;
return $this;
}
public function getColorDelete2(): ?string
{
return $this->colorDelete2;
}
public function setColorDelete2(?string $colorDelete2): self
{
$this->colorDelete2 = $colorDelete2;
return $this;
}
public function getColorCancel(): ?string
{
return $this->colorCancel;
}
public function setColorCancel(?string $colorCancel): self
{
$this->colorCancel = $colorCancel;
return $this;
}
public function getColorCancel2(): ?string
{
return $this->colorCancel2;
}
public function setColorCancel2(?string $colorCancel2): self
{
$this->colorCancel2 = $colorCancel2;
return $this;
}
public function getColorShow(): ?string
{
return $this->colorShow;
}
public function setColorShow(?string $colorShow): self
{
$this->colorShow = $colorShow;
return $this;
}
public function getColorShow2(): ?string
{
return $this->colorShow2;
}
public function setColorShow2(?string $colorShow2): self
{
$this->colorShow2 = $colorShow2;
return $this;
}
public function getSvgSizeDefault(): ?string
{
return $this->svgSizeDefault;
}
public function setSvgSizeDefault(?string $svgSizeDefault): self
{
$this->svgSizeDefault = $svgSizeDefault;
return $this;
}
public function getSvgSize1(): ?string
{
return $this->svgSize1;
}
public function setSvgSize1(?string $svgSize1): self
{
$this->svgSize1 = $svgSize1;
return $this;
}
public function getSvgSize2(): ?string
{
return $this->svgSize2;
}
public function setSvgSize2(?string $svgSize2): self
{
$this->svgSize2 = $svgSize2;
return $this;
}
public function getSvgSize3(): ?string
{
return $this->svgSize3;
}
public function setSvgSize3(?string $svgSize3): self
{
$this->svgSize3 = $svgSize3;
return $this;
}
public function getSizeValue1(): ?string
{
return $this->sizeValue1;
}
public function setSizeValue1(?string $sizeValue1): self
{
$this->sizeValue1 = $sizeValue1;
return $this;
}
public function getSizeValue2(): ?string
{
return $this->sizeValue2;
}
public function setSizeValue2(?string $sizeValue2): self
{
$this->sizeValue2 = $sizeValue2;
return $this;
}
public function getSizeValue3(): ?string
{
return $this->sizeValue3;
}
public function setSizeValue3(?string $sizeValue3): self
{
$this->sizeValue3 = $sizeValue3;
return $this;
}
public function getBorderWidth1(): ?string
{
return $this->borderWidth1;
}
public function setBorderWidth1(?string $borderWidth1): self
{
$this->borderWidth1 = $borderWidth1;
return $this;
}
public function getBorderWidth2(): ?string
{
return $this->borderWidth2;
}
public function setBorderWidth2(?string $borderWidth2): self
{
$this->borderWidth2 = $borderWidth2;
return $this;
}
public function getBorderWidth3(): ?string
{
return $this->borderWidth3;
}
public function setBorderWidth3(?string $borderWidth3): self
{
$this->borderWidth3 = $borderWidth3;
return $this;
}
public function getRad1(): ?string
{
return $this->rad1;
}
public function setRad1(?string $rad1): self
{
$this->rad1 = $rad1;
return $this;
}
public function getRad2(): ?string
{
return $this->rad2;
}
public function setRad2(?string $rad2): self
{
$this->rad2 = $rad2;
return $this;
}
public function getRad3(): ?string
{
return $this->rad3;
}
public function setRad3(?string $rad3): self
{
$this->rad3 = $rad3;
return $this;
}
public function getTrans1(): ?string
{
return $this->trans1;
}
public function setTrans1(?string $trans1): self
{
$this->trans1 = $trans1;
return $this;
}
public function getTrans2(): ?string
{
return $this->trans2;
}
public function setTrans2(?string $trans2): self
{
$this->trans2 = $trans2;
return $this;
}
public function getTrans3(): ?string
{
return $this->trans3;
}
public function setTrans3(?string $trans3): self
{
$this->trans3 = $trans3;
return $this;
}
public function getTrans4(): ?string
{
return $this->trans4;
}
public function setTrans4(?string $trans4): self
{
$this->trans4 = $trans4;
return $this;
}
public function getDelay1(): ?string
{
return $this->delay1;
}
public function setDelay1(?string $delay1): self
{
$this->delay1 = $delay1;
return $this;
}
public function getDelay2(): ?string
{
return $this->delay2;
}
public function setDelay2(?string $delay2): self
{
$this->delay2 = $delay2;
return $this;
}
public function getDelay3(): ?string
{
return $this->delay3;
}
public function setDelay3(?string $delay3): self
{
$this->delay3 = $delay3;
return $this;
}
public function getDelay4(): ?string
{
return $this->delay4;
}
public function setDelay4(?string $delay4): self
{
$this->delay4 = $delay4;
return $this;
}
public function getScale1(): ?string
{
return $this->scale1;
}
public function setScale1(?string $scale1): self
{
$this->scale1 = $scale1;
return $this;
}
public function getScale2(): ?string
{
return $this->scale2;
}
public function setScale2(?string $scale2): self
{
$this->scale2 = $scale2;
return $this;
}
public function getScale3(): ?string
{
return $this->scale3;
}
public function setScale3(?string $scale3): self
{
$this->scale3 = $scale3;
return $this;
}
public function getScale4(): ?string
{
return $this->scale4;
}
public function setScale4(?string $scale4): self
{
$this->scale4 = $scale4;
return $this;
}
public function getName(): ?string
{
return $this->name;
}
public function setName(string $name): self
{
$this->name = $name;
return $this;
}
public function getLinkColor(): ?string
{
return $this->linkColor;
}
public function setLinkColor(?string $linkColor): self
{
$this->linkColor = $linkColor;
return $this;
}
public function getLinkColor2(): ?string
{
return $this->linkColor2;
}
public function setLinkColor2(?string $linkColor2): self
{
$this->linkColor2 = $linkColor2;
return $this;
}
public function getBxSh(): ?string
{
return $this->bxSh;
}
public function setBxSh(?string $bxSh): self
{
$this->bxSh = $bxSh;
return $this;
}
public function getBxSh2(): ?string
{
return $this->bxSh2;
}
public function setBxSh2(?string $bxSh2): self
{
$this->bxSh2 = $bxSh2;
return $this;
}
public function getImport(): ?string
{
return $this->import;
}
public function setImport(?string $import): self
{
$this->import = $import;
return $this;
}
public function getFont(): ?string
{
return $this->font;
}
public function setFont(?string $font): self
{
$this->font = $font;
return $this;
}
public function getFont2(): ?string
{
return $this->font2;
}
public function setFont2(?string $font2): self
{
$this->font2 = $font2;
return $this;
}
public function getAdditionnal(): ?string
{
return $this->additionnal;
}
public function setAdditionnal(?string $additionnal): self
{
$this->additionnal = $additionnal;
return $this;
}
public function getHeader(): ?string
{
return $this->header;
}
public function setHeader(?string $header): static
{
$this->header = $header;
return $this;
}
public function getFooter(): ?string
{
return $this->footer;
}
public function setFooter(?string $footer): static
{
$this->footer = $footer;
return $this;
}
public function getFormtheme(): ?string
{
return $this->formtheme;
}
public function setFormtheme(?string $formtheme): static
{
$this->formtheme = $formtheme;
return $this;
}
public function isIsActive(): ?bool
{
return $this->is_active;
}
public function getContent(): ?array
{
return $this->content;
}
public function setContent(?array $content): static
{
$this->content = $content;
return $this;
}
public function setIsActive(?bool $is_active): static
{
$this->is_active = $is_active;
return $this;
}
}