<?php
declare(strict_types=1);
namespace App\Entity;
use App\Annotation\DatabaseSubscriberClient;
use App\Entity\Traits\EntitySEOTrait;
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;
/**
* @ORM\Table(name="page")
* @ORM\Entity(repositoryClass="App\Repository\PageRepository")
* @SoftDeleteable(fieldName="deletedAt", timeAware=false, hardDelete=false)
* @ExclusionPolicy("all")
* @DatabaseSubscriberClient()
*/
class Page extends BaseDomain
{
use EntityTimestampableTrait;
use EntitySoftDeletableTrait;
use EntitySEOTrait;
/**
* @ORM\Id()
* @ORM\GeneratedValue()
* @ORM\Column(type="integer")
*/
private int $id;
/**
* @ORM\Column(type="string", length=255, nullable=true)
* @Expose()
* @Groups({"Page"})
*/
private ?string $title;
/**
* @ORM\Column(type="string", length=255, nullable=true)
* @Expose()
* @Groups({"Page"})
*/
private ?string $identificator;
/**
* @ORM\Column(type="integer", nullable=false)
*/
private int $template;
/**
*
* @Gedmo\Slug(fields={"title"})
* @ORM\Column(length=255, unique=false)
*/
private string $slug;
/**
* @var string $slug
* @ORM\Column(type="string", length=255, nullable=true)
*/
private ?string $url = null;
/**
* @ORM\Column(type="text", nullable=true)
* @Expose()
* @Groups({"Page"})
*/
private ?string $description;
/**
* @ORM\Column(type="text", nullable=true)
* @Expose()
* @Groups({"Page"})
*/
private ?string $shortDesc;
/**
* @ORM\Column(type="text", nullable=true)
* @Expose()
* @Groups({"Page"})
*/
private ?string $seoDesc;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private ?bool $mainPage;
/**
* @ORM\Column(type="boolean", nullable=false, options={"default":false})
*/
private bool $hikeTrail = false;
/**
* @ORM\Column(type="boolean", nullable=false, options={"default": true})
*/
private bool $isVisible = true;
/**
* @ORM\OneToMany(targetEntity=Menu::class, mappedBy="page")
*/
private Collection $menus;
/**
* @Expose()
* @Groups({"Page"})
* @ORM\OneToMany(targetEntity="PageModule", mappedBy="page", cascade={"persist", "remove"}, orphanRemoval=true)
* @ORM\OrderBy({"position" = "asc"})
*/
private Collection $modules;
/**
* @ORM\OneToMany(targetEntity="PageButton", mappedBy="page", cascade={"persist", "remove"}, orphanRemoval=true)
* @ORM\OrderBy({"position" = "asc"})
*/
private Collection $buttons;
/**
* @ORM\OneToMany(targetEntity="PageIcon", mappedBy="page", cascade={"persist", "remove"}, orphanRemoval=true)
* @ORM\OrderBy({"position" = "asc"})
*/
private Collection $icons;
/**
* @ORM\OneToMany(targetEntity="PageProgram", mappedBy="page", cascade={"persist", "remove"}, orphanRemoval=true)
* @ORM\OrderBy({"position" = "asc"})
*/
private Collection $programs;
/**
* @ORM\OneToMany(targetEntity="PageSection", mappedBy="page", cascade={"persist", "remove"}, orphanRemoval=true)
* @ORM\OrderBy({"position" = "asc"})
*/
private Collection $sections;
/**
* @ORM\OneToMany(targetEntity="PageAccordation", mappedBy="page", cascade={"persist", "remove"}, orphanRemoval=true)
* @ORM\OrderBy({"position" = "asc"})
*/
private Collection $accordations;
/**
* @ORM\OneToMany(targetEntity="PageFaq", mappedBy="page", cascade={"persist", "remove"}, orphanRemoval=true)
* @ORM\OrderBy({"position" = "asc"})
*/
private Collection $faqs;
/**
* @ORM\OneToMany(targetEntity="PageNews", mappedBy="page", cascade={"persist", "remove"}, orphanRemoval=true)
* @ORM\OrderBy({"position" = "asc"})
*/
private Collection $news;
/**
* @Expose()
* @Groups({"Page"})
* @ORM\OneToMany(targetEntity="PageSlider", mappedBy="page", cascade={"persist", "remove"}, orphanRemoval=true)
* @ORM\OrderBy({"position" = "asc"})
*/
private Collection $sliders;
/**
* @ORM\ManyToOne(targetEntity="SonataMediaMedia")
*/
private SonataMediaMedia $movie;
/**
* @ORM\Column(type="string", length=255, nullable=true)
* @Expose()
* @Groups({"Page"})
*/
private ?string $subTitleMovie;
/**
* @ORM\Column(type="string", length=255, nullable=true)
* @Expose()
* @Groups({"Page"})
*/
private ?string $mainPageSectionBusStop;
/**
* @ORM\Column(type="string", length=255, nullable=true)
* @Expose()
* @Groups({"Page"})
*/
private ?string $mainPageSectionRecommendationsTitle;
/**
* @ORM\Column(type="string", length=255, nullable=true)
* @Expose()
* @Groups({"Page"})
*/
private ?string $mainPageSectionSliderTitle;
/**
* @ORM\Column(type="string", length=255, nullable=true)
* @Expose()
* @Groups({"Page"})
*/
private ?string $mainPageSectionAveiroTitle;
/**
* @ORM\Column(type="text", nullable=true)
* @Expose()
* @Groups({"Page"})
*/
private ?string $mainPageSectionAveiroDescription;
/**
* @ORM\Column(type="string", length=255, nullable=true)
* @Expose()
* @Groups({"Page"})
*/
private ?string $mainPageSectionRabacalTitle;
/**
* @ORM\Column(type="text", nullable=true)
* @Expose()
* @Groups({"Page"})
*/
private ?string $mainPageSectionRabacalDescription;
/**
* @ORM\Column(type="string", length=255, nullable=true)
* @Expose()
* @Groups({"Page"})
*/
private $mainPageSectionFanalTitle;
/**
* @ORM\Column(type="text", nullable=true)
* @Expose()
* @Groups({"Page"})
*/
private $mainPageSectionFanalDescription;
/**
* @ORM\Column(type="string", length=255, nullable=true)
* @Expose()
* @Groups({"Page"})
*/
private $mainPageSectionFanalLink;
/**
* @ORM\Column(type="string", length=255, nullable=true)
* @Expose()
* @Groups({"Page"})
*/
private $mainPageSectionLevadaTitle;
/**
* @ORM\Column(type="text", nullable=true)
* @Expose()
* @Groups({"Page"})
*/
private $mainPageSectionLevadaDescription;
/**
* @ORM\Column(type="string", length=255, nullable=true)
* @Expose()
* @Groups({"Page"})
*/
private $mainPageSectionLevadaLink;
/**
* @ORM\Column(type="string", length=255, nullable=true)
* @Expose()
* @Groups({"Page"})
*/
private $mainPageSectionOutdooTitle;
/**
* @ORM\Column(type="text", nullable=true)
* @Expose()
* @Groups({"Page"})
*/
private ?string $mainPageSectionOutdoorDescription;
/**
* @ORM\Column(type="string", length=255, nullable=true)
* @Expose()
* @Groups({"Page"})
*/
private ?string $aboutUsFirstSectionTitle;
/**
* @ORM\Column(type="text", nullable=true)
* @Expose()
* @Groups({"Page"})
*/
private ?string $aboutUsFirstSectionDescription;
/**
* @ORM\Column(type="boolean", nullable=true)
* @Expose()
* @Groups({"Page"})
*/
private $showOnList;
/**
* @ORM\Column(type="string", length=255, nullable=true)
* @Expose()
* @Groups({"Page"})
*/
private ?string $aboutUsSecondSectionTitle;
/**
* @ORM\Column(type="text", nullable=true)
* @Expose()
* @Groups({"Page"})
*/
private ?string $aboutUsSecondSectionDescription;
/**
* @ORM\Column(type="string", length=255, nullable=true)
* @Expose()
* @Groups({"Page"})
*/
private ?string $aboutUsThirdSectionTitle;
/**
* @ORM\Column(type="text", nullable=true)
* @Expose()
* @Groups({"Page"})
*/
private ?string $aboutUsThirdSectionDescription;
/**
* @ORM\Column(type="string", length=255, nullable=true)
* @Expose()
* @Groups({"Page"})
*/
private ?string $descMovie;
/**
* @ORM\OneToOne(targetEntity="SonataMediaGallery", cascade={"persist", "remove"})
*/
private ?SonataMediaGallery $gallery = null;
/**
* @ORM\Column(type="text", nullable=true)
*/
private ?string $mainPageContent;
public function __construct()
{
$this->informationNoFollow = false;
$this->mainPage = false;
$this->menus = new ArrayCollection();
$this->modules = new ArrayCollection();
$this->buttons = new ArrayCollection();
$this->sliders = new ArrayCollection();
$this->icons = new ArrayCollection();
$this->news = new ArrayCollection();
$this->sections = new ArrayCollection();
$this->programs = new ArrayCollection();
$this->faqs = new ArrayCollection();
$this->accordations = new ArrayCollection();
$this->template = 0;
$this->showOnList = true;
$this->isVisible = true;
}
public function __toString()
{
return $this->title;
}
/**
* @return mixed
*/
public function getId()
{
return $this->id;
}
/**
* @return mixed
*/
public function getTitle()
{
return $this->title;
}
/**
* @param mixed $title
*/
public function setTitle($title)
{
$this->title = $title;
}
/**
* @return string
*/
public function getSlug()
{
return $this->slug;
}
/**
* @param string $slug
*/
public function setSlug($slug)
{
$this->slug = $slug;
}
/**
* @return mixed
*/
public function getDescription()
{
return $this->description;
}
/**
* @param mixed $description
*/
public function setDescription($description)
{
$this->description = $description;
}
/**
* @return mixed
*/
public function getMainPageContent()
{
return $this->mainPageContent;
}
/**
* @param mixed $content
*/
public function setMainPageContent($content)
{
$this->mainPageContent = $content;
}
/**
* @return mixed
*/
public function getMainPage()
{
return $this->mainPage;
}
/**
* @param mixed $mainPage
*/
public function setMainPage($mainPage)
{
$this->mainPage = $mainPage;
}
public function isHikeTrail(): bool
{
return $this->hikeTrail;
}
public function setHikeTrail(bool $hikeTrail): self
{
$this->hikeTrail = $hikeTrail;
return $this;
}
/**
* @return Collection|Menu[]
*/
public function getMenus(): Collection
{
return $this->menus;
}
public function addMenu(Menu $menu): self
{
if (!$this->menus->contains($menu)) {
$this->menus[] = $menu;
$menu->setPage($this);
}
return $this;
}
public function removeMenu(Menu $menu): self
{
if ($this->menus->removeElement($menu)) {
// set the owning side to null (unless already changed)
if ($menu->getPage() === $this) {
$menu->setPage(null);
}
}
return $this;
}
/**
* @return mixed
*/
public function getTemplate()
{
return $this->template;
}
/**
* @param mixed $template
*/
public function setTemplate($template)
{
$this->template = $template;
}
/**
* @return Collection|PageIcon[]
*/
public function getIcons(): Collection
{
return $this->icons;
}
public function addIcon(PageIcon $icon): self
{
if (!$this->icons->contains($icon)) {
$this->icons[] = $icon;
$icon->setPage($this);
}
return $this;
}
public function removeIcon(PageIcon $icon): self
{
if ($this->icons->removeElement($icon)) {
// set the owning side to null (unless already changed)
if ($icon->getPage() === $this) {
$icon->setPage(null);
}
}
return $this;
}
/**
* @return mixed
*/
public function getIdentificator()
{
return $this->identificator;
}
/**
* @param mixed $identificator
*/
public function setIdentificator($identificator): void
{
$this->identificator = $identificator;
}
public function getModules(): Collection
{
return $this->modules;
}
public function addModule(PageModule $module)
{
if (!$this->modules->contains($module)) {
$this->modules[] = $module;
$module->setPage($this);
}
return $this;
}
public function removeModule(PageModule $module)
{
if ($this->modules->contains($module)) {
$this->modules->removeElement($module);
}
return $this;
}
/**
* @return mixed
*/
public function getMovie()
{
return $this->movie;
}
/**
* @param mixed $movie
*/
public function setMovie($movie): void
{
$this->movie = $movie;
}
/**
* @return mixed
*/
public function getSubTitleMovie()
{
return $this->subTitleMovie;
}
/**
* @param mixed $subTitleMovie
*/
public function setSubTitleMovie($subTitleMovie): void
{
$this->subTitleMovie = $subTitleMovie;
}
/**
* @return mixed
*/
public function getDescMovie()
{
return $this->descMovie;
}
/**
* @param mixed $descMovie
*/
public function setDescMovie($descMovie): void
{
$this->descMovie = $descMovie;
}
public function getButtons(): Collection
{
return $this->buttons;
}
public function addButton(PageButton $button)
{
if (!$this->buttons->contains($button)) {
$this->buttons[] = $button;
$button->setPage($this);
}
return $this;
}
public function removeButton(PageButton $button)
{
if ($this->buttons->contains($button)) {
$this->buttons->removeElement($button);
if ($button->getPage() === $this) {
$button->setPage(null);
}
}
return $this;
}
public function getSliders(): Collection
{
return $this->sliders;
}
public function addSlider(PageSlider $slider)
{
if (!$this->sliders->contains($slider)) {
$this->sliders[] = $slider;
$slider->setPage($this);
}
return $this;
}
public function removeSlider(PageSlider $slider)
{
if ($this->sliders->contains($slider)) {
$this->sliders->removeElement($slider);
if ($slider->getPage() === $this) {
$slider->setPage(null);
}
}
return $this;
}
/**
* @return string
*/
public function getUrl()
{
return $this->url;
}
/**
* @param string $url
*/
public function setUrl($url)
{
$this->url = $url;
}
/**
* @return Collection|PageNews[]
*/
public function getNews(): Collection
{
return $this->news;
}
public function addNews(PageNews $news): self
{
if (!$this->news->contains($news)) {
$this->news[] = $news;
$news->setPage($this);
}
return $this;
}
public function removeNews(PageNews $news): self
{
if ($this->news->removeElement($news)) {
if ($news->getPage() === $this) {
$news->setPage(null);
}
}
return $this;
}
/**
* @return Collection|PageProgram[]
*/
public function getPrograms(): Collection
{
return $this->programs;
}
public function addProgram(PageProgram $program): self
{
if (!$this->programs->contains($program)) {
$this->programs[] = $program;
$program->setPage($this);
}
return $this;
}
public function removeProgram(PageProgram $program): self
{
if ($this->news->removeElement($program)) {
if ($program->getPage() === $this) {
$program->setPage(null);
}
}
return $this;
}
/**
* @return Collection|PageSection[]
*/
public function getSections(): Collection
{
return $this->sections;
}
public function addSection(PageSection $section): self
{
if (!$this->sections->contains($section)) {
$this->sections[] = $section;
$section->setPage($this);
}
return $this;
}
public function removeSection(PageSection $section): self
{
if ($this->sections->removeElement($section)) {
if ($section->getPage() === $this) {
$section->setPage(null);
}
}
return $this;
}
/**
* @return mixed
*/
public function getMainPageSectionBusStop()
{
return $this->mainPageSectionBusStop;
}
/**
* @param mixed $mainPageSectionBusStop
*/
public function setMainPageSectionBusStop($mainPageSectionBusStop): void
{
$this->mainPageSectionBusStop = $mainPageSectionBusStop;
}
/**
* @return mixed
*/
public function getMainPageSectionAveiroTitle()
{
return $this->mainPageSectionAveiroTitle;
}
/**
* @return mixed
*/
public function getMainPageSectionFanalTitle()
{
return $this->mainPageSectionFanalTitle;
}
/**
* @param mixed $mainPageSectionAveiroTitle
*/
public function setMainPageSectionAveiroTitle($mainPageSectionAveiroTitle): void
{
$this->mainPageSectionAveiroTitle = $mainPageSectionAveiroTitle;
}
public function setMainPageSectionFanalTitle($mainPageSectionFanalTitle): void
{
$this->mainPageSectionFanalTitle = $mainPageSectionFanalTitle;
}
/**
* @return mixed
*/
public function getMainPageSectionAveiroDescription()
{
return $this->mainPageSectionAveiroDescription;
}
/**
* @return mixed
*/
public function getMainPageSectionFanalDescription()
{
return $this->mainPageSectionFanalDescription;
}
/**
* @param mixed $mainPageSectionAveiroDescription
*/
public function setMainPageSectionAveiroDescription($mainPageSectionAveiroDescription): void
{
$this->mainPageSectionAveiroDescription = $mainPageSectionAveiroDescription;
}
public function setMainPageSectionFanalDescription($mainPageSectionFanalDescription): void
{
$this->mainPageSectionFanalDescription = $mainPageSectionFanalDescription;
}
/**
* @return mixed
*/
public function getMainPageSectionRabacalTitle()
{
return $this->mainPageSectionRabacalTitle;
}
/**
* @param mixed $mainPageSectionRabacalTitle
*/
public function setMainPageSectionRabacalTitle($mainPageSectionRabacalTitle): void
{
$this->mainPageSectionRabacalTitle = $mainPageSectionRabacalTitle;
}
/**
* @return mixed
*/
public function getMainPageSectionRabacalDescription()
{
return $this->mainPageSectionRabacalDescription;
}
/**
* @param mixed $mainPageSectionRabacalDescription
*/
public function setMainPageSectionRabacalDescription($mainPageSectionRabacalDescription): void
{
$this->mainPageSectionRabacalDescription = $mainPageSectionRabacalDescription;
}
/**
* @return mixed
*/
public function getMainPageSectionRecommendationsTitle()
{
return $this->mainPageSectionRecommendationsTitle;
}
/**
* @param mixed $mainPageSectionRecommendationsTitle
*/
public function setMainPageSectionRecommendationsTitle($mainPageSectionRecommendationsTitle): void
{
$this->mainPageSectionRecommendationsTitle = $mainPageSectionRecommendationsTitle;
}
/**
* @return mixed
*/
public function getMainPageSectionSliderTitle()
{
return $this->mainPageSectionSliderTitle;
}
/**
* @param mixed $mainPageSectionSliderTitle
*/
public function setMainPageSectionSliderTitle($mainPageSectionSliderTitle): void
{
$this->mainPageSectionSliderTitle = $mainPageSectionSliderTitle;
}
/**
* @return mixed
*/
public function getMainPageSectionOutdoorDescription()
{
return $this->mainPageSectionOutdoorDescription;
}
/**
* @param mixed $mainPageSectionOutdoorDescription
*/
public function setMainPageSectionOutdoorDescription($mainPageSectionOutdoorDescription): void
{
$this->mainPageSectionOutdoorDescription = $mainPageSectionOutdoorDescription;
}
/**
* @return mixed
*/
public function getMainPageSectionOutdooTitle()
{
return $this->mainPageSectionOutdooTitle;
}
/**
* @param mixed $mainPageSectionOutdooTitle
*/
public function setMainPageSectionOutdooTitle($mainPageSectionOutdooTitle): void
{
$this->mainPageSectionOutdooTitle = $mainPageSectionOutdooTitle;
}
/**
* @return Collection|PageAccordation[]
*/
public function getAccordations(): Collection
{
return $this->accordations;
}
public function addAccordation(PageAccordation $accordation): self
{
if (!$this->accordations->contains($accordation)) {
$this->accordations[] = $accordation;
$accordation->setPage($this);
}
return $this;
}
public function removeAccordation(PageAccordation $accordation): self
{
if ($this->accordations->removeElement($accordation)) {
if ($accordation->getPage() === $this) {
$accordation->setPage(null);
}
}
return $this;
}
/**
* @return mixed
*/
public function getAboutUsFirstSectionTitle()
{
return $this->aboutUsFirstSectionTitle;
}
/**
* @param mixed $aboutUsFirstSectionTitle
*/
public function setAboutUsFirstSectionTitle($aboutUsFirstSectionTitle): void
{
$this->aboutUsFirstSectionTitle = $aboutUsFirstSectionTitle;
}
/**
* @return mixed
*/
public function getAboutUsFirstSectionDescription()
{
return $this->aboutUsFirstSectionDescription;
}
/**
* @param mixed $aboutUsFirstSectionDescription
*/
public function setAboutUsFirstSectionDescription($aboutUsFirstSectionDescription): void
{
$this->aboutUsFirstSectionDescription = $aboutUsFirstSectionDescription;
}
/**
* @return mixed
*/
public function getAboutUsSecondSectionTitle()
{
return $this->aboutUsSecondSectionTitle;
}
/**
* @param mixed $aboutUsSecondSectionTitle
*/
public function setAboutUsSecondSectionTitle($aboutUsSecondSectionTitle): void
{
$this->aboutUsSecondSectionTitle = $aboutUsSecondSectionTitle;
}
/**
* @return mixed
*/
public function getAboutUsSecondSectionDescription()
{
return $this->aboutUsSecondSectionDescription;
}
/**
* @param mixed $aboutUsSecondSectionDescription
*/
public function setAboutUsSecondSectionDescription($aboutUsSecondSectionDescription): void
{
$this->aboutUsSecondSectionDescription = $aboutUsSecondSectionDescription;
}
/**
* @return mixed
*/
public function getAboutUsThirdSectionTitle()
{
return $this->aboutUsThirdSectionTitle;
}
/**
* @param mixed $aboutUsThirdSectionTitle
*/
public function setAboutUsThirdSectionTitle($aboutUsThirdSectionTitle): void
{
$this->aboutUsThirdSectionTitle = $aboutUsThirdSectionTitle;
}
/**
* @return mixed
*/
public function getAboutUsThirdSectionDescription()
{
return $this->aboutUsThirdSectionDescription;
}
/**
* @param mixed $aboutUsThirdSectionDescription
*/
public function setAboutUsThirdSectionDescription($aboutUsThirdSectionDescription): void
{
$this->aboutUsThirdSectionDescription = $aboutUsThirdSectionDescription;
}
/**
* @return Collection|PageFaq[]
*/
public function getFaqs(): Collection
{
return $this->faqs;
}
public function addFaq(PageFaq $faq): self
{
if (!$this->faqs->contains($faq)) {
$this->faqs[] = $faq;
$faq->setPage($this);
}
return $this;
}
public function removeFaq(PageFaq $faq): self
{
if ($this->faqs->removeElement($faq)) {
if ($faq->getPage() === $this) {
$faq->setPage(null);
}
}
return $this;
}
/**
* @return mixed
*/
public function getShortDesc()
{
return $this->shortDesc;
}
/**
* @param mixed $shortDesc
*/
public function setShortDesc($shortDesc): void
{
$this->shortDesc = $shortDesc;
}
/**
* @return mixed
*/
public function getSeoDesc()
{
return $this->seoDesc;
}
/**
* @param mixed $seoDesc
*/
public function setSeoDesc($seoDesc)
{
$this->seoDesc = $seoDesc;
}
public function getShowOnList()
{
if (!$this->isVisible()) {
return false;
}
return $this->showOnList;
}
public function setShowOnList($showOnList)
{
$this->showOnList = $showOnList;
}
/**
* @return mixed
*/
public function getMainPageSectionFanalLink()
{
return $this->mainPageSectionFanalLink;
}
/**
* @param mixed $mainPageSectionFanalLink
*/
public function setMainPageSectionFanalLink($mainPageSectionFanalLink): void
{
$this->mainPageSectionFanalLink = $mainPageSectionFanalLink;
}
/**
* @return mixed
*/
public function getMainPageSectionLevadaTitle()
{
return $this->mainPageSectionLevadaTitle;
}
/**
* @param mixed $mainPageSectionLevadaTitle
*/
public function setMainPageSectionLevadaTitle($mainPageSectionLevadaTitle): void
{
$this->mainPageSectionLevadaTitle = $mainPageSectionLevadaTitle;
}
/**
* @return mixed
*/
public function getMainPageSectionLevadaDescription()
{
return $this->mainPageSectionLevadaDescription;
}
/**
* @param mixed $mainPageSectionLevadaDescription
*/
public function setMainPageSectionLevadaDescription($mainPageSectionLevadaDescription): void
{
$this->mainPageSectionLevadaDescription = $mainPageSectionLevadaDescription;
}
/**
* @return mixed
*/
public function getMainPageSectionLevadaLink()
{
return $this->mainPageSectionLevadaLink;
}
/**
* @param mixed $mainPageSectionLevadaLink
*/
public function setMainPageSectionLevadaLink($mainPageSectionLevadaLink): void
{
$this->mainPageSectionLevadaLink = $mainPageSectionLevadaLink;
}
public function getGallery(): SonataMediaGallery
{
if (null === $this->gallery || !$this->gallery->getName()) {
$this->gallery = new SonataMediaGallery();
$this->gallery->setName("Page main gallery for " . $this->getTitle());
$this->gallery->setContext('default');
}
return $this->gallery;
}
public function setGallery(?SonataMediaGallery $gallery): void
{
$this->gallery = $gallery;
}
public function isVisible(): bool
{
return $this->isVisible;
}
public function setIsVisible(bool $isVisible): self
{
$this->isVisible = $isVisible;
return $this;
}
public function prePersist(): void
{
$this->createdAt = new \DateTime();
$this->getGallery();
}
}