src/Entity/Page.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\EntitySEOTrait;
  6. use App\Entity\Traits\EntitySoftDeletableTrait;
  7. use App\Entity\Traits\EntityTimestampableTrait;
  8. use Doctrine\Common\Collections\ArrayCollection;
  9. use Doctrine\Common\Collections\Collection;
  10. use Doctrine\ORM\Mapping as ORM;
  11. use Gedmo\Mapping\Annotation as Gedmo;
  12. use Gedmo\Mapping\Annotation\SoftDeleteable;
  13. use JMS\Serializer\Annotation\ExclusionPolicy;
  14. use JMS\Serializer\Annotation\Expose;
  15. use JMS\Serializer\Annotation\Groups;
  16. /**
  17.  * @ORM\Table(name="page")
  18.  * @ORM\Entity(repositoryClass="App\Repository\PageRepository")
  19.  * @SoftDeleteable(fieldName="deletedAt", timeAware=false, hardDelete=false)
  20.  * @ExclusionPolicy("all")
  21.  * @DatabaseSubscriberClient()
  22.  */
  23. class Page extends BaseDomain
  24. {
  25.     use EntityTimestampableTrait;
  26.     use EntitySoftDeletableTrait;
  27.     use EntitySEOTrait;
  28.     /**
  29.      * @ORM\Id()
  30.      * @ORM\GeneratedValue()
  31.      * @ORM\Column(type="integer")
  32.      */
  33.     private int $id;
  34.     /**
  35.      * @ORM\Column(type="string", length=255, nullable=true)
  36.      * @Expose()
  37.      * @Groups({"Page"})
  38.      */
  39.     private ?string $title;
  40.     /**
  41.      * @ORM\Column(type="string", length=255, nullable=true)
  42.      * @Expose()
  43.      * @Groups({"Page"})
  44.      */
  45.     private ?string $identificator;
  46.     /**
  47.      * @ORM\Column(type="integer", nullable=false)
  48.      */
  49.     private int $template;
  50.     /**
  51.      *
  52.      * @Gedmo\Slug(fields={"title"})
  53.      * @ORM\Column(length=255, unique=false)
  54.      */
  55.     private string $slug;
  56.     /**
  57.      * @var string $slug
  58.      * @ORM\Column(type="string", length=255, nullable=true)
  59.      */
  60.     private ?string $url null;
  61.     /**
  62.      * @ORM\Column(type="text", nullable=true)
  63.      * @Expose()
  64.      * @Groups({"Page"})
  65.      */
  66.     private ?string $description;
  67.     /**
  68.      * @ORM\Column(type="text", nullable=true)
  69.      * @Expose()
  70.      * @Groups({"Page"})
  71.      */
  72.     private ?string $shortDesc;
  73.     /**
  74.      * @ORM\Column(type="text", nullable=true)
  75.      * @Expose()
  76.      * @Groups({"Page"})
  77.      */
  78.     private ?string $seoDesc;
  79.     /**
  80.      * @ORM\Column(type="boolean", nullable=true)
  81.      */
  82.     private ?bool $mainPage;
  83.     /**
  84.      * @ORM\Column(type="boolean", nullable=false, options={"default":false})
  85.      */
  86.     private bool $hikeTrail false;
  87.     /**
  88.      * @ORM\Column(type="boolean", nullable=false, options={"default": true})
  89.      */
  90.     private bool $isVisible true;
  91.     /**
  92.      * @ORM\OneToMany(targetEntity=Menu::class, mappedBy="page")
  93.      */
  94.     private Collection $menus;
  95.     /**
  96.      * @Expose()
  97.      * @Groups({"Page"})
  98.      * @ORM\OneToMany(targetEntity="PageModule", mappedBy="page", cascade={"persist", "remove"}, orphanRemoval=true)
  99.      * @ORM\OrderBy({"position" = "asc"})
  100.      */
  101.     private Collection $modules;
  102.     /**
  103.      * @ORM\OneToMany(targetEntity="PageButton", mappedBy="page", cascade={"persist", "remove"}, orphanRemoval=true)
  104.      * @ORM\OrderBy({"position" = "asc"})
  105.      */
  106.     private Collection $buttons;
  107.     /**
  108.      * @ORM\OneToMany(targetEntity="PageIcon", mappedBy="page", cascade={"persist", "remove"}, orphanRemoval=true)
  109.      * @ORM\OrderBy({"position" = "asc"})
  110.      */
  111.     private Collection $icons;
  112.     /**
  113.      * @ORM\OneToMany(targetEntity="PageProgram", mappedBy="page", cascade={"persist", "remove"}, orphanRemoval=true)
  114.      * @ORM\OrderBy({"position" = "asc"})
  115.      */
  116.     private Collection $programs;
  117.     /**
  118.      * @ORM\OneToMany(targetEntity="PageSection", mappedBy="page", cascade={"persist", "remove"}, orphanRemoval=true)
  119.      * @ORM\OrderBy({"position" = "asc"})
  120.      */
  121.     private Collection $sections;
  122.     /**
  123.      * @ORM\OneToMany(targetEntity="PageAccordation", mappedBy="page", cascade={"persist", "remove"}, orphanRemoval=true)
  124.      * @ORM\OrderBy({"position" = "asc"})
  125.      */
  126.     private Collection $accordations;
  127.     /**
  128.      * @ORM\OneToMany(targetEntity="PageFaq", mappedBy="page", cascade={"persist", "remove"}, orphanRemoval=true)
  129.      * @ORM\OrderBy({"position" = "asc"})
  130.      */
  131.     private Collection $faqs;
  132.     /**
  133.      * @ORM\OneToMany(targetEntity="PageNews", mappedBy="page", cascade={"persist", "remove"}, orphanRemoval=true)
  134.      * @ORM\OrderBy({"position" = "asc"})
  135.      */
  136.     private Collection $news;
  137.     /**
  138.      * @Expose()
  139.      * @Groups({"Page"})
  140.      * @ORM\OneToMany(targetEntity="PageSlider", mappedBy="page", cascade={"persist", "remove"}, orphanRemoval=true)
  141.      * @ORM\OrderBy({"position" = "asc"})
  142.      */
  143.     private Collection $sliders;
  144.     /**
  145.      * @ORM\ManyToOne(targetEntity="SonataMediaMedia")
  146.      */
  147.     private SonataMediaMedia $movie;
  148.     /**
  149.      * @ORM\Column(type="string", length=255, nullable=true)
  150.      * @Expose()
  151.      * @Groups({"Page"})
  152.      */
  153.     private ?string $subTitleMovie;
  154.     /**
  155.      * @ORM\Column(type="string", length=255, nullable=true)
  156.      * @Expose()
  157.      * @Groups({"Page"})
  158.      */
  159.     private ?string $mainPageSectionBusStop;
  160.     /**
  161.      * @ORM\Column(type="string", length=255, nullable=true)
  162.      * @Expose()
  163.      * @Groups({"Page"})
  164.      */
  165.     private ?string $mainPageSectionRecommendationsTitle;
  166.     /**
  167.      * @ORM\Column(type="string", length=255, nullable=true)
  168.      * @Expose()
  169.      * @Groups({"Page"})
  170.      */
  171.     private ?string $mainPageSectionSliderTitle;
  172.     /**
  173.      * @ORM\Column(type="string", length=255, nullable=true)
  174.      * @Expose()
  175.      * @Groups({"Page"})
  176.      */
  177.     private ?string $mainPageSectionAveiroTitle;
  178.     /**
  179.      * @ORM\Column(type="text", nullable=true)
  180.      * @Expose()
  181.      * @Groups({"Page"})
  182.      */
  183.     private ?string $mainPageSectionAveiroDescription;
  184.     /**
  185.      * @ORM\Column(type="string", length=255, nullable=true)
  186.      * @Expose()
  187.      * @Groups({"Page"})
  188.      */
  189.     private ?string $mainPageSectionRabacalTitle;
  190.     /**
  191.      * @ORM\Column(type="text", nullable=true)
  192.      * @Expose()
  193.      * @Groups({"Page"})
  194.      */
  195.     private ?string $mainPageSectionRabacalDescription;
  196.     /**
  197.      * @ORM\Column(type="string", length=255, nullable=true)
  198.      * @Expose()
  199.      * @Groups({"Page"})
  200.      */
  201.     private $mainPageSectionFanalTitle;
  202.     /**
  203.      * @ORM\Column(type="text", nullable=true)
  204.      * @Expose()
  205.      * @Groups({"Page"})
  206.      */
  207.     private $mainPageSectionFanalDescription;
  208.     /**
  209.      * @ORM\Column(type="string", length=255, nullable=true)
  210.      * @Expose()
  211.      * @Groups({"Page"})
  212.      */
  213.     private $mainPageSectionFanalLink;
  214.     /**
  215.      * @ORM\Column(type="string", length=255, nullable=true)
  216.      * @Expose()
  217.      * @Groups({"Page"})
  218.      */
  219.     private $mainPageSectionLevadaTitle;
  220.     /**
  221.      * @ORM\Column(type="text", nullable=true)
  222.      * @Expose()
  223.      * @Groups({"Page"})
  224.      */
  225.     private $mainPageSectionLevadaDescription;
  226.     /**
  227.      * @ORM\Column(type="string", length=255, nullable=true)
  228.      * @Expose()
  229.      * @Groups({"Page"})
  230.      */
  231.     private $mainPageSectionLevadaLink;
  232.     /**
  233.      * @ORM\Column(type="string", length=255, nullable=true)
  234.      * @Expose()
  235.      * @Groups({"Page"})
  236.      */
  237.     private $mainPageSectionOutdooTitle;
  238.     /**
  239.      * @ORM\Column(type="text", nullable=true)
  240.      * @Expose()
  241.      * @Groups({"Page"})
  242.      */
  243.     private ?string $mainPageSectionOutdoorDescription;
  244.     /**
  245.      * @ORM\Column(type="string", length=255, nullable=true)
  246.      * @Expose()
  247.      * @Groups({"Page"})
  248.      */
  249.     private ?string $aboutUsFirstSectionTitle;
  250.     /**
  251.      * @ORM\Column(type="text", nullable=true)
  252.      * @Expose()
  253.      * @Groups({"Page"})
  254.      */
  255.     private ?string $aboutUsFirstSectionDescription;
  256.     /**
  257.      * @ORM\Column(type="boolean", nullable=true)
  258.      * @Expose()
  259.      * @Groups({"Page"})
  260.      */
  261.     private $showOnList;
  262.     /**
  263.      * @ORM\Column(type="string", length=255, nullable=true)
  264.      * @Expose()
  265.      * @Groups({"Page"})
  266.      */
  267.     private ?string $aboutUsSecondSectionTitle;
  268.     /**
  269.      * @ORM\Column(type="text", nullable=true)
  270.      * @Expose()
  271.      * @Groups({"Page"})
  272.      */
  273.     private ?string $aboutUsSecondSectionDescription;
  274.     /**
  275.      * @ORM\Column(type="string", length=255, nullable=true)
  276.      * @Expose()
  277.      * @Groups({"Page"})
  278.      */
  279.     private ?string $aboutUsThirdSectionTitle;
  280.     /**
  281.      * @ORM\Column(type="text", nullable=true)
  282.      * @Expose()
  283.      * @Groups({"Page"})
  284.      */
  285.     private ?string $aboutUsThirdSectionDescription;
  286.     /**
  287.      * @ORM\Column(type="string", length=255, nullable=true)
  288.      * @Expose()
  289.      * @Groups({"Page"})
  290.      */
  291.     private ?string $descMovie;
  292.     /**
  293.      * @ORM\OneToOne(targetEntity="SonataMediaGallery", cascade={"persist", "remove"})
  294.      */
  295.     private ?SonataMediaGallery $gallery null;
  296.     /**
  297.      * @ORM\Column(type="text", nullable=true)
  298.      */
  299.     private ?string $mainPageContent;
  300.     
  301.     public function __construct()
  302.     {
  303.         $this->informationNoFollow false;
  304.         $this->mainPage false;
  305.         $this->menus = new ArrayCollection();
  306.         $this->modules = new ArrayCollection();
  307.         $this->buttons = new ArrayCollection();
  308.         $this->sliders = new ArrayCollection();
  309.         $this->icons = new ArrayCollection();
  310.         $this->news = new ArrayCollection();
  311.         $this->sections = new ArrayCollection();
  312.         $this->programs = new ArrayCollection();
  313.         $this->faqs = new ArrayCollection();
  314.         $this->accordations = new ArrayCollection();
  315.         $this->template 0;
  316.         $this->showOnList true;
  317.         $this->isVisible true;
  318.     }
  319.     public function __toString()
  320.     {
  321.         return $this->title;
  322.     }
  323.     /**
  324.      * @return mixed
  325.      */
  326.     public function getId()
  327.     {
  328.         return $this->id;
  329.     }
  330.     /**
  331.      * @return mixed
  332.      */
  333.     public function getTitle()
  334.     {
  335.         return $this->title;
  336.     }
  337.     /**
  338.      * @param mixed $title
  339.      */
  340.     public function setTitle($title)
  341.     {
  342.         $this->title $title;
  343.     }
  344.     /**
  345.      * @return string
  346.      */
  347.     public function getSlug()
  348.     {
  349.         return $this->slug;
  350.     }
  351.     /**
  352.      * @param string $slug
  353.      */
  354.     public function setSlug($slug)
  355.     {
  356.         $this->slug $slug;
  357.     }
  358.     /**
  359.      * @return mixed
  360.      */
  361.     public function getDescription()
  362.     {
  363.         return $this->description;
  364.     }
  365.     /**
  366.      * @param mixed $description
  367.      */
  368.     public function setDescription($description)
  369.     {
  370.         $this->description $description;
  371.     }
  372.     /**
  373.      * @return mixed
  374.      */
  375.     public function getMainPageContent()
  376.     {
  377.         return $this->mainPageContent;
  378.     }
  379.     /**
  380.      * @param mixed $content
  381.      */
  382.     public function setMainPageContent($content)
  383.     {
  384.         $this->mainPageContent $content;
  385.     }
  386.     /**
  387.      * @return mixed
  388.      */
  389.     public function getMainPage()
  390.     {
  391.         return $this->mainPage;
  392.     }
  393.     /**
  394.      * @param mixed $mainPage
  395.      */
  396.     public function setMainPage($mainPage)
  397.     {
  398.         $this->mainPage $mainPage;
  399.     }
  400.     public function isHikeTrail(): bool
  401.     {
  402.         return $this->hikeTrail;
  403.     }
  404.     public function setHikeTrail(bool $hikeTrail): self
  405.     {
  406.         $this->hikeTrail $hikeTrail;
  407.         return $this;
  408.     }
  409.     /**
  410.      * @return Collection|Menu[]
  411.      */
  412.     public function getMenus(): Collection
  413.     {
  414.         return $this->menus;
  415.     }
  416.     public function addMenu(Menu $menu): self
  417.     {
  418.         if (!$this->menus->contains($menu)) {
  419.             $this->menus[] = $menu;
  420.             $menu->setPage($this);
  421.         }
  422.         return $this;
  423.     }
  424.     public function removeMenu(Menu $menu): self
  425.     {
  426.         if ($this->menus->removeElement($menu)) {
  427.             // set the owning side to null (unless already changed)
  428.             if ($menu->getPage() === $this) {
  429.                 $menu->setPage(null);
  430.             }
  431.         }
  432.         return $this;
  433.     }
  434.     /**
  435.      * @return mixed
  436.      */
  437.     public function getTemplate()
  438.     {
  439.         return $this->template;
  440.     }
  441.     /**
  442.      * @param mixed $template
  443.      */
  444.     public function setTemplate($template)
  445.     {
  446.         $this->template $template;
  447.     }
  448.     /**
  449.      * @return Collection|PageIcon[]
  450.      */
  451.     public function getIcons(): Collection
  452.     {
  453.         return $this->icons;
  454.     }
  455.     public function addIcon(PageIcon $icon): self
  456.     {
  457.         if (!$this->icons->contains($icon)) {
  458.             $this->icons[] = $icon;
  459.             $icon->setPage($this);
  460.         }
  461.         return $this;
  462.     }
  463.     public function removeIcon(PageIcon $icon): self
  464.     {
  465.         if ($this->icons->removeElement($icon)) {
  466.             // set the owning side to null (unless already changed)
  467.             if ($icon->getPage() === $this) {
  468.                 $icon->setPage(null);
  469.             }
  470.         }
  471.         return $this;
  472.     }
  473.     /**
  474.      * @return mixed
  475.      */
  476.     public function getIdentificator()
  477.     {
  478.         return $this->identificator;
  479.     }
  480.     /**
  481.      * @param mixed $identificator
  482.      */
  483.     public function setIdentificator($identificator): void
  484.     {
  485.         $this->identificator $identificator;
  486.     }
  487.     public function getModules(): Collection
  488.     {
  489.         return $this->modules;
  490.     }
  491.     public function addModule(PageModule $module)
  492.     {
  493.         if (!$this->modules->contains($module)) {
  494.             $this->modules[] = $module;
  495.             $module->setPage($this);
  496.         }
  497.         return $this;
  498.     }
  499.     public function removeModule(PageModule $module)
  500.     {
  501.         if ($this->modules->contains($module)) {
  502.             $this->modules->removeElement($module);
  503.         }
  504.         return $this;
  505.     }
  506.     /**
  507.      * @return mixed
  508.      */
  509.     public function getMovie()
  510.     {
  511.         return $this->movie;
  512.     }
  513.     /**
  514.      * @param mixed $movie
  515.      */
  516.     public function setMovie($movie): void
  517.     {
  518.         $this->movie $movie;
  519.     }
  520.     /**
  521.      * @return mixed
  522.      */
  523.     public function getSubTitleMovie()
  524.     {
  525.         return $this->subTitleMovie;
  526.     }
  527.     /**
  528.      * @param mixed $subTitleMovie
  529.      */
  530.     public function setSubTitleMovie($subTitleMovie): void
  531.     {
  532.         $this->subTitleMovie $subTitleMovie;
  533.     }
  534.     /**
  535.      * @return mixed
  536.      */
  537.     public function getDescMovie()
  538.     {
  539.         return $this->descMovie;
  540.     }
  541.     /**
  542.      * @param mixed $descMovie
  543.      */
  544.     public function setDescMovie($descMovie): void
  545.     {
  546.         $this->descMovie $descMovie;
  547.     }
  548.     public function getButtons(): Collection
  549.     {
  550.         return $this->buttons;
  551.     }
  552.     public function addButton(PageButton $button)
  553.     {
  554.         if (!$this->buttons->contains($button)) {
  555.             $this->buttons[] = $button;
  556.             $button->setPage($this);
  557.         }
  558.         return $this;
  559.     }
  560.     public function removeButton(PageButton $button)
  561.     {
  562.         if ($this->buttons->contains($button)) {
  563.             $this->buttons->removeElement($button);
  564.             if ($button->getPage() === $this) {
  565.                 $button->setPage(null);
  566.             }
  567.         }
  568.         return $this;
  569.     }
  570.     public function getSliders(): Collection
  571.     {
  572.         return $this->sliders;
  573.     }
  574.     public function addSlider(PageSlider $slider)
  575.     {
  576.         if (!$this->sliders->contains($slider)) {
  577.             $this->sliders[] = $slider;
  578.             $slider->setPage($this);
  579.         }
  580.         return $this;
  581.     }
  582.     public function removeSlider(PageSlider $slider)
  583.     {
  584.         if ($this->sliders->contains($slider)) {
  585.             $this->sliders->removeElement($slider);
  586.             if ($slider->getPage() === $this) {
  587.                 $slider->setPage(null);
  588.             }
  589.         }
  590.         return $this;
  591.     }
  592.     /**
  593.      * @return string
  594.      */
  595.     public function getUrl()
  596.     {
  597.         return $this->url;
  598.     }
  599.     /**
  600.      * @param string $url
  601.      */
  602.     public function setUrl($url)
  603.     {
  604.         $this->url $url;
  605.     }
  606.     /**
  607.      * @return Collection|PageNews[]
  608.      */
  609.     public function getNews(): Collection
  610.     {
  611.         return $this->news;
  612.     }
  613.     public function addNews(PageNews $news): self
  614.     {
  615.         if (!$this->news->contains($news)) {
  616.             $this->news[] = $news;
  617.             $news->setPage($this);
  618.         }
  619.         return $this;
  620.     }
  621.     public function removeNews(PageNews $news): self
  622.     {
  623.         if ($this->news->removeElement($news)) {
  624.             if ($news->getPage() === $this) {
  625.                 $news->setPage(null);
  626.             }
  627.         }
  628.         return $this;
  629.     }
  630.     /**
  631.      * @return Collection|PageProgram[]
  632.      */
  633.     public function getPrograms(): Collection
  634.     {
  635.         return $this->programs;
  636.     }
  637.     public function addProgram(PageProgram $program): self
  638.     {
  639.         if (!$this->programs->contains($program)) {
  640.             $this->programs[] = $program;
  641.             $program->setPage($this);
  642.         }
  643.         return $this;
  644.     }
  645.     public function removeProgram(PageProgram $program): self
  646.     {
  647.         if ($this->news->removeElement($program)) {
  648.             if ($program->getPage() === $this) {
  649.                 $program->setPage(null);
  650.             }
  651.         }
  652.         return $this;
  653.     }
  654.     /**
  655.      * @return Collection|PageSection[]
  656.      */
  657.     public function getSections(): Collection
  658.     {
  659.         return $this->sections;
  660.     }
  661.     public function addSection(PageSection $section): self
  662.     {
  663.         if (!$this->sections->contains($section)) {
  664.             $this->sections[] = $section;
  665.             $section->setPage($this);
  666.         }
  667.         return $this;
  668.     }
  669.     public function removeSection(PageSection $section): self
  670.     {
  671.         if ($this->sections->removeElement($section)) {
  672.             if ($section->getPage() === $this) {
  673.                 $section->setPage(null);
  674.             }
  675.         }
  676.         return $this;
  677.     }
  678.     /**
  679.      * @return mixed
  680.      */
  681.     public function getMainPageSectionBusStop()
  682.     {
  683.         return $this->mainPageSectionBusStop;
  684.     }
  685.     /**
  686.      * @param mixed $mainPageSectionBusStop
  687.      */
  688.     public function setMainPageSectionBusStop($mainPageSectionBusStop): void
  689.     {
  690.         $this->mainPageSectionBusStop $mainPageSectionBusStop;
  691.     }
  692.     /**
  693.      * @return mixed
  694.      */
  695.     public function getMainPageSectionAveiroTitle()
  696.     {
  697.         return $this->mainPageSectionAveiroTitle;
  698.     }
  699.     /**
  700.     * @return mixed
  701.     */
  702.     public function getMainPageSectionFanalTitle()
  703.     {
  704.         return $this->mainPageSectionFanalTitle;
  705.     }
  706.     /**
  707.      * @param mixed $mainPageSectionAveiroTitle
  708.      */
  709.     public function setMainPageSectionAveiroTitle($mainPageSectionAveiroTitle): void
  710.     {
  711.         $this->mainPageSectionAveiroTitle $mainPageSectionAveiroTitle;
  712.     }
  713.     public function setMainPageSectionFanalTitle($mainPageSectionFanalTitle): void
  714.     {
  715.         $this->mainPageSectionFanalTitle $mainPageSectionFanalTitle;
  716.     }
  717.     /**
  718.      * @return mixed
  719.      */
  720.     public function getMainPageSectionAveiroDescription()
  721.     {
  722.         return $this->mainPageSectionAveiroDescription;
  723.     }
  724.     /**
  725.      * @return mixed
  726.      */
  727.     public function getMainPageSectionFanalDescription()
  728.     {
  729.         return $this->mainPageSectionFanalDescription;
  730.     }
  731.     /**
  732.      * @param mixed $mainPageSectionAveiroDescription
  733.      */
  734.     public function setMainPageSectionAveiroDescription($mainPageSectionAveiroDescription): void
  735.     {
  736.         $this->mainPageSectionAveiroDescription $mainPageSectionAveiroDescription;
  737.     }
  738.     public function setMainPageSectionFanalDescription($mainPageSectionFanalDescription): void
  739.     {
  740.         $this->mainPageSectionFanalDescription $mainPageSectionFanalDescription;
  741.     }
  742.     /**
  743.      * @return mixed
  744.      */
  745.     public function getMainPageSectionRabacalTitle()
  746.     {
  747.         return $this->mainPageSectionRabacalTitle;
  748.     }
  749.     /**
  750.      * @param mixed $mainPageSectionRabacalTitle
  751.      */
  752.     public function setMainPageSectionRabacalTitle($mainPageSectionRabacalTitle): void
  753.     {
  754.         $this->mainPageSectionRabacalTitle $mainPageSectionRabacalTitle;
  755.     }
  756.     /**
  757.      * @return mixed
  758.      */
  759.     public function getMainPageSectionRabacalDescription()
  760.     {
  761.         return $this->mainPageSectionRabacalDescription;
  762.     }
  763.     /**
  764.      * @param mixed $mainPageSectionRabacalDescription
  765.      */
  766.     public function setMainPageSectionRabacalDescription($mainPageSectionRabacalDescription): void
  767.     {
  768.         $this->mainPageSectionRabacalDescription $mainPageSectionRabacalDescription;
  769.     }
  770.     /**
  771.      * @return mixed
  772.      */
  773.     public function getMainPageSectionRecommendationsTitle()
  774.     {
  775.         return $this->mainPageSectionRecommendationsTitle;
  776.     }
  777.     /**
  778.      * @param mixed $mainPageSectionRecommendationsTitle
  779.      */
  780.     public function setMainPageSectionRecommendationsTitle($mainPageSectionRecommendationsTitle): void
  781.     {
  782.         $this->mainPageSectionRecommendationsTitle $mainPageSectionRecommendationsTitle;
  783.     }
  784.     /**
  785.      * @return mixed
  786.      */
  787.     public function getMainPageSectionSliderTitle()
  788.     {
  789.         return $this->mainPageSectionSliderTitle;
  790.     }
  791.     /**
  792.      * @param mixed $mainPageSectionSliderTitle
  793.      */
  794.     public function setMainPageSectionSliderTitle($mainPageSectionSliderTitle): void
  795.     {
  796.         $this->mainPageSectionSliderTitle $mainPageSectionSliderTitle;
  797.     }
  798.     /**
  799.      * @return mixed
  800.      */
  801.     public function getMainPageSectionOutdoorDescription()
  802.     {
  803.         return $this->mainPageSectionOutdoorDescription;
  804.     }
  805.     /**
  806.      * @param mixed $mainPageSectionOutdoorDescription
  807.      */
  808.     public function setMainPageSectionOutdoorDescription($mainPageSectionOutdoorDescription): void
  809.     {
  810.         $this->mainPageSectionOutdoorDescription $mainPageSectionOutdoorDescription;
  811.     }
  812.     /**
  813.      * @return mixed
  814.      */
  815.     public function getMainPageSectionOutdooTitle()
  816.     {
  817.         return $this->mainPageSectionOutdooTitle;
  818.     }
  819.     /**
  820.      * @param mixed $mainPageSectionOutdooTitle
  821.      */
  822.     public function setMainPageSectionOutdooTitle($mainPageSectionOutdooTitle): void
  823.     {
  824.         $this->mainPageSectionOutdooTitle $mainPageSectionOutdooTitle;
  825.     }
  826.     /**
  827.      * @return Collection|PageAccordation[]
  828.      */
  829.     public function getAccordations(): Collection
  830.     {
  831.         return $this->accordations;
  832.     }
  833.     public function addAccordation(PageAccordation $accordation): self
  834.     {
  835.         if (!$this->accordations->contains($accordation)) {
  836.             $this->accordations[] = $accordation;
  837.             $accordation->setPage($this);
  838.         }
  839.         return $this;
  840.     }
  841.     public function removeAccordation(PageAccordation $accordation): self
  842.     {
  843.         if ($this->accordations->removeElement($accordation)) {
  844.             if ($accordation->getPage() === $this) {
  845.                 $accordation->setPage(null);
  846.             }
  847.         }
  848.         return $this;
  849.     }
  850.     /**
  851.      * @return mixed
  852.      */
  853.     public function getAboutUsFirstSectionTitle()
  854.     {
  855.         return $this->aboutUsFirstSectionTitle;
  856.     }
  857.     /**
  858.      * @param mixed $aboutUsFirstSectionTitle
  859.      */
  860.     public function setAboutUsFirstSectionTitle($aboutUsFirstSectionTitle): void
  861.     {
  862.         $this->aboutUsFirstSectionTitle $aboutUsFirstSectionTitle;
  863.     }
  864.     /**
  865.      * @return mixed
  866.      */
  867.     public function getAboutUsFirstSectionDescription()
  868.     {
  869.         return $this->aboutUsFirstSectionDescription;
  870.     }
  871.     /**
  872.      * @param mixed $aboutUsFirstSectionDescription
  873.      */
  874.     public function setAboutUsFirstSectionDescription($aboutUsFirstSectionDescription): void
  875.     {
  876.         $this->aboutUsFirstSectionDescription $aboutUsFirstSectionDescription;
  877.     }
  878.     /**
  879.      * @return mixed
  880.      */
  881.     public function getAboutUsSecondSectionTitle()
  882.     {
  883.         return $this->aboutUsSecondSectionTitle;
  884.     }
  885.     /**
  886.      * @param mixed $aboutUsSecondSectionTitle
  887.      */
  888.     public function setAboutUsSecondSectionTitle($aboutUsSecondSectionTitle): void
  889.     {
  890.         $this->aboutUsSecondSectionTitle $aboutUsSecondSectionTitle;
  891.     }
  892.     /**
  893.      * @return mixed
  894.      */
  895.     public function getAboutUsSecondSectionDescription()
  896.     {
  897.         return $this->aboutUsSecondSectionDescription;
  898.     }
  899.     /**
  900.      * @param mixed $aboutUsSecondSectionDescription
  901.      */
  902.     public function setAboutUsSecondSectionDescription($aboutUsSecondSectionDescription): void
  903.     {
  904.         $this->aboutUsSecondSectionDescription $aboutUsSecondSectionDescription;
  905.     }
  906.     /**
  907.      * @return mixed
  908.      */
  909.     public function getAboutUsThirdSectionTitle()
  910.     {
  911.         return $this->aboutUsThirdSectionTitle;
  912.     }
  913.     /**
  914.      * @param mixed $aboutUsThirdSectionTitle
  915.      */
  916.     public function setAboutUsThirdSectionTitle($aboutUsThirdSectionTitle): void
  917.     {
  918.         $this->aboutUsThirdSectionTitle $aboutUsThirdSectionTitle;
  919.     }
  920.     /**
  921.      * @return mixed
  922.      */
  923.     public function getAboutUsThirdSectionDescription()
  924.     {
  925.         return $this->aboutUsThirdSectionDescription;
  926.     }
  927.     /**
  928.      * @param mixed $aboutUsThirdSectionDescription
  929.      */
  930.     public function setAboutUsThirdSectionDescription($aboutUsThirdSectionDescription): void
  931.     {
  932.         $this->aboutUsThirdSectionDescription $aboutUsThirdSectionDescription;
  933.     }
  934.     /**
  935.      * @return Collection|PageFaq[]
  936.      */
  937.     public function getFaqs(): Collection
  938.     {
  939.         return $this->faqs;
  940.     }
  941.     public function addFaq(PageFaq $faq): self
  942.     {
  943.         if (!$this->faqs->contains($faq)) {
  944.             $this->faqs[] = $faq;
  945.             $faq->setPage($this);
  946.         }
  947.         return $this;
  948.     }
  949.     public function removeFaq(PageFaq $faq): self
  950.     {
  951.         if ($this->faqs->removeElement($faq)) {
  952.             if ($faq->getPage() === $this) {
  953.                 $faq->setPage(null);
  954.             }
  955.         }
  956.         return $this;
  957.     }
  958.     /**
  959.      * @return mixed
  960.      */
  961.     public function getShortDesc()
  962.     {
  963.         return $this->shortDesc;
  964.     }
  965.     /**
  966.      * @param mixed $shortDesc
  967.      */
  968.     public function setShortDesc($shortDesc): void
  969.     {
  970.         $this->shortDesc $shortDesc;
  971.     }
  972.     /**
  973.      * @return mixed
  974.      */
  975.     public function getSeoDesc()
  976.     {
  977.         return $this->seoDesc;
  978.     }
  979.     /**
  980.      * @param mixed $seoDesc
  981.      */
  982.     public function setSeoDesc($seoDesc)
  983.     {
  984.         $this->seoDesc $seoDesc;
  985.     }
  986.     public function getShowOnList()
  987.     {
  988.         if (!$this->isVisible()) {
  989.             return false;
  990.         }
  991.         return $this->showOnList;
  992.     }
  993.     public function setShowOnList($showOnList)
  994.     {
  995.         $this->showOnList $showOnList;
  996.     }
  997.     /**
  998.      * @return mixed
  999.      */
  1000.     public function getMainPageSectionFanalLink()
  1001.     {
  1002.         return $this->mainPageSectionFanalLink;
  1003.     }
  1004.     /**
  1005.      * @param mixed $mainPageSectionFanalLink
  1006.      */
  1007.     public function setMainPageSectionFanalLink($mainPageSectionFanalLink): void
  1008.     {
  1009.         $this->mainPageSectionFanalLink $mainPageSectionFanalLink;
  1010.     }
  1011.     /**
  1012.      * @return mixed
  1013.      */
  1014.     public function getMainPageSectionLevadaTitle()
  1015.     {
  1016.         return $this->mainPageSectionLevadaTitle;
  1017.     }
  1018.     /**
  1019.      * @param mixed $mainPageSectionLevadaTitle
  1020.      */
  1021.     public function setMainPageSectionLevadaTitle($mainPageSectionLevadaTitle): void
  1022.     {
  1023.         $this->mainPageSectionLevadaTitle $mainPageSectionLevadaTitle;
  1024.     }
  1025.     /**
  1026.      * @return mixed
  1027.      */
  1028.     public function getMainPageSectionLevadaDescription()
  1029.     {
  1030.         return $this->mainPageSectionLevadaDescription;
  1031.     }
  1032.     /**
  1033.      * @param mixed $mainPageSectionLevadaDescription
  1034.      */
  1035.     public function setMainPageSectionLevadaDescription($mainPageSectionLevadaDescription): void
  1036.     {
  1037.         $this->mainPageSectionLevadaDescription $mainPageSectionLevadaDescription;
  1038.     }
  1039.     /**
  1040.      * @return mixed
  1041.      */
  1042.     public function getMainPageSectionLevadaLink()
  1043.     {
  1044.         return $this->mainPageSectionLevadaLink;
  1045.     }
  1046.     /**
  1047.      * @param mixed $mainPageSectionLevadaLink
  1048.      */
  1049.     public function setMainPageSectionLevadaLink($mainPageSectionLevadaLink): void
  1050.     {
  1051.         $this->mainPageSectionLevadaLink $mainPageSectionLevadaLink;
  1052.     }
  1053.     public function getGallery(): SonataMediaGallery
  1054.     {
  1055.         if (null === $this->gallery || !$this->gallery->getName()) {
  1056.             $this->gallery = new SonataMediaGallery();
  1057.             $this->gallery->setName("Page main gallery for " $this->getTitle());
  1058.             $this->gallery->setContext('default');
  1059.         }
  1060.         return $this->gallery;
  1061.     }
  1062.     public function setGallery(?SonataMediaGallery $gallery): void
  1063.     {
  1064.         $this->gallery $gallery;
  1065.     }
  1066.     public function isVisible(): bool
  1067.     {
  1068.         return $this->isVisible;
  1069.     }
  1070.     public function setIsVisible(bool $isVisible): self
  1071.     {
  1072.         $this->isVisible $isVisible;
  1073.         return $this;
  1074.     }
  1075.     public function prePersist(): void
  1076.     {
  1077.         $this->createdAt = new \DateTime();
  1078.         $this->getGallery();
  1079.     }
  1080. }