<?php
namespace App\Entity;
use ApiPlatform\Core\Annotation\ApiResource;
use App\Repository\SettingRepository;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: SettingRepository::class)]
#[ApiResource]
class Setting
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $service = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $descservice = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $descteam = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $logo = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $lienfb = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $lieninsta = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $lienyoutube = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $lienlikedin = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $contact = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $map = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $icon = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $description1 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $description2 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $temoinage = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $texttemoigbage = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $liengit = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $footer1 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $footer2 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $titrestat = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $descstat = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $descsousstat = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $adresse = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $numero = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $imageapropos = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $favicon = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $nbrformation = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $formateurs = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $membres = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $pays = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $logofooter = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $nbmessage = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $whatsapp = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $tva = null;
#[ORM\Column( nullable: true)]
private ?int $nbip = null;
public function getId(): ?int
{
return $this->id;
}
public function getService(): ?string
{
return $this->service;
}
public function setService(?string $service): self
{
$this->service = $service;
return $this;
}
public function getDescservice(): ?string
{
return $this->descservice;
}
public function setDescservice(?string $descservice): self
{
$this->descservice = $descservice;
return $this;
}
public function getDescteam(): ?string
{
return $this->descteam;
}
public function setDescteam(?string $descteam): self
{
$this->descteam = $descteam;
return $this;
}
public function getLogo(): ?string
{
return $this->logo;
}
public function setLogo(?string $logo): self
{
$this->logo = $logo;
return $this;
}
public function getLienfb(): ?string
{
return $this->lienfb;
}
public function setLienfb(?string $lienfb): self
{
$this->lienfb = $lienfb;
return $this;
}
public function getLieninsta(): ?string
{
return $this->lieninsta;
}
public function setLieninsta(?string $lieninsta): self
{
$this->lieninsta = $lieninsta;
return $this;
}
public function getLienyoutube(): ?string
{
return $this->lienyoutube;
}
public function setLienyoutube(?string $lienyoutube): self
{
$this->lienyoutube = $lienyoutube;
return $this;
}
public function getLienlikedin(): ?string
{
return $this->lienlikedin;
}
public function setLienlikedin(?string $lienlikedin): self
{
$this->lienlikedin = $lienlikedin;
return $this;
}
public function getContact(): ?string
{
return $this->contact;
}
public function setContact(?string $contact): self
{
$this->contact = $contact;
return $this;
}
public function getMap(): ?string
{
return $this->map;
}
public function setMap(?string $map): self
{
$this->map = $map;
return $this;
}
public function getIcon(): ?string
{
return $this->icon;
}
public function setIcon(?string $icon): self
{
$this->icon = $icon;
return $this;
}
public function getDescription1(): ?string
{
return $this->description1;
}
public function setDescription1(?string $description1): self
{
$this->description1 = $description1;
return $this;
}
public function getDescription2(): ?string
{
return $this->description2;
}
public function setDescription2(?string $description2): self
{
$this->description2 = $description2;
return $this;
}
public function getTemoinage(): ?string
{
return $this->temoinage;
}
public function setTemoinage(?string $temoinage): self
{
$this->temoinage = $temoinage;
return $this;
}
public function getTexttemoigbage(): ?string
{
return $this->texttemoigbage;
}
public function setTexttemoigbage(?string $texttemoigbage): self
{
$this->texttemoigbage = $texttemoigbage;
return $this;
}
public function getLiengit(): ?string
{
return $this->liengit;
}
public function setLiengit(?string $liengit): self
{
$this->liengit = $liengit;
return $this;
}
public function getFooter1(): ?string
{
return $this->footer1;
}
public function setFooter1(?string $footer1): self
{
$this->footer1 = $footer1;
return $this;
}
public function getFooter2(): ?string
{
return $this->footer2;
}
public function setFooter2(?string $footer2): self
{
$this->footer2 = $footer2;
return $this;
}
public function getTitrestat(): ?string
{
return $this->titrestat;
}
public function setTitrestat(?string $titrestat): self
{
$this->titrestat = $titrestat;
return $this;
}
public function getDescstat(): ?string
{
return $this->descstat;
}
public function setDescstat(?string $descstat): self
{
$this->descstat = $descstat;
return $this;
}
public function getDescsousstat(): ?string
{
return $this->descsousstat;
}
public function setDescsousstat(?string $descsousstat): self
{
$this->descsousstat = $descsousstat;
return $this;
}
public function getAdresse(): ?string
{
return $this->adresse;
}
public function setAdresse(?string $adresse): self
{
$this->adresse = $adresse;
return $this;
}
public function getNumero(): ?string
{
return $this->numero;
}
public function setNumero(?string $numero): self
{
$this->numero = $numero;
return $this;
}
public function getImageapropos(): ?string
{
return $this->imageapropos;
}
public function setImageapropos(?string $imageapropos): self
{
$this->imageapropos = $imageapropos;
return $this;
}
public function getFavicon(): ?string
{
return $this->favicon;
}
public function setFavicon(?string $favicon): self
{
$this->favicon = $favicon;
return $this;
}
public function getNbrformation(): ?string
{
return $this->nbrformation;
}
public function setNbrformation(?string $nbrformation): self
{
$this->nbrformation = $nbrformation;
return $this;
}
public function getFormateurs(): ?string
{
return $this->formateurs;
}
public function setFormateurs(?string $formateurs): self
{
$this->formateurs = $formateurs;
return $this;
}
public function getMembres(): ?string
{
return $this->membres;
}
public function setMembres(?string $membres): self
{
$this->membres = $membres;
return $this;
}
public function getPays(): ?string
{
return $this->pays;
}
public function setPays(?string $pays): self
{
$this->pays = $pays;
return $this;
}
public function getLogofooter(): ?string
{
return $this->logofooter;
}
public function setLogofooter(?string $logofooter): self
{
$this->logofooter = $logofooter;
return $this;
}
public function getNbmessage(): ?string
{
return $this->nbmessage;
}
public function setNbmessage(?string $nbmessage): self
{
$this->nbmessage = $nbmessage;
return $this;
}
public function getWhatsapp(): ?string
{
return $this->whatsapp;
}
public function setWhatsapp(?string $whatsapp): self
{
$this->whatsapp = $whatsapp;
return $this;
}
public function getTva(): ?string
{
return $this->tva;
}
public function setTva(?string $tva): self
{
$this->tva = $tva;
return $this;
}
public function getNbip(): ?int
{
return $this->nbip;
}
public function setNbip(?int $nbip): self
{
$this->nbip = $nbip;
return $this;
}
}