src/Entity/Actualites.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ActualitesRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. /**
  8.  * @ORM\Entity(repositoryClass=ActualitesRepository::class)
  9.  */
  10. class Actualites
  11. {
  12.     /**
  13.      * @ORM\Id
  14.      * @ORM\GeneratedValue
  15.      * @ORM\Column(type="integer")
  16.      */
  17.     private $id;
  18.     /**
  19.      * @ORM\Column(type="string", length=255, nullable=true)
  20.      */
  21.     private $TitreFr;
  22.     /**
  23.      * @ORM\Column(type="string", length=255, nullable=true)
  24.      */
  25.     private $TitreEn;
  26.     /**
  27.      * @ORM\Column(type="text", nullable=true)
  28.      */
  29.     private $TexteFr;
  30.     /**
  31.      * @ORM\Column(type="text", nullable=true)
  32.      */
  33.     private $TexteEn;
  34.     /**
  35.      * @ORM\Column(type="string", length=255, nullable=true)
  36.      */
  37.     private $Image;
  38.     /**
  39.      * @ORM\Column(type="date", nullable=true)
  40.      */
  41.     private $Date;
  42.     /**
  43.      * @ORM\Column(type="integer", nullable=true)
  44.      */
  45.     private $NbVues;
  46.     /**
  47.      * @ORM\OneToMany(targetEntity=Sections::class, mappedBy="Actualites")
  48.      */
  49.     private $sections;
  50.     /**
  51.      * @ORM\Column(type="string", length=255, nullable=true)
  52.      */
  53.     private $ResumeFr;
  54.     /**
  55.      * @ORM\Column(type="string", length=255, nullable=true)
  56.      */
  57.     private $ResumeEn;
  58.     /**
  59.      * @ORM\ManyToOne(targetEntity=CategoriesActualites::class, inversedBy="actualites")
  60.      */
  61.     private $CategoriesActualites;
  62.     /**
  63.      * @ORM\Column(type="text", nullable=true)
  64.      */
  65.     private $IntroFr;
  66.     /**
  67.      * @ORM\Column(type="text", nullable=true)
  68.      */
  69.     private $IntroEn;
  70.     /**
  71.      * @ORM\Column(type="integer", nullable=true)
  72.      */
  73.     private $Afficher;
  74.     public function __construct()
  75.     {
  76.         $this->sections = new ArrayCollection();
  77.        
  78.     }
  79.     public function getId(): ?int
  80.     {
  81.         return $this->id;
  82.     }
  83.     public function getTitreFr(): ?string
  84.     {
  85.         return $this->TitreFr;
  86.     }
  87.     public function setTitreFr(?string $TitreFr): self
  88.     {
  89.         $this->TitreFr $TitreFr;
  90.         return $this;
  91.     }
  92.     public function getTitreEn(): ?string
  93.     {
  94.         return $this->TitreEn;
  95.     }
  96.     public function setTitreEn(?string $TitreEn): self
  97.     {
  98.         $this->TitreEn $TitreEn;
  99.         return $this;
  100.     }
  101.     public function getTexteFr(): ?string
  102.     {
  103.         return $this->TexteFr;
  104.     }
  105.     public function setTexteFr(?string $TexteFr): self
  106.     {
  107.         $this->TexteFr $TexteFr;
  108.         return $this;
  109.     }
  110.     public function getTexteEn(): ?string
  111.     {
  112.         return $this->TexteEn;
  113.     }
  114.     public function setTexteEn(?string $TexteEn): self
  115.     {
  116.         $this->TexteEn $TexteEn;
  117.         return $this;
  118.     }
  119.     public function getImage(): ?string
  120.     {
  121.         return $this->Image;
  122.     }
  123.     public function setImage(?string $Image): self
  124.     {
  125.         $this->Image $Image;
  126.         return $this;
  127.     }
  128.     public function getDate(): ?\DateTimeInterface
  129.     {
  130.         return $this->Date;
  131.     }
  132.     public function setDate(?\DateTimeInterface $Date): self
  133.     {
  134.         $this->Date $Date;
  135.         return $this;
  136.     }
  137.     public function getNbVues(): ?int
  138.     {
  139.         return $this->NbVues;
  140.     }
  141.     public function setNbVues(?int $NbVues): self
  142.     {
  143.         $this->NbVues $NbVues;
  144.         return $this;
  145.     }
  146.     /**
  147.      * @return Collection<int, Sections>
  148.      */
  149.     public function getSections(): Collection
  150.     {
  151.         return $this->sections;
  152.     }
  153.     public function addSection(Sections $section): self
  154.     {
  155.         if (!$this->sections->contains($section)) {
  156.             $this->sections[] = $section;
  157.             $section->setActualites($this);
  158.         }
  159.         return $this;
  160.     }
  161.     public function removeSection(Sections $section): self
  162.     {
  163.         if ($this->sections->removeElement($section)) {
  164.             // set the owning side to null (unless already changed)
  165.             if ($section->getActualites() === $this) {
  166.                 $section->setActualites(null);
  167.             }
  168.         }
  169.         return $this;
  170.     }
  171.     public function getResumeFr(): ?string
  172.     {
  173.         return $this->ResumeFr;
  174.     }
  175.     public function setResumeFr(?string $ResumeFr): self
  176.     {
  177.         $this->ResumeFr $ResumeFr;
  178.         return $this;
  179.     }
  180.     public function getResumeEn(): ?string
  181.     {
  182.         return $this->ResumeEn;
  183.     }
  184.     public function setResumeEn(?string $ResumeEn): self
  185.     {
  186.         $this->ResumeEn $ResumeEn;
  187.         return $this;
  188.     }
  189.     public function getCategoriesActualites(): ?CategoriesActualites
  190.     {
  191.         return $this->CategoriesActualites;
  192.     }
  193.     public function setCategoriesActualites(?CategoriesActualites $CategoriesActualites): self
  194.     {
  195.         $this->CategoriesActualites $CategoriesActualites;
  196.         return $this;
  197.     }
  198.     public function getIntroFr(): ?string
  199.     {
  200.         return $this->IntroFr;
  201.     }
  202.     public function setIntroFr(?string $IntroFr): self
  203.     {
  204.         $this->IntroFr $IntroFr;
  205.         return $this;
  206.     }
  207.     public function getIntroEn(): ?string
  208.     {
  209.         return $this->IntroEn;
  210.     }
  211.     public function setIntroEn(?string $IntroEn): self
  212.     {
  213.         $this->IntroEn $IntroEn;
  214.         return $this;
  215.     }
  216.     public function getAfficher(): ?int
  217.     {
  218.         return $this->Afficher;
  219.     }
  220.     public function setAfficher(?int $Afficher): self
  221.     {
  222.         $this->Afficher $Afficher;
  223.         return $this;
  224.     }
  225. }