Lightbox Bildgröße aus der Seitenlayouteinstellung ausgeben
Ich habe hier eine Installation mit dem RS Custom Element "Timeline" in dem man die Lightbox aktivieren kann.
Wie kann ich erreichen dass die Lightbox Bildgrößeneinstellung aus dem Seitenlayout berücksichtigt wird ?
Dies ist der Codeabschnitt der im Template verwendet wird
PHP-Code:
<?php if ($image = $this->getImageObject($event->image, $event->imageSize)): ?>
<figure class="image_container">
<?php if ($event->imageLinkUrl || $event->openLightbox): ?>
<a class="image-wrapper"<?php if($event->openLightbox): ?> data-lightbox="<?php echo $this->id ?>"<?php endif ?> href="<?php echo $event->imageLinkUrl ?: $this->getImageObject($event->image)->src ?>">
<?php endif ?>
<?php $this->insert('picture_default', $image->picture) ?>
<?php if ($event->imageLinkUrl || $event->openLightbox): ?>
</a>
<?php endif ?>
<figcaption class="caption"><?php echo $event->imageCaption ?></figcaption>
</figure>
<?php endif ?>