WoltLab Suite 6.2 Handbuch
Deutsch/PHP-Version: Die Website-Struktur, Navigation und Überschriften sind auf Deutsch vorbereitet. Code-Beispiele und technische Namen bleiben unverändert.

Migrating from WoltLab Suite 6.1 - Templates

Bildbetrachter

The previous image viewer WCF.ImageViewer used the CSS class .jsImageViewer to open the image viewer.

From now on this is done via the attribute data-fancybox, which opens the new Image Viewer.

Grouping is supported through the attribute data-fancybox="foo".

Previous Code Example

<a href="{$link}" class="jsImageViewer" title="{$title}">
    <img src="{$thumbnailUrl}" width="…" height="…" alt="">
</a>

New Code Example

<a href="{$link}" data-caption="{$title}" data-fancybox>
    <img src="{$thumbnailUrl}" width="…" height="…" alt="">
</a>