| Server IP : 170.10.162.208 / Your IP : 216.73.216.38 Web Server : LiteSpeed System : Linux altar19.supremepanel19.com 4.18.0-553.69.1.lve.el8.x86_64 #1 SMP Wed Aug 13 19:53:59 UTC 2025 x86_64 User : deltahospital ( 1806) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home1/deltahospital/www/wp-content/plugins/fancy-gallery/classes/ |
Upload File : |
<?php Namespace WordPress\Plugin\GalleryManager;
abstract class Lightbox {
static function init(){
add_Action('wp_footer', Array(static::class, 'printLightboxWrapper'));
}
static function printLightboxWrapper(){
if (Options::get('lightbox')): ?>
<div class="gallery-lightbox-container blueimp-gallery blueimp-gallery-controls">
<div class="slides"></div>
<div class="title-description">
<?php if (Options::get('title_description')): ?>
<div class="title"></div>
<a class="gallery"></a>
<div class="description"></div>
<?php endif ?>
<?php /* if (Options::get('share_links') == 'on'): ?>
<div class="share-links">
<a href="https://pinterest.com/pin/create/button/?url=%1$s&media=%2$s" class="facebook share icon">F</a>
<a href="https://twitter.com/share?url=%1$s" class="twitter share icon">T</a>
<a href="https://www.facebook.com/sharer/sharer.php?u=%s" class="pintarest share icon">P</a>
</div>
<?php endif */ ?>
</div>
<a class="prev" title="<?php echo I18n::t('Previous image') ?>"></a>
<a class="next" title="<?php echo I18n::t('Next image') ?>"></a>
<?php if (Options::get('close_button')): ?>
<a class="close" title="<?php _e('Close') ?>"></a>
<?php endif ?>
<?php if (Options::get('indicator_thumbnails')): ?>
<ol class="indicator"></ol>
<?php endif ?>
<?php if (Options::get('slideshow_button')): ?>
<a class="play-pause"></a>
<?php endif ?>
<?php do_Action('gallery-manager-lightbox-wrapper') ?>
</div>
<?php endif;
}
}
Lightbox::init();