File "image-gallery.php"
Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/image-gallery.php
File size: 1.64 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Template for displaying the image-gallery field
*
* @var array $field The field.
* @package YITH\PluginFramework\Templates\Fields
*/
defined( 'ABSPATH' ) || exit; // Exit if accessed directly.
list ( $field_id, $name, $value ) = yith_plugin_fw_extract( $field, 'id', 'name', 'value' );
$image_ids = ! empty( $value ) ? array_filter( explode( ',', $value ) ) : array();
?>
<div class="yith-plugin-fw-image-gallery">
<ul id="<?php echo esc_attr( $field_id ); ?>-extra-images" class="slides-wrapper extra-images ui-sortable clearfix">
<?php foreach ( $image_ids as $image_id ) : ?>
<li class="image" data-attachment_id= <?php echo esc_attr( $image_id ); ?>>
<?php
if ( function_exists( 'yit_image' ) ) {
yit_image( "id=$image_id&size=admin-post-type-thumbnails" );
} else {
echo wp_get_attachment_image( $image_id, array( 80, 80 ) );
}
?>
<i href="#" class="delete yith-icon yith-icon-trash" title="<?php esc_attr_e( 'Delete', 'yith-plugin-fw' ); ?>"></i>
</li>
<?php endforeach; ?>
</ul>
<input type="button"
id="<?php echo esc_attr( $field_id ); ?>-button"
class="image-gallery-button button button-secondary"
data-choose="<?php esc_attr_e( 'Add Images to Gallery', 'yith-plugin-fw' ); ?>"
data-update="<?php esc_attr_e( 'Add to gallery', 'yith-plugin-fw' ); ?>"
value="<?php esc_attr_e( 'Add images', 'yith-plugin-fw' ); ?>"
data-delete="<?php esc_attr_e( 'Delete image', 'yith-plugin-fw' ); ?>"
data-text="<?php esc_attr_e( 'Delete', 'yith-plugin-fw' ); ?>"
/>
<input type="hidden" class="image_gallery_ids" name="<?php echo esc_attr( $name ); ?>" value="<?php echo esc_attr( $value ); ?>"/>
</div>