Automattic\WooCommerce\Blocks\BlockTypes

SavedForLater::render_item_markupprivateWC 1.0

Render a single SSR item. Composes the shared image / name / price markup with the SFL-specific quantity span and Move-to-cart button.

Method of the class: SavedForLater{}

No Hooks.

Returns

String.

Usage

// private - for code of main (parent) class only
$result = $this->render_item_markup( $item ): string;
$item(array) (required)
.

SavedForLater::render_item_markup() code WC 10.9.4

private function render_item_markup( array $item ): string {
	$row_inner = ShopperListRenderer::render_ssr_common_row( $item, $this->get_remove_label_template() )
		. $this->render_ssr_quantity( $item )
		. $this->render_ssr_move_to_cart( $item );
	return ShopperListRenderer::render_each_child( $item, $row_inner );
}