Automattic\WooCommerce\Blocks\BlockTypes

ProductGalleryThumbnails::should_display_view_all()protectedWC 1.0

Check if View All markup should be displayed.

Метод класса: ProductGalleryThumbnails{}

Хуков нет.

Возвращает

true|false.

Использование

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->should_display_view_all( $mode, $thumbnails_count, $product_gallery_images, $number_of_thumbnails );
$mode(строка) (обязательный)
Mode of the gallery. Expected values: 'standard'.
$thumbnails_count(int) (обязательный)
Current count of processed thumbnails.
$product_gallery_images(массив) (обязательный)
Array of product gallery image HTML strings.
$number_of_thumbnails(int) (обязательный)
Number of thumbnails configured to display.

Код ProductGalleryThumbnails::should_display_view_all() WC 9.4.2

protected function should_display_view_all( $mode, $thumbnails_count, $product_gallery_images, $number_of_thumbnails ) {
	return 'standard' === $mode &&
	$thumbnails_count === $number_of_thumbnails &&
	count( $product_gallery_images ) > $number_of_thumbnails;
}