| 1 |
<?php |
| 2 |
|
| 3 |
/** |
| 4 |
* Gallery: Thumbnail. |
| 5 |
* |
| 6 |
* @link https://plugins360.com |
| 7 |
* @since 1.0.0 |
| 8 |
* |
| 9 |
* @package Automatic_YouTube_Gallery |
| 10 |
*/ |
| 11 |
|
| 12 |
$title = ayg_get_gallery_thumb_title( $video, $attributes ); |
| 13 |
$excerpt = ayg_get_gallery_thumb_excerpt( $video, $attributes ); |
| 14 |
$description = ayg_get_player_description( $video, $attributes ); |
| 15 |
|
| 16 |
$container_class = 'ayg-thumbnail'; |
| 17 |
|
| 18 |
if ( ! empty( $title ) || ! empty( $excerpt ) ) { |
| 19 |
$container_class .= ' ayg-has-caption'; |
| 20 |
} |
| 21 |
|
| 22 |
if ( true === $is_active ) { |
| 23 |
$container_class .= ' ayg-active'; |
| 24 |
} |
| 25 |
?> |
| 26 |
|
| 27 |
<div class="<?php echo $container_class; ?>" data-id="<?php echo esc_attr( $video->id ); ?>" data-title="<?php echo esc_attr( $video->title ); ?>"> |
| 28 |
<div class="ayg-thumbnail-image-wrapper"> |
| 29 |
<?php the_ayg_gallery_thumbnail_image( $video, $attributes ); ?> |
| 30 |
|
| 31 |
<svg class="ayg-icon ayg-thumbnail-icon-play" width="32" height="32" viewBox="0 0 32 32" fill="#fff"> |
| 32 |
<path d="M16 0c-8.837 0-16 7.163-16 16s7.163 16 16 16 16-7.163 16-16-7.163-16-16-16zM16 29c-7.18 0-13-5.82-13-13s5.82-13 13-13 13 5.82 13 13-5.82 13-13 13zM12 9l12 7-12 7z"></path> |
| 33 |
</svg> |
| 34 |
|
| 35 |
<div class="ayg-thumbnail-active" style="display: none;"><?php esc_html_e( 'active', 'automatic-youtube-gallery' ); ?></div> |
| 36 |
</div> |
| 37 |
|
| 38 |
<div class="ayg-thumbnail-caption"> |
| 39 |
<?php if ( ! empty( $title ) ) : ?> |
| 40 |
<div class="ayg-thumbnail-title"><?php echo esc_html( $title ); ?></div> |
| 41 |
<?php endif; ?> |
| 42 |
|
| 43 |
<?php if ( ! empty( $excerpt ) ) : ?> |
| 44 |
<div class="ayg-thumbnail-excerpt"><?php echo wp_kses_post( $excerpt ); ?></div> |
| 45 |
<?php endif; ?> |
| 46 |
|
| 47 |
<?php if ( ! empty( $description ) ) : ?> |
| 48 |
<div class="ayg-thumbnail-description" style="display: none;"><?php echo wp_kses_post( make_clickable( $description ) ); ?></div> |
| 49 |
<?php endif; ?> |
| 50 |
</div> |
| 51 |
</div> |
| 52 |
|