????JFIF??x?x????'
Server IP : 104.21.64.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/cwd/wp-content/plugins/nextgen-gallery/templates/ExtendedAlbum/ |
Upload File : |
<?php /** * Template for Extended Album displays. * * @var \Imagely\NGG\DataTypes\DisplayedGallery $displayed_gallery * @var array $galleries * @var bool $open_gallery_in_lightbox * @var string $pagination * @package NextGEN Gallery */ ?> <?php $this->start_element( 'nextgen_gallery.gallery_container', 'container', $displayed_gallery ); ?> <div class="ngg-albumoverview default-view"> <?php foreach ( $galleries as $gallery ) { if ( $open_gallery_in_lightbox && 'gallery' === $gallery->entity_type ) { $anchor = $gallery->displayed_gallery->effect_code . " href='" . \Imagely\NGG\Util\Router::esc_url( $gallery->pagelink ) . "' data-src='" . esc_attr( $gallery->previewpic_fullsized_url ) . "' data-fullsize='" . esc_attr( $gallery->previewpic_fullsized_url ) . "' data-thumbnail='" . esc_attr( $gallery->previewurl ) . "' data-title='" . esc_attr( $gallery->previewpic_image->alttext ) . "' data-description='" . esc_attr( stripslashes( $gallery->previewpic_image->description ) ) . "' data-image-id='" . esc_attr( $gallery->previewpic ) . "'"; } else { $anchor = "class='gallery_link' href='" . \Imagely\NGG\Util\Router::esc_url( $gallery->pagelink ) . "'"; } ?> <div class="ngg-album"> <div class="ngg-albumcontent"> <?php $this->start_element( 'nextgen_gallery.image', 'item', $gallery ); ?> <div class="ngg-thumbnail"> <a <?php echo $anchor; ?>> <img class="Thumb" alt="<?php echo esc_attr( $gallery->title ); ?>" src="<?php echo \Imagely\NGG\Util\Router::esc_url( $gallery->previewurl ); ?>"/> </a> </div> <?php $this->end_element(); ?> <div class="ngg-albumtitle"> <a <?php echo $anchor; ?>><?php print wp_kses( $gallery->title, \Imagely\NGG\Display\I18N::get_kses_allowed_html() ); ?></a> </div> <div class="ngg-description"> <p><?php print wp_kses( $gallery->galdesc, \Imagely\NGG\Display\I18N::get_kses_allowed_html() ); ?></p> <?php if ( isset( $gallery->counter ) && $gallery->counter > 0 ) { ?> <p class="ngg-album-gallery-image-counter"> <strong><?php echo $gallery->counter; ?></strong> <?php _e( 'Photos', 'nggallery' ); ?></p> <?php } ?> </div> </div> </div> <?php } ?> <?php echo $pagination; ?> </div> <?php $this->end_element(); ?>