src/Entity/Menu.php line 27

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Entity;
  4. use App\Annotation\DatabaseSubscriberClient;
  5. use App\Entity\Traits\EntitySoftDeletableTrait;
  6. use App\Entity\Traits\EntityTimestampableTrait;
  7. use Doctrine\Common\Collections\ArrayCollection;
  8. use Doctrine\Common\Collections\Collection;
  9. use Doctrine\ORM\Mapping as ORM;
  10. use Gedmo\Mapping\Annotation as Gedmo;
  11. use Gedmo\Mapping\Annotation\SoftDeleteable;
  12. use JMS\Serializer\Annotation\ExclusionPolicy;
  13. use JMS\Serializer\Annotation\Expose;
  14. use JMS\Serializer\Annotation\Groups;
  15. /**
  16.  * @Gedmo\Tree(type="nested")
  17.  * @ORM\Table(name="menu")
  18.  * @ORM\Entity(repositoryClass="App\Repository\MenuRepository")
  19.  * @SoftDeleteable(fieldName="deletedAt", timeAware=false, hardDelete=false)
  20.  * @ExclusionPolicy("all")
  21.  * @DatabaseSubscriberClient()
  22.  */
  23. class Menu extends BaseDomain
  24. {
  25.     use EntityTimestampableTrait;
  26.     use EntitySoftDeletableTrait;
  27.     public const MENU_TOP 0;
  28.     public const MENU_FOOTER 1;
  29.     public static $arrayType = [
  30.         self::MENU_TOP => 'Menu top',
  31.         self::MENU_FOOTER => 'Menu footer'
  32.     ];
  33.     /**
  34.      * @ORM\Id()
  35.      * @ORM\GeneratedValue()
  36.      * @ORM\Column(type="integer")
  37.      */
  38.     private $id;
  39.     /**
  40.      * @ORM\Column(type="string", length=255, nullable=false)
  41.      * @Expose()
  42.      * @Groups({"Menu"})
  43.      */
  44.     private $title;
  45.     /**
  46.      * @ORM\Column(type="string", length=255, nullable=true)
  47.      * @Expose()
  48.      * @Groups({"Menu"})
  49.      */
  50.     private $url;
  51.     /**
  52.      * @ORM\Column(type="string", length=255, nullable=true)
  53.      * @Expose()
  54.      * @Groups({"Menu"})
  55.      */
  56.     private $urlExternal;
  57.     /**
  58.      * @ORM\Column(type="boolean", nullable=true)
  59.      * @Expose()
  60.      * @Groups({"Menu"})
  61.      */
  62.     private $hidden;
  63.     /**
  64.      * @ORM\Column(type="boolean", nullable=true)
  65.      * @Expose()
  66.      * @Groups({"Menu"})
  67.      */
  68.     private $targetBlank;
  69.     /**
  70.      * @ORM\Column(type="integer", nullable=true)
  71.      * @Expose()
  72.      * @Groups({"Menu"})
  73.      */
  74.     private $position;
  75.     /**
  76.      * @ORM\Column(type="integer", nullable=false)
  77.      * @Expose()
  78.      * @Groups({"Menu"})
  79.      */
  80.     private $type;
  81.     /**
  82.      * @ORM\ManyToOne(targetEntity=Page::class, inversedBy="menus")
  83.      */
  84.     private $page;
  85.     /**
  86.      * @Gedmo\TreeLeft
  87.      * @ORM\Column(name="lft", type="integer")
  88.      */
  89.     private $lft;
  90.     /**
  91.      * @Gedmo\TreeLevel
  92.      * @ORM\Column(name="lvl", type="integer")
  93.      */
  94.     private $lvl;
  95.     /**
  96.      * @Gedmo\TreeRight
  97.      * @ORM\Column(name="rgt", type="integer")
  98.      */
  99.     private $rgt;
  100.     /**
  101.      * @Gedmo\TreeRoot
  102.      * @ORM\Column(name="root", type="integer", nullable=true)
  103.      */
  104.     private $root;
  105.     /**
  106.      * @Gedmo\TreeParent
  107.      * @ORM\ManyToOne(targetEntity="Menu", inversedBy="children")
  108.      * @ORM\JoinColumn(name="parent_id", referencedColumnName="id", onDelete="CASCADE")
  109.      */
  110.     private $parent;
  111.     /**
  112.      * @ORM\OneToMany(targetEntity="Menu", mappedBy="parent")
  113.      * @ORM\OrderBy({"position" = "ASC"})
  114.      */
  115.     private $children;
  116.     /**
  117.      * @ORM\Column(name="column_value", type="integer", nullable=true)
  118.      */
  119.     private $columnValue;
  120.     /**
  121.      * @ORM\ManyToOne(targetEntity="SonataMediaMedia")
  122.      */
  123.     private $icon;
  124.     public function __construct()
  125.     {
  126.         $this->children = new ArrayCollection();
  127.         $this->position 1;
  128.         $this->type self::MENU_TOP;
  129.         $this->hidden 0;
  130.     }
  131.     public function __toString()
  132.     {
  133.         if ($this->getTitle()) {
  134.             if ($this->getParent()) {
  135.                 return $this->title "(rodzic: " $this->getParent()->getTitle() . ")";
  136.             } else {
  137.                 return $this->title;
  138.             }
  139.         }
  140.         return '';
  141.     }
  142.     /**
  143.      * @return mixed
  144.      */
  145.     public function getTitle()
  146.     {
  147.         return $this->title;
  148.     }
  149.     /**
  150.      * @param mixed $title
  151.      */
  152.     public function setTitle($title)
  153.     {
  154.         $this->title $title;
  155.     }
  156.     /**
  157.      * @return mixed
  158.      */
  159.     public function getParent()
  160.     {
  161.         return $this->parent;
  162.     }
  163.     /**
  164.      * @param mixed $parent
  165.      */
  166.     public function setParent($parent): void
  167.     {
  168.         $this->parent $parent;
  169.     }
  170.     public function getTagetBlankStatus()
  171.     {
  172.         if ($this->getTargetBlank()) {
  173.             return $this->getTargetBlank();
  174.         }
  175.         return null;
  176.     }
  177.     /**
  178.      * @return mixed
  179.      */
  180.     public function getTargetBlank()
  181.     {
  182.         return $this->targetBlank;
  183.     }
  184.     /**
  185.      * @param mixed $targetBlank
  186.      */
  187.     public function setTargetBlank($targetBlank)
  188.     {
  189.         $this->targetBlank $targetBlank;
  190.     }
  191.     public function getUrlString()
  192.     {
  193.         if ($this->getUrlExternal()) {
  194.             return $this->getUrlExternal();
  195.         }
  196.         if ($this->getUrl()) {
  197.             if ($this->getDomainLang()->getSlug() == 'pl') {
  198.                 return '/' $this->getDomainLang()->getSlug() . $this->getUrl();
  199.             } else {
  200.                 return '/' $this->getDomainLang()->getSlug() . $this->getUrl();
  201.             }
  202.         }
  203.         return '';
  204.     }
  205.     /**
  206.      * @return mixed
  207.      */
  208.     public function getUrlExternal()
  209.     {
  210.         return $this->urlExternal;
  211.     }
  212.     /**
  213.      * @param mixed $urlExternal
  214.      */
  215.     public function setUrlExternal($urlExternal)
  216.     {
  217.         $this->urlExternal $urlExternal;
  218.     }
  219.     /**
  220.      * @return mixed
  221.      */
  222.     public function getUrl()
  223.     {
  224.         return $this->url;
  225.     }
  226.     /**
  227.      * @param mixed $url
  228.      */
  229.     public function setUrl($url)
  230.     {
  231.         $this->url $url;
  232.     }
  233.     /**
  234.      * @return mixed
  235.      */
  236.     public function getId()
  237.     {
  238.         return $this->id;
  239.     }
  240.     /**
  241.      * @return mixed
  242.      */
  243.     public function getPosition()
  244.     {
  245.         return $this->position;
  246.     }
  247.     /**
  248.      * @param mixed $position
  249.      */
  250.     public function setPosition($position)
  251.     {
  252.         $this->position $position;
  253.     }
  254.     /**
  255.      * @return mixed
  256.      */
  257.     public function getType()
  258.     {
  259.         return $this->type;
  260.     }
  261.     /**
  262.      * @param mixed $type
  263.      */
  264.     public function setType($type)
  265.     {
  266.         $this->type $type;
  267.     }
  268.     public function getPage()
  269.     {
  270.         return $this->page;
  271.     }
  272.     public function setPage($page)
  273.     {
  274.         $this->page $page;
  275.         return $this;
  276.     }
  277.     /**
  278.      * @return mixed
  279.      */
  280.     public function getLft()
  281.     {
  282.         return $this->lft;
  283.     }
  284.     /**
  285.      * @param mixed $lft
  286.      */
  287.     public function setLft($lft): void
  288.     {
  289.         $this->lft $lft;
  290.     }
  291.     /**
  292.      * @return mixed
  293.      */
  294.     public function getLvl()
  295.     {
  296.         return $this->lvl;
  297.     }
  298.     /**
  299.      * @param mixed $lvl
  300.      */
  301.     public function setLvl($lvl): void
  302.     {
  303.         $this->lvl $lvl;
  304.     }
  305.     /**
  306.      * @return mixed
  307.      */
  308.     public function getRgt()
  309.     {
  310.         return $this->rgt;
  311.     }
  312.     /**
  313.      * @param mixed $rgt
  314.      */
  315.     public function setRgt($rgt): void
  316.     {
  317.         $this->rgt $rgt;
  318.     }
  319.     /**
  320.      * @return mixed
  321.      */
  322.     public function getRoot()
  323.     {
  324.         return $this->root;
  325.     }
  326.     /**
  327.      * @param mixed $root
  328.      */
  329.     public function setRoot($root): void
  330.     {
  331.         $this->root $root;
  332.     }
  333.     /**
  334.      * Add menu
  335.      *
  336.      *
  337.      * @return Menu
  338.      */
  339.     public function addChild(self $menu)
  340.     {
  341.         $this->menu[] = $menu;
  342.         return $this;
  343.     }
  344.     /**
  345.      * Remove menu
  346.      *
  347.      */
  348.     public function removeChild(self $menu)
  349.     {
  350.         $this->children->removeElement($menu);
  351.     }
  352.     /**
  353.      * Get category
  354.      *
  355.      * @return Collection
  356.      */
  357.     public function getChildren()
  358.     {
  359.         return $this->children;
  360.     }
  361.     /**
  362.      * @return mixed
  363.      */
  364.     public function getHidden()
  365.     {
  366.         return $this->hidden;
  367.     }
  368.     /**
  369.      * @param mixed $hidden
  370.      */
  371.     public function setHidden($hidden)
  372.     {
  373.         $this->hidden $hidden;
  374.     }
  375.     public function getAllParentsIds($menu null$parentsIds = [])
  376.     {
  377.         if (!$menu) {
  378.             $menu $this;
  379.         }
  380.         if (empty($parentsIds)) {
  381.             $parentsIds[] = $menu->id;
  382.         }
  383.         if (null !== $this->getParent()) {
  384.             $parent $this->getParent();
  385.             $parentsIds[] = $parent->getId();
  386.             return $parent->getAllParentsIds($menu$parentsIds);
  387.         }
  388.         return $parentsIds;
  389.     }
  390.     public function getFirstElementMenu($menu null)
  391.     {
  392.         if (!$menu) {
  393.             return null;
  394.         }
  395.         if (null !== $menu->getParent()) {
  396.             $parent $menu->getParent();
  397.             if ($parent) {
  398.                 return $parent->getFirstElementMenu($parent);
  399.             } else {
  400.                 return $parent;
  401.             }
  402.         } else {
  403.             return $menu;
  404.         }
  405.     }
  406.     /**
  407.      * @return mixed
  408.      */
  409.     public function getColumnValue()
  410.     {
  411.         return $this->columnValue;
  412.     }
  413.     /**
  414.      * @param mixed $columnValue
  415.      */
  416.     public function setColumnValue($columnValue): void
  417.     {
  418.         $this->columnValue $columnValue;
  419.     }
  420.     /**
  421.      * @return mixed
  422.      */
  423.     public function getIcon()
  424.     {
  425.         return $this->icon;
  426.     }
  427.     /**
  428.      * @param mixed $icon
  429.      */
  430.     public function setIcon($icon)
  431.     {
  432.         $this->icon $icon;
  433.     }
  434. }