| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/engineering/wp-content/plugins/nextgen-gallery/src/Legacy/view/ |
Upload File : |
<?php
/**
Template Page for the album overview (extended)
Follow variables are useable :
$album : Contain information about the first album
$albums : Contain information about all albums
$galleries : Contain all galleries inside this album
$pagination : Contain the pagination content
You can check the content when you insert the tag <?php var_dump($variable) ?>
If you would like to show the timestamp of the image ,you can use <?php echo $exif['created_timestamp'] ?>
**/
?>
<?php
if ( ! defined( 'ABSPATH' ) ) {
die( 'No direct access allowed' );}
?>
<?php if ( ! empty( $galleries ) ) : ?>
<div class="ngg-albumoverview">
<!-- List of galleries -->
<?php foreach ( $galleries as $gallery ) : ?>
<div class="ngg-album">
<div class="ngg-albumtitle"><a href="<?php echo \Imagely\NGG\Util\Router::esc_url( $gallery->pagelink ); ?>"><?php echo $gallery->title; ?></a></div>
<div class="ngg-albumcontent">
<div class="ngg-thumbnail">
<a href="<?php echo \Imagely\NGG\Util\Router::esc_url( $gallery->pagelink ); ?>"><img class="Thumb" alt="<?php echo esc_attr( $gallery->title ); ?>" src="<?php echo \Imagely\NGG\Util\Router::esc_url( $gallery->previewurl ); ?>"/></a>
</div>
<div class="ngg-description">
<p><?php echo $gallery->galdesc; ?></p>
<?php if ( @$gallery->counter > 0 ) : ?>
<p class="ngg-album-gallery-image-counter"><strong><?php echo $gallery->counter; ?></strong> <?php _e( 'Photos', 'nggallery' ); ?></p>
<?php endif; ?>
</div>
</div>
</div>
<?php endforeach; ?>
<!-- Pagination -->
<?php echo $pagination; ?>
</div>
<?php endif; ?>