* Import von Jugendreisen (www.jugendreisen-spezialist.de)
* CMS-template "sunstar" als Destinationsübersicht für importierte Jugendreisen * Weitere "rel=nofollow target=_blank * target="_blank" beachten, wenn Boxen per JS click-Event verlinkt werden * https://schema.org statt http * meta itemprop=url auf https://www.sterntours.de geändert * Startseiten-Content geändert * "Rote" (nicht verfügbare) Termine auf Suchergebnisseite und Reiseprogrammseiten ausblenden * Behoben: Fehlermeldung, wenn Start- und Enddatum im Suchfilter nicht eingetragen werden git-svn-id: http://78.47.251.156/svn/dev/sterntours-3@3320 f459cee4-fb09-11de-96c3-f9c5f16c3c76
This commit is contained in:
parent
1ef1f765f6
commit
077163634e
15 changed files with 510 additions and 18 deletions
|
|
@ -270,6 +270,10 @@ class Page
|
|||
*/
|
||||
protected $boxDiscount;
|
||||
|
||||
/**
|
||||
* @ORM\Column(type="string", nullable=true)
|
||||
*/
|
||||
protected $cmsSettings;
|
||||
|
||||
/**
|
||||
* Set owner
|
||||
|
|
@ -1215,4 +1219,28 @@ class Page
|
|||
} while ($node = $node->getParent());
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set cmsSettings
|
||||
*
|
||||
* @param string $cmsSettings
|
||||
*
|
||||
* @return Page
|
||||
*/
|
||||
public function setCmsSettings($cmsSettings)
|
||||
{
|
||||
$this->cmsSettings = $cmsSettings;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get cmsSettings
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getCmsSettings()
|
||||
{
|
||||
return $this->cmsSettings;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue