File: /home/u547966/brikov.ru/www/wp-content/plugins/foogallery/extensions/albums/album-default.php
<?php
/**
* FooGallery default responsive album template
*/
global $current_foogallery_album;
global $current_foogallery_album_arguments;
global $current_foogallery;
$gallery = foogallery_album_get_current_gallery();
$alignment = foogallery_album_template_setting( 'alignment', 'alignment-left' );
$foogallery = false;
if ( !empty( $gallery ) ) {
$foogallery = FooGallery::get_by_slug( $gallery );
//check to see if the gallery belongs to the album
if ( !$current_foogallery_album->includes_gallery( $foogallery->ID ) ) {
$foogallery = false;
}
}
if ( false !== $foogallery ) {
$album_url = foogallery_album_remove_gallery_from_link();
$gallery_title_size = foogallery_album_template_setting('gallery_title_size', 'h2');
echo '<div id="' . $current_foogallery_album->slug . '" class="foogallery-album-header">';
echo '<p><a href="' . esc_url( $album_url ) . '">' . foogallery_get_setting( 'language_back_to_album_text', __( '« back to album', 'foogallery' ) ) . '</a></p>';
echo '<' . $gallery_title_size . '>' . $foogallery->name . '</'. $gallery_title_size . '>';
echo apply_filters('foogallery_album_default_gallery_content', '', $foogallery);
echo '</div>';
echo do_shortcode('[foogallery id="' . $foogallery->ID . '"]');
} else {
$title_bg = foogallery_album_template_setting( 'title_bg', '#ffffff' );
$title_font_color = foogallery_album_template_setting( 'title_font_color', '#000000' );
$args = foogallery_album_template_setting( 'thumbnail_dimensions', array() );
if ( !empty( $title_bg ) || !empty( $title_font_color ) ) {
echo '<style type="text/css">';
if ( !empty( $title_bg ) ) {
echo '.foogallery-album-gallery-list .foogallery-pile h3 { background: ' . $title_bg . ' !important; }';
}
if ( !empty( $title_font_color ) ) {
echo '.foogallery-album-gallery-list .foogallery-pile h3 { color: ' . $title_font_color . ' !important; }';
}
echo '</style>';
}
?>
<div id="foogallery-album-<?php echo $current_foogallery_album->ID; ?>">
<ul class="foogallery-album-gallery-list <?php echo $alignment; ?>">
<?php
foreach ( $current_foogallery_album->galleries() as $gallery ) {
$current_foogallery = $gallery;
if (!empty($gallery->attachment_ids)) {
$attachment = $gallery->featured_attachment();
if ( false === $attachment ) continue;
$img_html = $attachment->html_img( $args );
$images = $gallery->image_count();
$gallery_link = foogallery_album_build_gallery_link( $current_foogallery_album, $gallery );
$gallery_link_target = foogallery_album_build_gallery_link_target( $current_foogallery_album, $gallery );
?>
<li>
<div class="foogallery-pile">
<div class="foogallery-pile-inner">
<a href="<?php echo esc_url( $gallery_link ); ?>" target="<?php echo $gallery_link_target; ?>">
<?php echo $img_html; ?>
<?php
$title = empty( $gallery->name ) ?
sprintf( __( '%s #%s', 'foogallery' ), foogallery_plugin_name(), $gallery->ID ) :
$gallery->name;
?>
<h3><?php echo $title; ?>
<span><?php echo $images; ?></span>
</h3>
</a>
</div>
</div>
</li>
<?php } ?>
<?php } ?>
</ul>
<div style="clear: both;"></div>
</div>
<?php }