Optimierung Darstellungen, kleine Bugs,

SS-Sudan twig im Content
This commit is contained in:
Kevin Adametz 2019-07-09 14:29:58 +02:00
parent e741dddfc1
commit 54fc46ace4
29 changed files with 377 additions and 18095 deletions

View file

@ -45,10 +45,6 @@ class TravelGuides
private $fullText;
/**
* @ORM\OneToOne(targetEntity="AppBundle\Entity\Page", mappedBy="travelGuideContentId")
*/
private $page;
/**
* Get id
@ -133,29 +129,6 @@ class TravelGuides
return $this->fullText;
}
/**
* Set page
*
* @param \AppBundle\Entity\Page $page
*
* @return TravelGuideContent
*/
public function setPage(\AppBundle\Entity\Page $page = null)
{
$this->page = $page;
return $this;
}
/**
* Get page
*
* @return \AppBundle\Entity\Page
*/
public function getPage()
{
return $this->page;
}
}