src/Entity/Setting.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use ApiPlatform\Core\Annotation\ApiResource;
  4. use App\Repository\SettingRepository;
  5. use Doctrine\DBAL\Types\Types;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassSettingRepository::class)]
  8. #[ApiResource]
  9. class Setting
  10. {
  11.     #[ORM\Id]
  12.     #[ORM\GeneratedValue]
  13.     #[ORM\Column]
  14.     private ?int $id null;
  15.     #[ORM\Column(length255nullabletrue)]
  16.     private ?string $service null;
  17.     #[ORM\Column(length255nullabletrue)]
  18.     private ?string $descservice null;
  19.     #[ORM\Column(length255nullabletrue)]
  20.     private ?string $descteam null;
  21.     #[ORM\Column(length255nullabletrue)]
  22.     private ?string $logo null;
  23.     #[ORM\Column(length255nullabletrue)]
  24.     private ?string $lienfb null;
  25.     #[ORM\Column(length255nullabletrue)]
  26.     private ?string $lieninsta null;
  27.     #[ORM\Column(length255nullabletrue)]
  28.     private ?string $lienyoutube null;
  29.     #[ORM\Column(length255nullabletrue)]
  30.     private ?string $lienlikedin null;
  31.     #[ORM\Column(length255nullabletrue)]
  32.     private ?string $contact null;
  33.     #[ORM\Column(length255nullabletrue)]
  34.     private ?string $map null;
  35.     #[ORM\Column(length255nullabletrue)]
  36.     private ?string $icon null;
  37.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  38.     private ?string $description1 null;
  39.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  40.     private ?string $description2 null;
  41.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  42.     private ?string $temoinage null;
  43.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  44.     private ?string $texttemoigbage null;
  45.     #[ORM\Column(length255nullabletrue)]
  46.     private ?string $liengit null;
  47.     #[ORM\Column(length255nullabletrue)]
  48.     private ?string $footer1 null;
  49.     #[ORM\Column(length255nullabletrue)]
  50.     private ?string $footer2 null;
  51.     #[ORM\Column(length255nullabletrue)]
  52.     private ?string $titrestat null;
  53.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  54.     private ?string $descstat null;
  55.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  56.     private ?string $descsousstat null;
  57.     #[ORM\Column(length255nullabletrue)]
  58.     private ?string $adresse null;
  59.     #[ORM\Column(length255nullabletrue)]
  60.     private ?string $numero null;
  61.     #[ORM\Column(length255nullabletrue)]
  62.     private ?string $imageapropos null;
  63.     #[ORM\Column(length255nullabletrue)]
  64.     private ?string $favicon null;
  65.     #[ORM\Column(length255nullabletrue)]
  66.     private ?string $nbrformation null;
  67.     #[ORM\Column(length255nullabletrue)]
  68.     private ?string $formateurs null;
  69.     #[ORM\Column(length255nullabletrue)]
  70.     private ?string $membres null;
  71.     #[ORM\Column(length255nullabletrue)]
  72.     private ?string $pays null;
  73.     #[ORM\Column(length255nullabletrue)]
  74.     private ?string $logofooter null;
  75.     #[ORM\Column(length255nullabletrue)]
  76.     private ?string $nbmessage null;
  77.     #[ORM\Column(length255nullabletrue)]
  78.     private ?string $whatsapp null;
  79.     #[ORM\Column(length255nullabletrue)]
  80.     private ?string $tva null;
  81.     #[ORM\Columnnullabletrue)]
  82.     private ?int $nbip null;
  83.     public function getId(): ?int
  84.     {
  85.         return $this->id;
  86.     }
  87.     public function getService(): ?string
  88.     {
  89.         return $this->service;
  90.     }
  91.     public function setService(?string $service): self
  92.     {
  93.         $this->service $service;
  94.         return $this;
  95.     }
  96.     public function getDescservice(): ?string
  97.     {
  98.         return $this->descservice;
  99.     }
  100.     public function setDescservice(?string $descservice): self
  101.     {
  102.         $this->descservice $descservice;
  103.         return $this;
  104.     }
  105.     public function getDescteam(): ?string
  106.     {
  107.         return $this->descteam;
  108.     }
  109.     public function setDescteam(?string $descteam): self
  110.     {
  111.         $this->descteam $descteam;
  112.         return $this;
  113.     }
  114.     public function getLogo(): ?string
  115.     {
  116.         return $this->logo;
  117.     }
  118.     public function setLogo(?string $logo): self
  119.     {
  120.         $this->logo $logo;
  121.         return $this;
  122.     }
  123.     public function getLienfb(): ?string
  124.     {
  125.         return $this->lienfb;
  126.     }
  127.     public function setLienfb(?string $lienfb): self
  128.     {
  129.         $this->lienfb $lienfb;
  130.         return $this;
  131.     }
  132.     public function getLieninsta(): ?string
  133.     {
  134.         return $this->lieninsta;
  135.     }
  136.     public function setLieninsta(?string $lieninsta): self
  137.     {
  138.         $this->lieninsta $lieninsta;
  139.         return $this;
  140.     }
  141.     public function getLienyoutube(): ?string
  142.     {
  143.         return $this->lienyoutube;
  144.     }
  145.     public function setLienyoutube(?string $lienyoutube): self
  146.     {
  147.         $this->lienyoutube $lienyoutube;
  148.         return $this;
  149.     }
  150.     public function getLienlikedin(): ?string
  151.     {
  152.         return $this->lienlikedin;
  153.     }
  154.     public function setLienlikedin(?string $lienlikedin): self
  155.     {
  156.         $this->lienlikedin $lienlikedin;
  157.         return $this;
  158.     }
  159.     public function getContact(): ?string
  160.     {
  161.         return $this->contact;
  162.     }
  163.     public function setContact(?string $contact): self
  164.     {
  165.         $this->contact $contact;
  166.         return $this;
  167.     }
  168.     public function getMap(): ?string
  169.     {
  170.         return $this->map;
  171.     }
  172.     public function setMap(?string $map): self
  173.     {
  174.         $this->map $map;
  175.         return $this;
  176.     }
  177.     public function getIcon(): ?string
  178.     {
  179.         return $this->icon;
  180.     }
  181.     public function setIcon(?string $icon): self
  182.     {
  183.         $this->icon $icon;
  184.         return $this;
  185.     }
  186.     public function getDescription1(): ?string
  187.     {
  188.         return $this->description1;
  189.     }
  190.     public function setDescription1(?string $description1): self
  191.     {
  192.         $this->description1 $description1;
  193.         return $this;
  194.     }
  195.     public function getDescription2(): ?string
  196.     {
  197.         return $this->description2;
  198.     }
  199.     public function setDescription2(?string $description2): self
  200.     {
  201.         $this->description2 $description2;
  202.         return $this;
  203.     }
  204.     public function getTemoinage(): ?string
  205.     {
  206.         return $this->temoinage;
  207.     }
  208.     public function setTemoinage(?string $temoinage): self
  209.     {
  210.         $this->temoinage $temoinage;
  211.         return $this;
  212.     }
  213.     public function getTexttemoigbage(): ?string
  214.     {
  215.         return $this->texttemoigbage;
  216.     }
  217.     public function setTexttemoigbage(?string $texttemoigbage): self
  218.     {
  219.         $this->texttemoigbage $texttemoigbage;
  220.         return $this;
  221.     }
  222.     public function getLiengit(): ?string
  223.     {
  224.         return $this->liengit;
  225.     }
  226.     public function setLiengit(?string $liengit): self
  227.     {
  228.         $this->liengit $liengit;
  229.         return $this;
  230.     }
  231.     public function getFooter1(): ?string
  232.     {
  233.         return $this->footer1;
  234.     }
  235.     public function setFooter1(?string $footer1): self
  236.     {
  237.         $this->footer1 $footer1;
  238.         return $this;
  239.     }
  240.     public function getFooter2(): ?string
  241.     {
  242.         return $this->footer2;
  243.     }
  244.     public function setFooter2(?string $footer2): self
  245.     {
  246.         $this->footer2 $footer2;
  247.         return $this;
  248.     }
  249.     public function getTitrestat(): ?string
  250.     {
  251.         return $this->titrestat;
  252.     }
  253.     public function setTitrestat(?string $titrestat): self
  254.     {
  255.         $this->titrestat $titrestat;
  256.         return $this;
  257.     }
  258.     public function getDescstat(): ?string
  259.     {
  260.         return $this->descstat;
  261.     }
  262.     public function setDescstat(?string $descstat): self
  263.     {
  264.         $this->descstat $descstat;
  265.         return $this;
  266.     }
  267.     public function getDescsousstat(): ?string
  268.     {
  269.         return $this->descsousstat;
  270.     }
  271.     public function setDescsousstat(?string $descsousstat): self
  272.     {
  273.         $this->descsousstat $descsousstat;
  274.         return $this;
  275.     }
  276.     public function getAdresse(): ?string
  277.     {
  278.         return $this->adresse;
  279.     }
  280.     public function setAdresse(?string $adresse): self
  281.     {
  282.         $this->adresse $adresse;
  283.         return $this;
  284.     }
  285.     public function getNumero(): ?string
  286.     {
  287.         return $this->numero;
  288.     }
  289.     public function setNumero(?string $numero): self
  290.     {
  291.         $this->numero $numero;
  292.         return $this;
  293.     }
  294.     public function getImageapropos(): ?string
  295.     {
  296.         return $this->imageapropos;
  297.     }
  298.     public function setImageapropos(?string $imageapropos): self
  299.     {
  300.         $this->imageapropos $imageapropos;
  301.         return $this;
  302.     }
  303.     public function getFavicon(): ?string
  304.     {
  305.         return $this->favicon;
  306.     }
  307.     public function setFavicon(?string $favicon): self
  308.     {
  309.         $this->favicon $favicon;
  310.         return $this;
  311.     }
  312.     public function getNbrformation(): ?string
  313.     {
  314.         return $this->nbrformation;
  315.     }
  316.     public function setNbrformation(?string $nbrformation): self
  317.     {
  318.         $this->nbrformation $nbrformation;
  319.         return $this;
  320.     }
  321.     public function getFormateurs(): ?string
  322.     {
  323.         return $this->formateurs;
  324.     }
  325.     public function setFormateurs(?string $formateurs): self
  326.     {
  327.         $this->formateurs $formateurs;
  328.         return $this;
  329.     }
  330.     public function getMembres(): ?string
  331.     {
  332.         return $this->membres;
  333.     }
  334.     public function setMembres(?string $membres): self
  335.     {
  336.         $this->membres $membres;
  337.         return $this;
  338.     }
  339.     public function getPays(): ?string
  340.     {
  341.         return $this->pays;
  342.     }
  343.     public function setPays(?string $pays): self
  344.     {
  345.         $this->pays $pays;
  346.         return $this;
  347.     }
  348.     public function getLogofooter(): ?string
  349.     {
  350.         return $this->logofooter;
  351.     }
  352.     public function setLogofooter(?string $logofooter): self
  353.     {
  354.         $this->logofooter $logofooter;
  355.         return $this;
  356.     }
  357.     public function getNbmessage(): ?string
  358.     {
  359.         return $this->nbmessage;
  360.     }
  361.     public function setNbmessage(?string $nbmessage): self
  362.     {
  363.         $this->nbmessage $nbmessage;
  364.         return $this;
  365.     }
  366.     public function getWhatsapp(): ?string
  367.     {
  368.         return $this->whatsapp;
  369.     }
  370.     public function setWhatsapp(?string $whatsapp): self
  371.     {
  372.         $this->whatsapp $whatsapp;
  373.         return $this;
  374.     }
  375.     public function getTva(): ?string
  376.     {
  377.         return $this->tva;
  378.     }
  379.     public function setTva(?string $tva): self
  380.     {
  381.         $this->tva $tva;
  382.         return $this;
  383.     }
  384.     public function getNbip(): ?int
  385.     {
  386.         return $this->nbip;
  387.     }
  388.     public function setNbip(?int $nbip): self
  389.     {
  390.         $this->nbip $nbip;
  391.         return $this;
  392.     }
  393. }