Automattic\WooCommerce\Blocks\BlockTypes\OrderConfirmation

BillingWrapper{}WC 1.0

BillingWrapper class.

No Hooks.

Usage

$BillingWrapper = new BillingWrapper();
// use class methods

Methods

  1. protected get_block_type_style()
  2. protected render_content( $order, $permission = false, $attributes = [], $content = '' )

BillingWrapper{} code WC 9.8.1

class BillingWrapper extends AbstractOrderConfirmationBlock {

	/**
	 * Block name.
	 *
	 * @var string
	 */
	protected $block_name = 'order-confirmation-billing-wrapper';

	/**
	 * This renders the content of the billing wrapper.
	 *
	 * @param \WC_Order    $order Order object.
	 * @param string|false $permission If the current user can view the order details or not.
	 * @param array        $attributes Block attributes.
	 * @param string       $content Original block content.
	 */
	protected function render_content( $order, $permission = false, $attributes = [], $content = '' ) {
		if ( ! $order || ! $order->has_billing_address() || ! $permission ) {
			return '';
		}
		return $content;
	}

	/**
	 * Get the frontend style handle for this block type.
	 *
	 * @return null
	 */
	protected function get_block_type_style() {
		return null;
	}
}