src/Entity/PageIcon.php line 22

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Entity;
  4. use App\Entity\Traits\EntitySoftDeletableTrait;
  5. use App\Entity\Traits\EntityTimestampableTrait;
  6. use Doctrine\Common\Collections\Collection;
  7. use Doctrine\ORM\Mapping as ORM;
  8. use Gedmo\Mapping\Annotation\SoftDeleteable;
  9. use JMS\Serializer\Annotation\ExclusionPolicy;
  10. use JMS\Serializer\Annotation\Expose;
  11. use JMS\Serializer\Annotation\Groups;
  12. /**
  13.  * @ORM\Table(name="page_icons")
  14.  * @ORM\Entity(repositoryClass="App\Repository\PageIconRepository")
  15.  * @SoftDeleteable(fieldName="deletedAt", timeAware=false, hardDelete=false)
  16.  * @ExclusionPolicy("all")
  17.  */
  18. class PageIcon extends BaseDomain
  19. {
  20.     use EntityTimestampableTrait;
  21.     use EntitySoftDeletableTrait;
  22.     /**
  23.      * @ORM\Id()
  24.      * @ORM\GeneratedValue()
  25.      * @ORM\Column(type="integer")
  26.      */
  27.     private $id;
  28.     /**
  29.      * @ORM\Column(type="string", length=255, nullable=true)
  30.      * @Expose()
  31.      * @Groups({"Page"})
  32.      */
  33.     private $title;
  34.     /**
  35.      * @ORM\ManyToOne(targetEntity="SonataMediaMedia")
  36.      */
  37.     private $media;
  38.     /**
  39.      * @ORM\ManyToOne(targetEntity="Page",  inversedBy="icons")
  40.      */
  41.     private $page;
  42.     /**
  43.      * @ORM\Column(type="string", length=255, nullable=true)
  44.      * @Expose()
  45.      * @Groups({"Page"})
  46.      */
  47.     private $link;
  48.     /**
  49.      * @ORM\Column(type="integer", nullable=true)
  50.      */
  51.     private $position;
  52.     public function __construct()
  53.     {
  54.         $this->position 1;
  55.     }
  56.     public function __toString()
  57.     {
  58.         return $this->title;
  59.     }
  60.     /**
  61.      * @return mixed
  62.      */
  63.     public function getId()
  64.     {
  65.         return $this->id;
  66.     }
  67.     /**
  68.      * @return mixed
  69.      */
  70.     public function getTitle()
  71.     {
  72.         return $this->title;
  73.     }
  74.     /**
  75.      * @param mixed $title
  76.      */
  77.     public function setTitle($title)
  78.     {
  79.         $this->title $title;
  80.     }
  81.     /**
  82.      * @return mixed
  83.      */
  84.     public function getRoute()
  85.     {
  86.         return $this->route;
  87.     }
  88.     /**
  89.      * @param mixed $route
  90.      */
  91.     public function setRoute($route)
  92.     {
  93.         $this->route $route;
  94.     }
  95.     /**
  96.      * @return string
  97.      */
  98.     public function getSlug()
  99.     {
  100.         return $this->slug;
  101.     }
  102.     /**
  103.      * @param string $slug
  104.      */
  105.     public function setSlug($slug)
  106.     {
  107.         $this->slug $slug;
  108.     }
  109.     /**
  110.      * @return mixed
  111.      */
  112.     public function getDescription()
  113.     {
  114.         return $this->description;
  115.     }
  116.     /**
  117.      * @param mixed $description
  118.      */
  119.     public function setDescription($description)
  120.     {
  121.         $this->description $description;
  122.     }
  123.     /**
  124.      * @return mixed
  125.      */
  126.     public function getMainPage()
  127.     {
  128.         return $this->mainPage;
  129.     }
  130.     /**
  131.      * @param mixed $mainPage
  132.      */
  133.     public function setMainPage($mainPage)
  134.     {
  135.         $this->mainPage $mainPage;
  136.     }
  137.     /**
  138.      * @return Collection|Menu[]
  139.      */
  140.     public function getMenus(): Collection
  141.     {
  142.         return $this->menus;
  143.     }
  144.     public function addMenu(Menu $menu): self
  145.     {
  146.         if (!$this->menus->contains($menu)) {
  147.             $this->menus[] = $menu;
  148.             $menu->setPage($this);
  149.         }
  150.         return $this;
  151.     }
  152.     public function removeMenu(Menu $menu): self
  153.     {
  154.         if ($this->menus->removeElement($menu)) {
  155.             // set the owning side to null (unless already changed)
  156.             if ($menu->getPage() === $this) {
  157.                 $menu->setPage(null);
  158.             }
  159.         }
  160.         return $this;
  161.     }
  162.     /**
  163.      * @return mixed
  164.      */
  165.     public function getTemplate()
  166.     {
  167.         return $this->template;
  168.     }
  169.     /**
  170.      * @param mixed $template
  171.      */
  172.     public function setTemplate($template)
  173.     {
  174.         $this->template $template;
  175.     }
  176.     /**
  177.      * @return mixed
  178.      */
  179.     public function getShowListCategory()
  180.     {
  181.         return $this->showListCategory;
  182.     }
  183.     /**
  184.      * @param mixed $showListCategory
  185.      */
  186.     public function setShowListCategory($showListCategory)
  187.     {
  188.         $this->showListCategory $showListCategory;
  189.     }
  190.     /**
  191.      * @return mixed
  192.      */
  193.     public function getShortDescription()
  194.     {
  195.         return $this->shortDescription;
  196.     }
  197.     /**
  198.      * @param mixed $shortDescription
  199.      */
  200.     public function setShortDescription($shortDescription): void
  201.     {
  202.         $this->shortDescription $shortDescription;
  203.     }
  204.     /**
  205.      * @return mixed
  206.      */
  207.     public function getDescriptionSliderMainPage()
  208.     {
  209.         return $this->descriptionSliderMainPage;
  210.     }
  211.     /**
  212.      * @param mixed $descriptionSliderMainPage
  213.      */
  214.     public function setDescriptionSliderMainPage($descriptionSliderMainPage): void
  215.     {
  216.         $this->descriptionSliderMainPage $descriptionSliderMainPage;
  217.     }
  218.     /**
  219.      * @return mixed
  220.      */
  221.     public function getDescriptionSliderButtonMainPage()
  222.     {
  223.         return $this->descriptionSliderButtonMainPage;
  224.     }
  225.     /**
  226.      * @param mixed $descriptionSliderButtonMainPage
  227.      */
  228.     public function setDescriptionSliderButtonMainPage($descriptionSliderButtonMainPage): void
  229.     {
  230.         $this->descriptionSliderButtonMainPage $descriptionSliderButtonMainPage;
  231.     }
  232.     /**
  233.      * @return mixed
  234.      */
  235.     public function getTitleMarkPrenacapsMainPage()
  236.     {
  237.         return $this->titleMarkPrenacapsMainPage;
  238.     }
  239.     /**
  240.      * @param mixed $titleMarkPrenacapsMainPage
  241.      */
  242.     public function setTitleMarkPrenacapsMainPage($titleMarkPrenacapsMainPage): void
  243.     {
  244.         $this->titleMarkPrenacapsMainPage $titleMarkPrenacapsMainPage;
  245.     }
  246.     /**
  247.      * @return mixed
  248.      */
  249.     public function getDescriptionMarkPrenacapsMainPage()
  250.     {
  251.         return $this->descriptionMarkPrenacapsMainPage;
  252.     }
  253.     /**
  254.      * @param mixed $descriptionMarkPrenacapsMainPage
  255.      */
  256.     public function setDescriptionMarkPrenacapsMainPage($descriptionMarkPrenacapsMainPage): void
  257.     {
  258.         $this->descriptionMarkPrenacapsMainPage $descriptionMarkPrenacapsMainPage;
  259.     }
  260.     /**
  261.      * @return mixed
  262.      */
  263.     public function getTitleProducentFormedsMainPage()
  264.     {
  265.         return $this->titleProducentFormedsMainPage;
  266.     }
  267.     /**
  268.      * @param mixed $titleProducentFormedsMainPage
  269.      */
  270.     public function setTitleProducentFormedsMainPage($titleProducentFormedsMainPage): void
  271.     {
  272.         $this->titleProducentFormedsMainPage $titleProducentFormedsMainPage;
  273.     }
  274.     /**
  275.      * @return mixed
  276.      */
  277.     public function getDescriptionProducentFormedsMainPageFirstColumn()
  278.     {
  279.         return $this->descriptionProducentFormedsMainPageFirstColumn;
  280.     }
  281.     /**
  282.      * @param mixed $descriptionProducentFormedsMainPageFirstColumn
  283.      */
  284.     public function setDescriptionProducentFormedsMainPageFirstColumn($descriptionProducentFormedsMainPageFirstColumn): void
  285.     {
  286.         $this->descriptionProducentFormedsMainPageFirstColumn $descriptionProducentFormedsMainPageFirstColumn;
  287.     }
  288.     /**
  289.      * @return mixed
  290.      */
  291.     public function getDescriptionProducentFormedsMainPageSecondColumn()
  292.     {
  293.         return $this->descriptionProducentFormedsMainPageSecondColumn;
  294.     }
  295.     /**
  296.      * @param mixed $descriptionProducentFormedsMainPageSecondColumn
  297.      */
  298.     public function setDescriptionProducentFormedsMainPageSecondColumn($descriptionProducentFormedsMainPageSecondColumn): void
  299.     {
  300.         $this->descriptionProducentFormedsMainPageSecondColumn $descriptionProducentFormedsMainPageSecondColumn;
  301.     }
  302.     /**
  303.      * @return mixed
  304.      */
  305.     public function getMedia()
  306.     {
  307.         return $this->media;
  308.     }
  309.     /**
  310.      * @param mixed $media
  311.      */
  312.     public function setMedia($media)
  313.     {
  314.         $this->media $media;
  315.     }
  316.     /**
  317.      * @return mixed
  318.      */
  319.     public function getPage()
  320.     {
  321.         return $this->page;
  322.     }
  323.     /**
  324.      * @param mixed $page
  325.      */
  326.     public function setPage($page): void
  327.     {
  328.         $this->page $page;
  329.     }
  330.     /**
  331.      */
  332.     public function getPosition(): int
  333.     {
  334.         return $this->position;
  335.     }
  336.     /**
  337.      */
  338.     public function setPosition(int $position): void
  339.     {
  340.         $this->position $position;
  341.     }
  342.     /**
  343.      * @return mixed
  344.      */
  345.     public function getLink()
  346.     {
  347.         return $this->link;
  348.     }
  349.     /**
  350.      * @param mixed $link
  351.      */
  352.     public function setLink($link): void
  353.     {
  354.         $this->link $link;
  355.     }
  356. }