PATH:
home
/
vcomplcotr
/
www
/
wp-content
/
plugins
/
fancy-gallery
/
classes
<?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> <?php if (Options::get('title_description')): ?> <div class="title-description"> <div class="title"></div> <a class="gallery"></a> <div class="description"></div> </div> <?php endif ?> <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();
[+]
..
[-] template.php
[edit]
[-] content-filter.php
[edit]
[-] thumbnails.php
[edit]
[-] scripts.php
[edit]
[-] mocking-bird.php
[edit]
[-] ajax-requests.php
[edit]
[-] wpml.php
[edit]
[-] gallery.php
[edit]
[-] post.php
[edit]
[-] lightbox.php
[edit]
[-] i18n.php
[edit]
[-] post-type.php
[edit]
[-] wp-query-extensions.php
[edit]
[-] taxonomies.php
[edit]
[-] core.php
[edit]
[-] index.html
[edit]
[-] query.php
[edit]
[-] template-tags-fallbacks.php
[edit]
[-] styles.php
[edit]
[-] shortcode-filter.php
[edit]
[-] tiny-mce-editor.php
[edit]
[-] options.php
[edit]