src/Entity/Blog.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * @ORM\Entity(repositoryClass="App\Repository\BlogRepository")
  6.  */
  7. class Blog
  8. {
  9.     /**
  10.      * @ORM\Id()
  11.      * @ORM\GeneratedValue()
  12.      * @ORM\Column(type="integer")
  13.      */
  14.     private $id;
  15.     /**
  16.      * @ORM\Column(type="string", length=255)
  17.      */
  18.     private $Langue;
  19.     /**
  20.      * @ORM\Column(type="string", length=255)
  21.      */
  22.     private $Url;
  23.     /**
  24.      * @ORM\Column(type="text", nullable=true)
  25.      */
  26.     private $Html;
  27.     /**
  28.      * @ORM\Column(type="text", nullable=true)
  29.      */
  30.     private $Css;
  31.     /**
  32.      * @ORM\Column(type="text", nullable=true)
  33.      */
  34.     private $Style;
  35.     /**
  36.      * @ORM\Column(type="text", nullable=true)
  37.      */
  38.     private $Assets;
  39.     /**
  40.      * @ORM\Column(type="text", nullable=true)
  41.      */
  42.     private $Components;
  43.     /**
  44.      * @ORM\Column(type="text", nullable=true)
  45.      */
  46.     private $Meta1;
  47.     /**
  48.      * @ORM\Column(type="text", nullable=true)
  49.      */
  50.     private $Meta2;
  51.     /**
  52.      * @ORM\Column(type="text", nullable=true)
  53.      */
  54.     private $Meta3;
  55.     /**
  56.      * @ORM\Column(type="text", nullable=true)
  57.      */
  58.     private $Meta4;
  59.     /**
  60.      * @ORM\Column(type="string", length=255)
  61.      */
  62.     private $Auteur;
  63.     /**
  64.      * @ORM\Column(type="string", length=255, nullable=true)
  65.      */
  66.     private $Miniature;
  67.     /**
  68.      * @ORM\Column(type="boolean")
  69.      */
  70.     private $Publie;
  71.     /**
  72.      * @ORM\Column(type="text", nullable=true)
  73.      */
  74.     private $Tags;
  75.     /**
  76.      * @ORM\Column(type="datetime", nullable=true)
  77.      */
  78.     private $Datepublication;
  79.     /**
  80.      * @ORM\Column(type="string", length=255, nullable=true)
  81.      */
  82.     private $Traduction;
  83.     /**
  84.      * @ORM\Column(type="string", length=255)
  85.      */
  86.     private $Titre;
  87.     /**
  88.      * @ORM\Column(type="string", length=255, nullable=true)
  89.      */
  90.     private $Version;
  91.     public function getId(): ?int
  92.     {
  93.         return $this->id;
  94.     }
  95.     public function getLangue(): ?string
  96.     {
  97.         return $this->Langue;
  98.     }
  99.     public function setLangue(string $Langue): self
  100.     {
  101.         $this->Langue $Langue;
  102.         return $this;
  103.     }
  104.     public function getUrl(): ?string
  105.     {
  106.         return $this->Url;
  107.     }
  108.     public function setUrl(string $Url): self
  109.     {
  110.         $this->Url $Url;
  111.         return $this;
  112.     }
  113.     public function getHtml(): ?string
  114.     {
  115.         return $this->Html;
  116.     }
  117.     public function setHtml(?string $Html): self
  118.     {
  119.         $this->Html $Html;
  120.         return $this;
  121.     }
  122.     public function getCss(): ?string
  123.     {
  124.         return $this->Css;
  125.     }
  126.     public function setCss(?string $Css): self
  127.     {
  128.         $this->Css $Css;
  129.         return $this;
  130.     }
  131.     public function getStyle(): ?string
  132.     {
  133.         return $this->Style;
  134.     }
  135.     public function setStyle(?string $Style): self
  136.     {
  137.         $this->Style $Style;
  138.         return $this;
  139.     }
  140.     public function getAssets(): ?string
  141.     {
  142.         return $this->Assets;
  143.     }
  144.     public function setAssets(?string $Assets): self
  145.     {
  146.         $this->Assets $Assets;
  147.         return $this;
  148.     }
  149.     public function getComponents(): ?string
  150.     {
  151.         return $this->Components;
  152.     }
  153.     public function setComponents(?string $Components): self
  154.     {
  155.         $this->Components $Components;
  156.         return $this;
  157.     }
  158.     public function getMeta1(): ?string
  159.     {
  160.         return $this->Meta1;
  161.     }
  162.     public function setMeta1(?string $Meta1): self
  163.     {
  164.         $this->Meta1 $Meta1;
  165.         return $this;
  166.     }
  167.     public function getMeta2(): ?string
  168.     {
  169.         return $this->Meta2;
  170.     }
  171.     public function setMeta2(?string $Meta2): self
  172.     {
  173.         $this->Meta2 $Meta2;
  174.         return $this;
  175.     }
  176.     public function getMeta3(): ?string
  177.     {
  178.         return $this->Meta3;
  179.     }
  180.     public function setMeta3(?string $Meta3): self
  181.     {
  182.         $this->Meta3 $Meta3;
  183.         return $this;
  184.     }
  185.     public function getMeta4(): ?string
  186.     {
  187.         return $this->Meta4;
  188.     }
  189.     public function setMeta4(?string $Meta4): self
  190.     {
  191.         $this->Meta4 $Meta4;
  192.         return $this;
  193.     }
  194.     public function getAuteur(): ?string
  195.     {
  196.         return $this->Auteur;
  197.     }
  198.     public function setAuteur(string $Auteur): self
  199.     {
  200.         $this->Auteur $Auteur;
  201.         return $this;
  202.     }
  203.     public function getMiniature(): ?string
  204.     {
  205.         return $this->Miniature;
  206.     }
  207.     public function setMiniature(?string $Miniature): self
  208.     {
  209.         $this->Miniature $Miniature;
  210.         return $this;
  211.     }
  212.     public function getPublie(): ?bool
  213.     {
  214.         return $this->Publie;
  215.     }
  216.     public function setPublie(bool $Publie): self
  217.     {
  218.         $this->Publie $Publie;
  219.         return $this;
  220.     }
  221.     public function getTags(): ?string
  222.     {
  223.         return $this->Tags;
  224.     }
  225.     public function setTags(?string $Tags): self
  226.     {
  227.         $this->Tags $Tags;
  228.         return $this;
  229.     }
  230.     public function getDatepublication(): ?\DateTimeInterface
  231.     {
  232.         return $this->Datepublication;
  233.     }
  234.     public function setDatepublication(?\DateTimeInterface $Datepublication): self
  235.     {
  236.         $this->Datepublication $Datepublication;
  237.         return $this;
  238.     }
  239.     public function getTraduction(): ?string
  240.     {
  241.         return $this->Traduction;
  242.     }
  243.     public function setTraduction(?string $Traduction): self
  244.     {
  245.         $this->Traduction $Traduction;
  246.         return $this;
  247.     }
  248.     public function getTitre(): ?string
  249.     {
  250.         return $this->Titre;
  251.     }
  252.     public function setTitre(string $Titre): self
  253.     {
  254.         $this->Titre $Titre;
  255.         return $this;
  256.     }
  257.     public function getVersion(): ?string
  258.     {
  259.         return $this->Version;
  260.     }
  261.     public function setVersion(?string $Version): self
  262.     {
  263.         $this->Version $Version;
  264.         return $this;
  265.     }
  266. }