src/Flexy/FrontBundle/Entity/Menu.php line 16

  1. <?php
  2. namespace App\Flexy\FrontBundle\Entity;
  3. use ApiPlatform\Core\Annotation\ApiResource;
  4. use App\Flexy\FrontBundle\Repository\MenuRepository;
  5. use Doctrine\Common\Collections\ArrayCollection;
  6. use Doctrine\Common\Collections\Collection;
  7. use Doctrine\ORM\Mapping as ORM;
  8. use Gedmo\Mapping\Annotation as Gedmo;
  9. use Doctrine\Common\Collections\Criteria;
  10. #[ApiResource]
  11. #[ORM\Entity(repositoryClassMenuRepository::class)]
  12. class Menu
  13. {
  14.     #[ORM\Id]
  15.     #[ORM\GeneratedValue]
  16.     #[ORM\Column(type'integer')]
  17.     private $id;
  18.     #[ORM\Column(type'string'length255)]
  19.     private ?string $name null;
  20.      #[ORM\Column(type'string'length255nullabletrue)]
  21.     private $cssClasses;
  22.     #[ORM\Column(type'datetime'nullabletrue)]
  23.     private ?\DateTimeInterface $createdAt null;
  24.     #[ORM\Column(type'boolean'nullabletrue)]
  25.     private ?bool $isMainMenu null;
  26.     #[ORM\OneToMany(targetEntityMenuItem::class, mappedBy'menu'orphanRemovaltruecascade: ['persist'])]
  27.     private \Doctrine\Common\Collections\Collection|array $menuItems;
  28.     
  29.     
  30.     public function __construct()
  31.     {
  32.         $this->menuItems = new ArrayCollection();
  33.     }
  34.     public function getId(): ?int
  35.     {
  36.         return $this->id;
  37.     }
  38.     public function getName(): ?string
  39.     {
  40.         return $this->name;
  41.     }
  42.     public function setName(string $name): self
  43.     {
  44.         $this->name $name;
  45.         return $this;
  46.     }
  47.     public function getCreatedAt(): ?\DateTimeInterface
  48.     {
  49.         return $this->createdAt;
  50.     }
  51.     public function setCreatedAt(?\DateTimeInterface $createdAt): self
  52.     {
  53.         $this->createdAt $createdAt;
  54.         return $this;
  55.     }
  56.     public function getIsMainMenu(): ?bool
  57.     {
  58.         return $this->isMainMenu;
  59.     }
  60.     public function setIsMainMenu(?bool $isMainMenu): self
  61.     {
  62.         $this->isMainMenu $isMainMenu;
  63.         return $this;
  64.     }
  65.     /**
  66.      * @return Collection<int, MenuItem>
  67.      */
  68.     public function getMenuItems(): Collection
  69.     {
  70.         $criteria Criteria::create()
  71.         ->where(Criteria::expr()->eq('parentMenuItem'null))
  72.         ->orderBy(["position"=>"ASC"]);
  73.         return $this->menuItems->matching($criteria);
  74.     }
  75.     public function addMenuItem(MenuItem $menuItem): self
  76.     {
  77.         if (!$this->menuItems->contains($menuItem)) {
  78.             $this->menuItems[] = $menuItem;
  79.             $menuItem->setMenu($this);
  80.         }
  81.         return $this;
  82.     }
  83.     public function removeMenuItem(MenuItem $menuItem): self
  84.     {
  85.         if ($this->menuItems->removeElement($menuItem)) {
  86.             // set the owning side to null (unless already changed)
  87.             if ($menuItem->getMenu() === $this) {
  88.                 $menuItem->setMenu(null);
  89.             }
  90.         }
  91.         return $this;
  92.     }
  93.     
  94.     /**
  95.      * Get the value of cssClasses
  96.      */ 
  97.     public function getCssClasses()
  98.     {
  99.         return $this->cssClasses;
  100.     }
  101.     /**
  102.      * Set the value of cssClasses
  103.      *
  104.      * @return  self
  105.      */ 
  106.     public function setCssClasses($cssClasses)
  107.     {
  108.         $this->cssClasses $cssClasses;
  109.         return $this;
  110.     }
  111. }