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

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