Automattic\WooCommerce\Blocks\BlockTypes\OrderConfirmation

DownloadsWrapper::render_content()protectedWC 1.0

This renders the content of the downloads wrapper.

Метод класса: DownloadsWrapper{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->render_content( $order, $permission, $attributes, $content );
$order(\WC_Order) (обязательный)
Order object.
$permission(строка|false)
If the current user can view the order details or not.
По умолчанию: false
$attributes(массив)
Block attributes.
По умолчанию: []
$content(строка)
Original block content.
По умолчанию: ''

Код DownloadsWrapper::render_content() WC 9.4.2

protected function render_content( $order, $permission = false, $attributes = [], $content = '' ) {
	$show_downloads = $order && $order->has_downloadable_item() && $order->is_download_permitted();

	if ( ! $show_downloads || ! $permission ) {
		return '';
	}

	return $content;
}