This repository has been archived on 2025-06-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
suitedesk/modules/lightbox2/lightbox2-insert-image.tpl.php

25 lines
1.2 KiB
PHP

<?php
/**
* @file
* Template file for Lightbox2 content inserted via the Insert module.
*
* Available variables:
* - $item: The complete item being inserted.
* - $url: The URL to the image.
* - $linkurl: The URL to the image being linked to.
* - $class: A set of classes assigned to this image (if any).
* - $image_preset_name: The ImageCache preset being used for the image.
* - $link_preset_name: The ImageCache preset being used for the linked to image.
* - $download_link: The download original link.
*
* Note that ALT and Title fields should not be filled in here, instead they
* should use placeholders that will be updated through JavaScript when the
* image is inserted.
*
* Available placeholders:
* - __alt__: The ALT text, intended for use in the <img> tag.
* - __title__: The Title text, intended for use in the <img> tag.
* - __description__: A description of the image, sometimes used as a caption.
*/
?>
<a rel="lightbox[group1][__description__<?php print $download_link ?>]" href="<?php print $linkurl ?>"><img src="<?php print $url ?>" alt="__alt__" title="__title__" class="imagecache-<?php print $image_preset_name ?><?php print $class ? ' ' . $class : '' ?>" /></a>