Automattic\WooCommerce\Blocks\BlockTypes
ProductCollection::enqueue_data()
Extra data passed through from server to client for block.
Метод класса: ProductCollection{}
Хуки из метода
Возвращает
null
. Ничего (null).
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->enqueue_data( $attributes );
- $attributes(массив)
- Any attributes that currently are available from the block. Note, this will be empty in the editor context when the block is not in the post content on editor load.
По умолчанию: array()
Код ProductCollection::enqueue_data() ProductCollection::enqueue data WC 9.4.2
protected function enqueue_data( array $attributes = array() ) { parent::enqueue_data( $attributes ); // The `loop_shop_per_page` filter can be found in WC_Query::product_query(). // phpcs:ignore WooCommerce.Commenting.CommentHooks.MissingHookComment $this->asset_data_registry->add( 'loopShopPerPage', apply_filters( 'loop_shop_per_page', wc_get_default_products_per_row() * wc_get_default_product_rows_per_page() ) ); }