src/Entity/Livre.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\LivreRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. /**
  8.  * @ORM\Entity(repositoryClass=LivreRepository::class)
  9.  */
  10. class Livre
  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)
  20.      */
  21.     private $titre;
  22.     /**
  23.      * @ORM\Column(type="text", nullable=true)
  24.      */
  25.     private $description;
  26.     /**
  27.      * @ORM\Column(type="string", length=255, nullable=true)
  28.      */
  29.     private $auteur;
  30.     /**
  31.      * @ORM\Column(type="string", length=255, nullable=true)
  32.      */
  33.     private $photo;
  34.     /**
  35.      * @ORM\ManyToOne(targetEntity=User::class, inversedBy="livres")
  36.      */
  37.     private $user;
  38.     /**
  39.      * @ORM\OneToMany(targetEntity=Demande::class, mappedBy="livre")
  40.      */
  41.     private $demandes;
  42.     /**
  43.      * @ORM\Column(type="integer", nullable=true)
  44.      */
  45.     private $status;
  46.     /**
  47.      * @ORM\Column(type="string", length=255, nullable=true)
  48.      */
  49.     private $language;
  50.     /**
  51.      * @ORM\ManyToOne(targetEntity=Category::class, inversedBy="livres")
  52.      */
  53.     private $category;
  54.     /**
  55.      * @ORM\OneToMany(targetEntity=Favori::class, mappedBy="livre")
  56.      */
  57.     private $favoris;
  58.     public function __construct()
  59.     {
  60.         $this->demandes = new ArrayCollection();
  61.         $this->favoris = new ArrayCollection();
  62.     }
  63.     public function getId(): ?int
  64.     {
  65.         return $this->id;
  66.     }
  67.     public function getTitre(): ?string
  68.     {
  69.         return $this->titre;
  70.     }
  71.     public function setTitre(string $titre): self
  72.     {
  73.         $this->titre $titre;
  74.         return $this;
  75.     }
  76.     public function getDescription(): ?string
  77.     {
  78.         return $this->description;
  79.     }
  80.     public function setDescription(?string $description): self
  81.     {
  82.         $this->description $description;
  83.         return $this;
  84.     }
  85.     public function getAuteur(): ?string
  86.     {
  87.         return $this->auteur;
  88.     }
  89.     public function setAuteur(?string $auteur): self
  90.     {
  91.         $this->auteur $auteur;
  92.         return $this;
  93.     }
  94.     public function getPhoto(): ?string
  95.     {
  96.         return $this->photo;
  97.     }
  98.     public function setPhoto(?string $photo): self
  99.     {
  100.         $this->photo $photo;
  101.         return $this;
  102.     }
  103.     public function getUser(): ?User
  104.     {
  105.         return $this->user;
  106.     }
  107.     public function setUser(?User $user): self
  108.     {
  109.         $this->user $user;
  110.         return $this;
  111.     }
  112.     /**
  113.      * @return Collection<int, Demande>
  114.      */
  115.     public function getDemandes(): Collection
  116.     {
  117.         return $this->demandes;
  118.     }
  119.     public function addDemande(Demande $demande): self
  120.     {
  121.         if (!$this->demandes->contains($demande)) {
  122.             $this->demandes[] = $demande;
  123.             $demande->setLivre($this);
  124.         }
  125.         return $this;
  126.     }
  127.     public function removeDemande(Demande $demande): self
  128.     {
  129.         if ($this->demandes->removeElement($demande)) {
  130.             // set the owning side to null (unless already changed)
  131.             if ($demande->getLivre() === $this) {
  132.                 $demande->setLivre(null);
  133.             }
  134.         }
  135.         return $this;
  136.     }
  137.     public function getStatus(): ?int
  138.     {
  139.         return $this->status;
  140.     }
  141.     public function setStatus(?int $status): self
  142.     {
  143.         $this->status $status;
  144.         return $this;
  145.     }
  146.     public function getLanguage(): ?string
  147.     {
  148.         return $this->language;
  149.     }
  150.     public function setLanguage(?string $language): self
  151.     {
  152.         $this->language $language;
  153.         return $this;
  154.     }
  155.     public function getCategory(): ?Category
  156.     {
  157.         return $this->category;
  158.     }
  159.     public function setCategory(?Category $category): self
  160.     {
  161.         $this->category $category;
  162.         return $this;
  163.     }
  164.     /**
  165.      * @return Collection<int, Favori>
  166.      */
  167.     public function getFavoris(): Collection
  168.     {
  169.         return $this->favoris;
  170.     }
  171.     public function addFavori(Favori $favori): self
  172.     {
  173.         if (!$this->favoris->contains($favori)) {
  174.             $this->favoris[] = $favori;
  175.             $favori->setLivre($this);
  176.         }
  177.         return $this;
  178.     }
  179.     public function removeFavori(Favori $favori): self
  180.     {
  181.         if ($this->favoris->removeElement($favori)) {
  182.             // set the owning side to null (unless already changed)
  183.             if ($favori->getLivre() === $this) {
  184.                 $favori->setLivre(null);
  185.             }
  186.         }
  187.         return $this;
  188.     }
  189. }