<?php
namespace App\Entity\Main;
use Doctrine\ORM\Mapping as ORM;
/**
* Textos
*
* @ORM\Table(name="textos", indexes={@ORM\Index(name="identificador", columns={"identificador"})})
* @ORM\Entity(repositoryClass="App\Repository\Main\TextosRepository")
*/
class Textos
{
/**
* @var int
*
* @ORM\Column(name="idText", type="integer", nullable=false)
* @ORM\Id
* @ORM\GeneratedValue(strategy="IDENTITY")
*/
private $idtext;
/**
* @var string
*
* @ORM\Column(name="titol_ca", type="string", length=255, nullable=false)
*/
private $titolCa;
/**
* @var string
*
* @ORM\Column(name="identificador", type="string", length=255, nullable=false)
*/
private $identificador;
/**
* @var int|null
*
* @ORM\Column(name="idSeccioTextFK", type="integer", nullable=true)
*/
private $idsecciotextfk = '0';
/**
* @var string|null
*
* @ORM\Column(name="valor_ca", type="text", length=16777215, nullable=true, options={"default"="NULL"})
*/
private $valorCa = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="valor_es", type="text", length=16777215, nullable=true, options={"default"="NULL"})
*/
private $valorEs = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="valor_en", type="text", length=16777215, nullable=true, options={"default"="NULL"})
*/
private $valorEn = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="valor_ru", type="text", length=16777215, nullable=true, options={"default"="NULL"})
*/
private $valorRu = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="valor_de", type="text", length=16777215, nullable=true, options={"default"="NULL"})
*/
private $valorDe = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="valor_fr", type="text", length=16777215, nullable=true, options={"default"="NULL"})
*/
private $valorFr = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="valor_ch", type="text", length=16777215, nullable=true, options={"default"="NULL"})
*/
private $valorCh = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="valor_ar", type="text", length=16777215, nullable=true, options={"default"="NULL"})
*/
private $valorAr = 'NULL';
/**
* @var bool|null
*
* @ORM\Column(name="html", type="boolean", nullable=true)
*/
private $html = '0';
public function getIdtext(): ?int
{
return $this->idtext;
}
public function getTitolCa(): ?string
{
return $this->titolCa;
}
public function setTitolCa(string $titolCa): self
{
$this->titolCa = $titolCa;
return $this;
}
public function getIdentificador(): ?string
{
return $this->identificador;
}
public function setIdentificador(string $identificador): self
{
$this->identificador = $identificador;
return $this;
}
public function getIdsecciotextfk(): ?int
{
return $this->idsecciotextfk;
}
public function setIdsecciotextfk(?int $idsecciotextfk): self
{
$this->idsecciotextfk = $idsecciotextfk;
return $this;
}
public function getValorCa(): ?string
{
return $this->valorCa;
}
public function setValorCa(?string $valorCa): self
{
$this->valorCa = $valorCa;
return $this;
}
public function getValorEs(): ?string
{
return $this->valorEs;
}
public function setValorEs(?string $valorEs): self
{
$this->valorEs = $valorEs;
return $this;
}
public function getValorEn(): ?string
{
return $this->valorEn;
}
public function setValorEn(?string $valorEn): self
{
$this->valorEn = $valorEn;
return $this;
}
public function getValorRu(): ?string
{
return $this->valorRu;
}
public function setValorRu(?string $valorRu): self
{
$this->valorRu = $valorRu;
return $this;
}
public function getValorDe(): ?string
{
return $this->valorDe;
}
public function setValorDe(?string $valorDe): self
{
$this->valorDe = $valorDe;
return $this;
}
public function getValorFr(): ?string
{
return $this->valorFr;
}
public function setValorFr(?string $valorFr): self
{
$this->valorFr = $valorFr;
return $this;
}
public function getValorCh(): ?string
{
return $this->valorCh;
}
public function setValorCh(?string $valorCh): self
{
$this->valorCh = $valorCh;
return $this;
}
public function getValorAr(): ?string
{
return $this->valorAr;
}
public function setValorAr(?string $valorAr): self
{
$this->valorAr = $valorAr;
return $this;
}
public function isHtml(): ?bool
{
return $this->html;
}
public function setHtml(?bool $html): self
{
$this->html = $html;
return $this;
}
}