Automattic\WooCommerce\Blocks\BlockTypes
ProductImageGallery{}
ProductImageGallery class.
Хуков нет.
Использование
$ProductImageGallery = new ProductImageGallery(); // use class methods
Методы
- protected get_block_type_uses_context()
- protected register_block_type_assets()
- protected render( $attributes, $content, $block )
Код ProductImageGallery{} ProductImageGallery{} WC 7.7.2
class ProductImageGallery extends AbstractBlock { /** * Block name. * * @var string */ protected $block_name = 'product-image-gallery'; /** * It isn't necessary register block assets because it is a server side block. */ protected function register_block_type_assets() { return null; } /** * Register the context * * @var string */ protected function get_block_type_uses_context() { return [ 'query', 'queryId', 'postId' ]; } /** * Include and render the block. * * @param array $attributes Block attributes. Default empty array. * @param string $content Block content. Default empty string. * @param WP_Block $block Block instance. * @return string Rendered block type output. */ protected function render( $attributes, $content, $block ) { $post_id = $block->context['postId']; global $product; $product = wc_get_product( $post_id ); if ( class_exists( 'WC_Frontend_Scripts' ) ) { $frontend_scripts = new \WC_Frontend_Scripts(); $frontend_scripts::load_scripts(); } $classname = $attributes['className'] ?? ''; ob_start(); woocommerce_show_product_sale_flash(); $sale_badge_html = ob_get_clean(); ob_start(); woocommerce_show_product_images(); $product_image_gallery_html = ob_get_clean(); return sprintf( '<div class="wp-block-woocommerce-product-image-gallery %1$s">%2$s %3$s</div>', esc_attr( $classname ), $sale_badge_html, $product_image_gallery_html ); } }