images.forEach(function(image, i) {
image_small= "/" + SHOP_IMAGES_PATH + product_id + '/' + IMAGES_PREVIEW_SMALL_FOLDER +
imag.id + IMAGE_EXTENSION;
image_medium= "/" + SHOP_IMAGES_PATH + product_id + '/' + IMAGES_PREVIEW_MEDIUM_FOLDER +
image.id + IMAGE_EXTENSION;
PHP: if (!file_exists($_SERVER['DOCUMENT_ROOT'] + image_small)) image_small= NO_IMAGE;
PHP: if (!file_exists($_SERVER['DOCUMENT_ROOT'] + image_medium)) image_medium= NO_IMAGE;
$('.modal-content .modal-image-gallery', $modal_product).append('\
<picture class="client-products-products-item--image">\
<source\
media="(min-width: 450px)"\
srcset="' + image_medium + '">\
<img class= "client-products-products-item--image" src="' + image_small + '" alt="' + $product['title'] + '">\
</picture>\
');
});