<?php
declare(strict_types=1);
namespace App\Entity;
use App\Annotation\DatabaseSubscriberClient;
use App\Entity\Traits\EntitySoftDeletableTrait;
use App\Entity\Traits\EntityTimestampableTrait;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;
use Gedmo\Mapping\Annotation as Gedmo;
use Gedmo\Mapping\Annotation\SoftDeleteable;
use JMS\Serializer\Annotation\ExclusionPolicy;
use JMS\Serializer\Annotation\Expose;
use JMS\Serializer\Annotation\Groups;
/**
* @Gedmo\Tree(type="nested")
* @ORM\Table(name="menu")
* @ORM\Entity(repositoryClass="App\Repository\MenuRepository")
* @SoftDeleteable(fieldName="deletedAt", timeAware=false, hardDelete=false)
* @ExclusionPolicy("all")
* @DatabaseSubscriberClient()
*/
class Menu extends BaseDomain
{
use EntityTimestampableTrait;
use EntitySoftDeletableTrait;
public const MENU_TOP = 0;
public const MENU_FOOTER = 1;
public static $arrayType = [
self::MENU_TOP => 'Menu top',
self::MENU_FOOTER => 'Menu footer'
];
/**
* @ORM\Id()
* @ORM\GeneratedValue()
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="string", length=255, nullable=false)
* @Expose()
* @Groups({"Menu"})
*/
private $title;
/**
* @ORM\Column(type="string", length=255, nullable=true)
* @Expose()
* @Groups({"Menu"})
*/
private $url;
/**
* @ORM\Column(type="string", length=255, nullable=true)
* @Expose()
* @Groups({"Menu"})
*/
private $urlExternal;
/**
* @ORM\Column(type="boolean", nullable=true)
* @Expose()
* @Groups({"Menu"})
*/
private $hidden;
/**
* @ORM\Column(type="boolean", nullable=true)
* @Expose()
* @Groups({"Menu"})
*/
private $targetBlank;
/**
* @ORM\Column(type="integer", nullable=true)
* @Expose()
* @Groups({"Menu"})
*/
private $position;
/**
* @ORM\Column(type="integer", nullable=false)
* @Expose()
* @Groups({"Menu"})
*/
private $type;
/**
* @ORM\ManyToOne(targetEntity=Page::class, inversedBy="menus")
*/
private $page;
/**
* @Gedmo\TreeLeft
* @ORM\Column(name="lft", type="integer")
*/
private $lft;
/**
* @Gedmo\TreeLevel
* @ORM\Column(name="lvl", type="integer")
*/
private $lvl;
/**
* @Gedmo\TreeRight
* @ORM\Column(name="rgt", type="integer")
*/
private $rgt;
/**
* @Gedmo\TreeRoot
* @ORM\Column(name="root", type="integer", nullable=true)
*/
private $root;
/**
* @Gedmo\TreeParent
* @ORM\ManyToOne(targetEntity="Menu", inversedBy="children")
* @ORM\JoinColumn(name="parent_id", referencedColumnName="id", onDelete="CASCADE")
*/
private $parent;
/**
* @ORM\OneToMany(targetEntity="Menu", mappedBy="parent")
* @ORM\OrderBy({"position" = "ASC"})
*/
private $children;
/**
* @ORM\Column(name="column_value", type="integer", nullable=true)
*/
private $columnValue;
/**
* @ORM\ManyToOne(targetEntity="SonataMediaMedia")
*/
private $icon;
public function __construct()
{
$this->children = new ArrayCollection();
$this->position = 1;
$this->type = self::MENU_TOP;
$this->hidden = 0;
}
public function __toString()
{
if ($this->getTitle()) {
if ($this->getParent()) {
return $this->title . "(rodzic: " . $this->getParent()->getTitle() . ")";
} else {
return $this->title;
}
}
return '';
}
/**
* @return mixed
*/
public function getTitle()
{
return $this->title;
}
/**
* @param mixed $title
*/
public function setTitle($title)
{
$this->title = $title;
}
/**
* @return mixed
*/
public function getParent()
{
return $this->parent;
}
/**
* @param mixed $parent
*/
public function setParent($parent): void
{
$this->parent = $parent;
}
public function getTagetBlankStatus()
{
if ($this->getTargetBlank()) {
return $this->getTargetBlank();
}
return null;
}
/**
* @return mixed
*/
public function getTargetBlank()
{
return $this->targetBlank;
}
/**
* @param mixed $targetBlank
*/
public function setTargetBlank($targetBlank)
{
$this->targetBlank = $targetBlank;
}
public function getUrlString()
{
if ($this->getUrlExternal()) {
return $this->getUrlExternal();
}
if ($this->getUrl()) {
if ($this->getDomainLang()->getSlug() == 'pl') {
return '/' . $this->getDomainLang()->getSlug() . $this->getUrl();
} else {
return '/' . $this->getDomainLang()->getSlug() . $this->getUrl();
}
}
return '';
}
/**
* @return mixed
*/
public function getUrlExternal()
{
return $this->urlExternal;
}
/**
* @param mixed $urlExternal
*/
public function setUrlExternal($urlExternal)
{
$this->urlExternal = $urlExternal;
}
/**
* @return mixed
*/
public function getUrl()
{
return $this->url;
}
/**
* @param mixed $url
*/
public function setUrl($url)
{
$this->url = $url;
}
/**
* @return mixed
*/
public function getId()
{
return $this->id;
}
/**
* @return mixed
*/
public function getPosition()
{
return $this->position;
}
/**
* @param mixed $position
*/
public function setPosition($position)
{
$this->position = $position;
}
/**
* @return mixed
*/
public function getType()
{
return $this->type;
}
/**
* @param mixed $type
*/
public function setType($type)
{
$this->type = $type;
}
public function getPage()
{
return $this->page;
}
public function setPage($page)
{
$this->page = $page;
return $this;
}
/**
* @return mixed
*/
public function getLft()
{
return $this->lft;
}
/**
* @param mixed $lft
*/
public function setLft($lft): void
{
$this->lft = $lft;
}
/**
* @return mixed
*/
public function getLvl()
{
return $this->lvl;
}
/**
* @param mixed $lvl
*/
public function setLvl($lvl): void
{
$this->lvl = $lvl;
}
/**
* @return mixed
*/
public function getRgt()
{
return $this->rgt;
}
/**
* @param mixed $rgt
*/
public function setRgt($rgt): void
{
$this->rgt = $rgt;
}
/**
* @return mixed
*/
public function getRoot()
{
return $this->root;
}
/**
* @param mixed $root
*/
public function setRoot($root): void
{
$this->root = $root;
}
/**
* Add menu
*
*
* @return Menu
*/
public function addChild(self $menu)
{
$this->menu[] = $menu;
return $this;
}
/**
* Remove menu
*
*/
public function removeChild(self $menu)
{
$this->children->removeElement($menu);
}
/**
* Get category
*
* @return Collection
*/
public function getChildren()
{
return $this->children;
}
/**
* @return mixed
*/
public function getHidden()
{
return $this->hidden;
}
/**
* @param mixed $hidden
*/
public function setHidden($hidden)
{
$this->hidden = $hidden;
}
public function getAllParentsIds($menu = null, $parentsIds = [])
{
if (!$menu) {
$menu = $this;
}
if (empty($parentsIds)) {
$parentsIds[] = $menu->id;
}
if (null !== $this->getParent()) {
$parent = $this->getParent();
$parentsIds[] = $parent->getId();
return $parent->getAllParentsIds($menu, $parentsIds);
}
return $parentsIds;
}
public function getFirstElementMenu($menu = null)
{
if (!$menu) {
return null;
}
if (null !== $menu->getParent()) {
$parent = $menu->getParent();
if ($parent) {
return $parent->getFirstElementMenu($parent);
} else {
return $parent;
}
} else {
return $menu;
}
}
/**
* @return mixed
*/
public function getColumnValue()
{
return $this->columnValue;
}
/**
* @param mixed $columnValue
*/
public function setColumnValue($columnValue): void
{
$this->columnValue = $columnValue;
}
/**
* @return mixed
*/
public function getIcon()
{
return $this->icon;
}
/**
* @param mixed $icon
*/
public function setIcon($icon)
{
$this->icon = $icon;
}
}