Automattic\WooCommerce\Blocks\BlockTypes
ProductFilterCheckboxList::render() │ protected │ WC 1.0
Render the block.
Method of the class: ProductFilterCheckboxList{}
No Hooks.
Return
String
. Rendered block type output.
Usage
// protected - for code of main (parent) or child class $result = $this->render( $attributes, $content, $block );
- $attributes(array) (required)
- Block attributes.
- $content(string) (required)
- Block content.
- $block(WP_Block) (required)
- Block instance.
ProductFilterCheckboxList::render() ProductFilterCheckboxList::render code WC 9.6.1
<?php protected function render( $attributes, $content, $block ) { if ( empty( $block->context['filterData'] ) || empty( $block->context['filterData']['items'] ) ) { return ''; } $context = $block->context['filterData']; $items = $context['items'] ?? array(); $interactivity_context = array( 'items' => $items ); $action = $context['actions']['toggleFilter'] ?? ''; $namespace = wp_json_encode( array( 'namespace' => 'woocommerce/product-filter-checkbox-list' ), JSON_HEX_TAG | JSON_HEX_APOS | JSON_HEX_QUOT | JSON_HEX_AMP ); $classes = ''; $style = ''; $tags = new \WP_HTML_Tag_Processor( $content ); if ( $tags->next_tag( array( 'class_name' => 'wc-block-product-filter-checkbox-list' ) ) ) { $classes = $tags->get_attribute( 'class' ); $style = $tags->get_attribute( 'style' ); } $checked_items = array_filter( $items, function ( $item ) { return $item['selected']; } ); $show_initially = $context['show_initially'] ?? 15; $remaining_initial_unchecked = count( $checked_items ) > $show_initially ? count( $checked_items ) : $show_initially - count( $checked_items ); $count = 0; $wrapper_attributes = array( 'data-wc-interactive' => esc_attr( $namespace ), 'data-wc-context' => wp_json_encode( $interactivity_context, JSON_HEX_TAG | JSON_HEX_APOS | JSON_HEX_QUOT | JSON_HEX_AMP ), 'data-wc-key' => wp_unique_prefixed_id( $this->get_full_block_name() ), 'class' => esc_attr( $classes ), 'style' => esc_attr( $style ), ); ob_start(); ?> <div <?php echo get_block_wrapper_attributes( $wrapper_attributes ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>> <ul class="wc-block-product-filter-checkbox-list__list" aria-label="<?php echo esc_attr__( 'Filter Options', 'woocommerce' ); ?>"> <?php foreach ( $items as $item ) { ?> <?php $item['id'] = $item['id'] ?? uniqid( 'checkbox-' ); // translators: %s: checkbox label. $i18n_label = sprintf( __( 'Checkbox: %s', 'woocommerce' ), $item['aria_label'] ?? '' ); ?> <li data-wc-key="<?php echo esc_attr( $item['id'] ); ?>" <?php if ( ! $item['selected'] ) : if ( $count >= $remaining_initial_unchecked ) : ?> class="wc-block-product-filter-checkbox-list__item" data-wc-bind--hidden="!context.showAll" hidden <?php else : ?> <?php ++$count; ?> <?php endif; ?> <?php endif; ?> class="wc-block-product-filter-checkbox-list__item" > <label class="wc-block-product-filter-checkbox-list__label" for="<?php echo esc_attr( $item['id'] ); ?>" > <span class="wc-block-product-filter-checkbox-list__input-wrapper"> <input id="<?php echo esc_attr( $item['id'] ); ?>" class="wc-block-product-filter-checkbox-list__input" type="checkbox" aria-invalid="false" aria-label="<?php echo esc_attr( $i18n_label ); ?>" data-wc-on--change--select-item="actions.selectCheckboxItem" data-wc-on--change--parent-action="<?php echo esc_attr( $action ); ?>" value="<?php echo esc_attr( $item['value'] ); ?>" <?php checked( $item['selected'], 1 ); ?> data-wc-bind--checked="state.isItemSelected" > <svg class="wc-block-product-filter-checkbox-list__mark" viewBox="0 0 10 8" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M9.25 1.19922L3.75 6.69922L1 3.94922" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> </svg> </span> <span class="wc-block-product-filter-checkbox-list__text"> <?php echo wp_kses_post( $item['label'] ); ?> </span> </label> </li> <?php } ?> </ul> <?php if ( count( $items ) > $show_initially ) : ?> <button class="wc-block-product-filter-checkbox-list__show-more" data-wc-bind--hidden="context.showAll" data-wc-on--click="actions.showAllItems" hidden > <?php echo esc_html__( 'Show more...', 'woocommerce' ); ?> </button> <?php endif; ?> </div> <?php return ob_get_clean(); }