src/Entity/DomainLang.php line 15

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Entity;
  4. use App\Repository\DomainLangRepository;
  5. use Doctrine\Common\Collections\ArrayCollection;
  6. use Doctrine\Common\Collections\Collection;
  7. use Doctrine\ORM\Mapping as ORM;
  8. /**
  9.  * @ORM\Entity(repositoryClass=DomainLangRepository::class)
  10.  */
  11. class DomainLang
  12. {
  13.     /**
  14.      * @ORM\Id
  15.      * @ORM\GeneratedValue
  16.      * @ORM\Column(type="integer")
  17.      */
  18.     private $id;
  19.     /**
  20.      * @ORM\Column(type="string", length=255)
  21.      */
  22.     private $name;
  23.     /**
  24.      * @ORM\Column(type="string", length=255)
  25.      */
  26.     private $slug;
  27.     /**
  28.      * @ORM\Column(type="boolean", nullable=true)
  29.      */
  30.     private $main;
  31.     /**
  32.      * @ORM\Column(type="boolean", nullable=true)
  33.      */
  34.     private $active;
  35.     /**
  36.      * @ORM\ManyToOne(targetEntity="SonataMediaMedia")
  37.      */
  38.     private $media;
  39.     /**
  40.      * @ORM\ManyToMany(targetEntity=Domain::class, mappedBy="domainLangs")
  41.      */
  42.     private $domains;
  43.     public function __construct()
  44.     {
  45.         $this->domains = new ArrayCollection();
  46.         $this->active true;
  47.     }
  48.     public function __toString()
  49.     {
  50.         return $this->name;
  51.     }
  52.     public function getId(): ?int
  53.     {
  54.         return $this->id;
  55.     }
  56.     public function getName(): ?string
  57.     {
  58.         return $this->name;
  59.     }
  60.     public function setName(string $name): self
  61.     {
  62.         $this->name $name;
  63.         return $this;
  64.     }
  65.     public function getSlug(): ?string
  66.     {
  67.         return $this->slug;
  68.     }
  69.     public function setSlug(string $slug): self
  70.     {
  71.         $this->slug $slug;
  72.         return $this;
  73.     }
  74.     public function getMain(): ?bool
  75.     {
  76.         return $this->main;
  77.     }
  78.     public function setMain(?bool $main): self
  79.     {
  80.         $this->main $main;
  81.         return $this;
  82.     }
  83.     /**
  84.      * @return Collection|Menu[]
  85.      */
  86.     public function getMenus(): Collection
  87.     {
  88.         return $this->menus;
  89.     }
  90.     public function addMenu(Menu $menu): self
  91.     {
  92.         if (!$this->menus->contains($menu)) {
  93.             $this->menus[] = $menu;
  94.             $menu->setDomainLang($this);
  95.         }
  96.         return $this;
  97.     }
  98.     public function removeMenu(Menu $menu): self
  99.     {
  100.         if ($this->menus->removeElement($menu)) {
  101.             // set the owning side to null (unless already changed)
  102.             if ($menu->getDomainLang() === $this) {
  103.                 $menu->setDomainLang(null);
  104.             }
  105.         }
  106.         return $this;
  107.     }
  108.     /**
  109.      * @return Collection|Domain[]
  110.      */
  111.     public function getDomains(): Collection
  112.     {
  113.         return $this->domains;
  114.     }
  115.     public function addDomain(Domain $domain): self
  116.     {
  117.         if (!$this->domains->contains($domain)) {
  118.             $this->domains[] = $domain;
  119.             $domain->addDomainLang($this);
  120.         }
  121.         return $this;
  122.     }
  123.     public function removeDomain(Domain $domain): self
  124.     {
  125.         if ($this->domains->removeElement($domain)) {
  126.             $domain->removeDomainLang($this);
  127.         }
  128.         return $this;
  129.     }
  130.     /**
  131.      * @return mixed
  132.      */
  133.     public function getActive()
  134.     {
  135.         return $this->active;
  136.     }
  137.     /**
  138.      * @param mixed $active
  139.      */
  140.     public function setActive($active)
  141.     {
  142.         $this->active $active;
  143.     }
  144.     /**
  145.      * @return mixed
  146.      */
  147.     public function getMedia()
  148.     {
  149.         return $this->media;
  150.     }
  151.     /**
  152.      * @param mixed $media
  153.      */
  154.     public function setMedia($media)
  155.     {
  156.         $this->media $media;
  157.     }
  158. }